Search Results for '+.+default+.+'
-
Search Results
-
Topic: Use the WordPress avatar
I’m using the wordpress theme Academy which uses the wordpress profile and gives the ability to upload an avatar. I want this same avatar to carry over to the user’s bbpress avatar. Therefore, when a new uploads a new avatar to the wordpress profile, it’s automatically displayed in bbpress.
ONE IMPORTANT POINT. When I click “edit” on my bbpress forum profile, it does show the wordpress avatar as the “profile photo” with a browse button, but the main avatar in the upper left-hand corner still shows the default gray image.
Okay, here we go i’m new to wordpress and using bbpress plugin for the first time, so throws me out with lots of question. I’m designing a site Called PTForum that is completely a Parent and teacher forum i’ve tried and have come to some good position modifying bbpress as per my needs but i’m stopped to problem that i’m unable to understand how to do so please any help will be appreciated.
As bbpress show’s up default role’s (participant,moderator…) in the forum topic’s and replies but as per my needs i want this way …
1) Either display my site role, as per needs i have created custom role’s (parent and teacher) which user choose while registration and so want the same role to be displayed in the forum.————–or————–
2) set dynamic role for bbpress forum itself so that it displays the selected role.
Hello, our company is on a google apps domain. While I prefer gmail, most of my co-workers prefer outlook.
I hadn’t noticed this while putting the site together, however, it appears that email notifications don’t seem to appear as links by default in outlook 2010 or 2013 the URLs just appear as plain text. I figured it was something I could probably fix so I started looking around. I stumbled on this in includes/common/functions.php
// Strip tags from text and setup mail data $topic_title = strip_tags( bbp_get_topic_title( $topic_id ) ); $reply_content = strip_tags( bbp_get_reply_content( $reply_id ) ); $reply_url = bbp_get_reply_url( $reply_id ); $blog_name = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ); $do_not_reply = '<noreply@' . ltrim( get_home_url(), '^(http|https)://' ) . '>'; // For plugins to filter messages per reply/topic/user $message = sprintf( __( '%1$s wrote: %2$s Post Link: %3$s ----------- You are receiving this email because you subscribed to a forum topic. Login and visit the topic to unsubscribe from these emails.', 'bbpress' ), $reply_author_name, $reply_content, $reply_url );if I’m reading this correctly, it does indeed simply output the string of the URL. What would be the best way to go about making sure this is recognized in outlook as a link?
Thank you in advance for your help.
Topic: Custom Query Loop
I’m creating a custom topic query for a section of my website that hooks into the default loop template. In the template I use
<?php if ( bbp_has_topics(array( 'posts_per_page' => 7, 'max_num_pages' => 1, 'bbp_voice_count' => 'DESC', order => 'DESC' )) ) : ?>What I’m trying to achieve is a query the shows 7 topics that have the most participants over the last few days. I went with order as the time query but clearly making sure it only shows topics that have BOTH a large amount of users AND are currently active is what I’m trying to achieve.
Any hints or different args to use to achieve this?
sidenote: I doesn’t seem bbp_voice_count works?
I’m moving a social site into BuddyPress and the forums used a now defunct DeluxeBB. It doesn’t seem to be one of the options for the Importer Tools. Do any of you know if the structure of DeluxeBB matches that of one of the options listed?
Here are the forums, threads, and posts tables which contain most of the information needed for this migration.
-- -- Table structure for table <code>deluxebb_forums</code> -- CREATE TABLE IF NOT EXISTS <code>deluxebb_forums</code> ( <code>ordered</code> int(5) DEFAULT '0', <code>cid</code> varchar(225) DEFAULT NULL, <code>name</code> varchar(225) DEFAULT NULL, <code>fid</code> int(6) NOT NULL AUTO_INCREMENT, <code>topics</code> varchar(225) DEFAULT NULL, <code>replies</code> varchar(225) DEFAULT NULL, <code>viewstatus</code> varchar(10) DEFAULT NULL, <code>poststatus</code> varchar(10) DEFAULT NULL, <code>replystatus</code> varchar(10) DEFAULT NULL, <code>lastpost</code> varchar(225) DEFAULT NULL, <code>lastpostby</code> int(10) DEFAULT '0', <code>description</code> tinytext, <code>lastpid</code> int(6) DEFAULT '0', <code>lastpidtime</code> varchar(255) DEFAULT NULL, <code>password</code> varchar(32) DEFAULT NULL, <code>userlist</code> mediumtext NOT NULL, <code>moderators</code> mediumtext NOT NULL, <code>ficon</code> varchar(25) NOT NULL, PRIMARY KEY (<code>fid</code>), KEY <code>cid</code> (<code>cid</code>), KEY <code>lastpostby</code> (<code>lastpostby</code>), KEY <code>lastpid</code> (<code>lastpid</code>) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ; -- -------------------------------------------------------- -- -- Table structure for table <code>deluxebb_posts</code> -- CREATE TABLE IF NOT EXISTS <code>deluxebb_posts</code> ( <code>pid</code> bigint(10) NOT NULL AUTO_INCREMENT, <code>tid</code> bigint(10) NOT NULL DEFAULT '0', <code>author</code> int(10) NOT NULL DEFAULT '0', <code>subject</code> varchar(285) CHARACTER SET latin1 NOT NULL, <code>message</code> text NOT NULL, <code>picon</code> varchar(50) CHARACTER SET latin1 NOT NULL DEFAULT '', <code>postdate</code> int(10) NOT NULL DEFAULT '0', <code>ip</code> varchar(50) CHARACTER SET latin1 NOT NULL DEFAULT '', <code>smiliesoff</code> smallint(1) DEFAULT '0', PRIMARY KEY (<code>pid</code>), KEY <code>author</code> (<code>author</code>), KEY <code>tid</code> (<code>tid</code>,<code>postdate</code>,<code>ip</code>) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=495424 ; -- -------------------------------------------------------- -- -- Table structure for table <code>deluxebb_threads</code> -- CREATE TABLE IF NOT EXISTS <code>deluxebb_threads</code> ( <code>tid</code> bigint(10) NOT NULL AUTO_INCREMENT, <code>fid</code> int(5) NOT NULL DEFAULT '0', <code>author</code> int(10) NOT NULL DEFAULT '0', <code>subject</code> varchar(285) NOT NULL, <code>picon</code> varchar(50) NOT NULL DEFAULT '', <code>views</code> int(3) NOT NULL DEFAULT '0', <code>replies</code> int(3) NOT NULL DEFAULT '0', <code>closed</code> smallint(1) NOT NULL DEFAULT '0', <code>pinned</code> smallint(1) NOT NULL DEFAULT '0', <code>moved</code> int(10) unsigned DEFAULT '0', <code>flame</code> tinyint(1) NOT NULL DEFAULT '0', <code>lastpostby</code> varchar(255) NOT NULL DEFAULT '0', <code>lastpostdate</code> int(10) NOT NULL DEFAULT '0', <code>hiddenby</code> text NOT NULL, <code>likedby</code> text NOT NULL, PRIMARY KEY (<code>tid</code>), KEY <code>fid</code> (<code>fid</code>), KEY <code>pinned</code> (<code>pinned</code>), KEY <code>lastpostdate</code> (<code>lastpostdate</code>), KEY <code>author</code> (<code>author</code>), KEY <code>moved</code> (<code>moved</code>), KEY <code>ashouts</code> (<code>fid</code>,<code>tid</code>,<code>author</code>) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=406651 ;Hello, I have imported my forms from SMF, all went great, except one thing. Parts of text in all forum posts are wrapped in strange <tt> tags.
That results in different font on the front end – http://levelonetwinks.com/?topic=about-frostmourne
And when looking at the posts from WP admin, text editor I see this:
<b>Frostmourne</b> is an established guild (<b>level 25</b>) that has existed on the realm as both social and raiding venue for nearly 8 years.<tt><tt>We’re looking for mature, fun, yet dedicated people that will not only contribute to our progress but to the strong social aspect of our guild.<tt><tt>We have a fairly non strict age requirement of 18+.</tt></tt></tt></tt>
Removing them manually sorts the issue but that’s a lot of work hours to go through each topic and reply :S
I’ve tried a localhost import to the default WP theme, same thing π
Would be grateful for any insight on what may be causing it, as I’d rather not spend the next two days going through them manually :p
Cheers!
Hi !
I tried making my forums page full-width, but didn’t manage, so if you could help, it would be great !
I’ve already read this page : https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/#8-make-sure-bbpress-uses-the-page-template-we-want (but it didn’t really help me :/)Here’s a short video to explain you exactly my problem : https://www.youtube.com/watch?v=0Ekrjb64GxA
Thanks a lot for helping, would be really great ! π
—
My WP version : 4.0 (last in date)
My bbPress version : last in date
My theme : Anew by Alxmedia
My website’s forum : http://www.amitabha-sat.com/forums (password : default)Hi,
I have noticed that the font-size applied to my forum’s content isn’t the same than the one applied to my normal pages/articles/etc. and I’d simply like to change that π
Here’s a screen of my normal display (font-size) :

So how could I simply apply the default font-size to my forum content too ?
Thanks a lot !I am using :
– Last version of WP
– Last version of bbPress
– Anew theme by Alxmedia
