Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 24,226 through 24,250 (of 64,535 total)
  • Author
    Search Results
  • #137295
    cristian5
    Participant

    I’ve installed bbPress 2.4 recently and I’ve noticed that each time a edit a post, my post count increases. Is there a way to stop that from happening? Thanks.

    #137293

    In reply to: Duplicate Page Titles

    Stephen Edgar
    Keymaster

    Create a ticket on Trac so we can work on getting something into bbPress core
    https://bbpress.trac.wordpress.org/

    #137285
    Xevo
    Participant

    You’d have to adjust the standard loop output, you can do this in your bbpress theme.

    Line 32 of content-single-topic contains:
    bbp_has_replies()
    Turn it into:
    bbp_has_replies('order=DESC')
    Havent tried this though, but it should work.

    #137284
    Xevo
    Participant

    You can change it in your bbpress theme.

    Line 29 of form-reply.php: <legend><?php printf( __( 'Reply To: %s', 'bbpress' ), bbp_get_topic_title() ); ?></legend>

    #137280

    Topic: Hey guys!

    in forum Troubleshooting
    bluesage
    Participant

    New guy here, done the research yesterday and today but I’m at a loss. I did the workaround where you add in the bbpress code to a page and make it your home page but if you wouldn’t mind taking a look at my homepage: http://www.lakexeno.com you’ll notice there’s just a big white box on top of the forum coding?

    Any help would be *greatly* appreciated.

    Thanks so much!

    #137275

    In reply to: Duplicate Page Titles

    FreeWPress
    Participant

    I have a solution… thi is a correct code.. it work fine…

    function bbpress_title_duplicates($title, $sep, $seplocation){
    	$usrurl = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
    	if (false !== strpos($usrurl,'users')) {
    		if (false !== strpos($usrurl,'topics')) {
        		$title = str_replace('Il profilo di', 'Argomenti aperti da', $title);
    		} elseif (false !== strpos($usrurl,'replies')) {
        		$title = str_replace('Il profilo di', 'Risposte create da', $title);
    		} elseif (false !== strpos($usrurl,'subscriptions')) {
        		$title = str_replace('Il profilo di', 'Discussioni sottoscritte da', $title);
    		} elseif (false !== strpos($usrurl,'favorites')) {
        		$title = str_replace('Il profilo di', 'Topic preferiti da', $title);
    		} else {
        	$title = str_replace('Il profilo di', 'Il Profilo di', $title);
    		}
        }
        return $title;
    }
    add_filter('bbp_title', 'bbpress_title_duplicates');
    #137274

    In reply to: Duplicate Page Titles

    Todd – WireFlare
    Participant

    FreeWPress,

    My sincere apologies. I forgot one line of code on the blog post. I’ve added it and corrected the blog post to reflect the forgotten line.

    Above all of the code that you have add this:

    add_filter('wp_title', 'bbpress_title_duplicates', 20, 3 );

    Again, my apologies for the oversight.

    #137270

    In reply to: Duplicate Page Titles

    FreeWPress
    Participant
    function bbpress_title_duplicates($title, $sep, $seplocation){
    	$usrurl = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
    	if (false !== strpos($usrurl,'users')) {
    		if (false !== strpos($usrurl,'topics')) {
        		$title = str_replace('il profilo di', 'Argomenti aperti - test', $title);
    		} elseif (false !== strpos($usrurl,'replies')) {
        		$title = str_replace('il profilo di', 'Risposte create - test', $title);
    		} elseif (false !== strpos($usrurl,'subscriptions')) {
        		$title = str_replace('il profilo di', 'Discussioni sottoscritte - test', $title);
    		} elseif (false !== strpos($usrurl,'favorites')) {
        		$title = str_replace('il profilo di', 'Topic preferiti - test', $title);
    		} else {
        	$title = str_replace('il profilo di', 'Profilo - p', $title);
    		}
        }
        return $title;
    }

    Nothing changed… show only: “Il profilo di nickname” Do not replace nothing.. This is impossible! :/

    #137264

    In reply to: Duplicate Page Titles

    Todd – WireFlare
    Participant

    FreeWPress,

    What using this assumes:

    1 – That you are using BBPress version 2.4
    2 – That you don’t have anything else modifying these titles
    3 – That you haven’t changed the structure of the titles via the core files.
    4 – Your user slugs are as follows:
    User Base :users
    Topics Started :topics
    Replies Created :replies
    Favorite Topics :favorites
    Topic Subscriptions :subscriptions

    Following the above I have no clue why you would see “Profile Of”. The way that BBPress generates this Title is clearly shown on line 2563 of /wp-content/plugins/bbpress/includes/common/template.php which shows:

    	} elseif ( bbp_is_single_user() ) {
    
    		// Current users profile
    		if ( bbp_is_user_home() ) {
    			$new_title['text'] = esc_attr__( 'Your Profile', 'bbpress' );
    
    		// Other users profile
    		} else {
    			$new_title['text']   = get_userdata( bbp_get_user_id() )->display_name;
    			$new_title['format'] = esc_attr__( "%s's Profile", 'bbpress' );
    		}

    (Note that your file may contain $title in lieu of $new_title, this is because we are using a forked version, but that doesn’t change anything.)

    Therefore, the output of this should be either “Your Profile” or “Username’s ($s’s) Profile”. No where in that is “Profile of”. If you click on your profile here on bbpress.org you’ll see that it says “Your Profile” as well.

    Please check that everything in 1-4 is correct. This is the default way that BBPress is setup.

    Hope that helps. I have also added these requirements to my blog post to help clarify.

    #137260
    leanderbraunschweig
    Participant

    I don’t like the “/” either, just for aesthetical reasons. Will revert once this has been resolved with an update.

    #137258

    In reply to: Duplicate Page Titles

    FreeWPress
    Participant

    Yes i understand this problem, in effect, user title for, favorite, reply created and topic started is egual… Now i have put your code:

    function bbpress_title_duplicates($title, $sep, $seplocation){
    	$usrurl = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
    	if (false !== strpos($usrurl,'users')) {
    		if (false !== strpos($usrurl,'topics')) {
        		$title = str_replace('Profile', 'Topics Started - TSCADFX', $title);
    		} elseif (false !== strpos($usrurl,'replies')) {
        		$title = str_replace('Profile', 'Replies Created - TSCADFX', $title);
    		} elseif (false !== strpos($usrurl,'subscriptions')) {
        		$title = str_replace('Profile', 'Subscribed Threads - TSCADFX', $title);
    		} elseif (false !== strpos($usrurl,'favorites')) {
        		$title = str_replace('Profile', 'Favorite Threads - TSCADFX', $title);
    		} else {
        	$title = str_replace('Profile', 'Profile - TSCADFX', $title);
    		}
        }
        return $title;
    }

    But don’t change title page, it only sho profile of… and nothing.. 🙁

    #137257
    pm2t
    Participant

    good to know it worked.

    applying the trailing “/” had one side effect for me: I’ve lost the like count on the facebook share button for my posts, since the links have changed. minor issue for me, since my site is just starting…

    []s

    #137255

    In reply to: Duplicate Page Titles

    FreeWPress
    Participant

    Please give us an example, how bbpress duplicate titles for users?

    #137254
    leanderbraunschweig
    Participant

    OH MY GOD. That’s it! 😀
    -> The trailing “/” did it for me as well!

    Who wants to submit the bug report? I’ll do so tomorrow if no one else bothers before…

    Thanks a bunch pm2t.

    #137253
    Falkens
    Participant

    I’ve added a plugin called “BAW Login / Logout menu” to the menu to get login / logut but these are only visible when logged in as admin. Anyone know why … it feels like a setting that controls it. What I find lusstigt is that I log in as admin backend and then I see the menu “login / logout” but would I sign out … then disappears opportunities to log on again and menu it will not appear

    The website is closed for registration. All users are added by ADMIN … Could it have with my bbPress to do? I want this to control access to my bbPress and I do that by assigning accounts … so I throw out the question here too IF anyone to know because I do not understand why they disappear when I log out.

    Page: http://www.vaxmora.se

    Many thanks

    #137252
    Todd – WireFlare
    Participant

    I’m surprised that this far into the development of BBPress that we are still seeing duplicate titles for the users slug. Even here on bbpress.org they exist.

    Maybe not everyone does SEO work for a living, but when we get a customer that has BBPress installed and they have 100 users this turns into almost 1000 duplicate title errors on all of our reports. Not only does it look bad, but Google has publicly stated that they frown upon it and it’s widely known in the SEO community that it’s just not a good thing to do. So why does BBPress still do it?

    To make matters worse WP SEO plugins don’t change these titles either. Without hacking core BBPress files we’ve devised a crude way of doing this but I am writing this in hopes that someone will take this small request into consideration.

    In the mean time should anyone want to see or implement our way of getting around this problem please check out our blog post

    badmaash
    Participant

    Hi

    Lets say on my forum I have a Politics section and do not want people to be able to post images or links – can such restrictions be applied through bbpress?

    Thanks

    B

    FreeWPress
    Participant

    Hi, what version of bbpress and wordpress you use? It is too generic your post, report details of your error…

    loradillenkoffer
    Participant

    Hello,

    I have a problem when I try to integrate bbpress to wordpress. At the beginning of the installation I get an error message.
    When I get to the end of the installation, the error messages are still present, and the forum can be found at the bottom of the page, after all the error messages.

    I hope you can help me, if you need further information, do not hesitate to ask me. Thank you in advance.
    Cordially.
    Lora dillenkoffer

    #137245
    palmdoc
    Participant

    Hi all, I’m running WordPress 3.6.1, Buddypress 1.8.2 and bbPress 2.4
    Users are not getting any email notifications despite an @mention.
    Notifications are working normally for mentions in the Activity stream .

    Anyone else experience this problem?

    #137243
    CC-Cailin
    Participant

    Hi, I want to edit the way the subforums on the homepage is displayed, so that it looks sort of like an ipb/phpbb forum. I have been able to edit the css and move the code around. But I want to know, is there a way to get the subforum’s description & freshness displayed on the homepage?

    I’ve googled A LOT and seems like everyone is looking for this. I found this post, but the solution on there doesn’t seem to be working anymore…
    http://bbpress.org/forums/topic/customising-bbp_list_forums-last-poster-block/page/2/#post-137229

    #137242
    jbuesking
    Participant

    Yes I have the latest version you updated. Thanks

    I reset the forum and started from scratch. Ran the installer again and now it threw this error:

    WordPress database error: [Table ‘ixxxxxxx_xxxxxxx.jos_kunena_topics’ doesn’t exist]
    SELECT convert(kunena_messages.id USING “utf8”) AS id,convert(kunena_messages.catid USING “utf8”) AS catid,convert(kunena_messages.thread USING “utf8”) AS thread,convert(kunena_messages.ip USING “utf8”) AS ip,convert(kunena_messages.userid USING “utf8”) AS userid,convert(kunena_messages.subject USING “utf8”) AS subject,convert(kunena_messages_text.message USING “utf8”) AS message,convert(kunena_messages.time USING “utf8”) AS time FROM tvc4d_kunena_messages AS kunena_messages LEFT JOIN tvc4d_kunena_messages_text AS kunena_messages_text ON kunena_messages_text.mesid = kunena_messages.id LEFT JOIN jos_kunena_topics AS kunena_topics ON kunena_messages.thread = kunena_topics.id WHERE kunena_messages.parent != 0 LIMIT 0, 100

    #137241
    leetramp
    Participant

    Greetings,

    My “All forums” and “New forums” submenus aren’t showing up, so I can’t add new forums 🙁

    I’m using bbPress 2.4, with WordPress 3.6.1 (didn’t work with the previous WP either, but I haven’t got around to posting the problem here).

    I am also using WishList Member.

    When I look in the Member list, I see a column for “Forum Role,” but there is nothing under my user row (other members have “Participant” or “Moderator”). When I go to edit my account (a WP Admin account), I don’t see any options for Forum Role.

    I have tried disabling all bbPress extras, but this has not fixed the problem.

    I suspect that the problem is with WishList Member (it has a set of “Membership Levels” on the user settings page), but I thought I’d ask here to see if anyone has had this problem before.

    Thanks for any help,

    Lee

    #137240
    Xevo
    Participant

    The people that have the brain for it are either too busy, not giving back to the community or are helping improving the bbPress core.

    I personally also feel that more people that have zero knowledge of coding use bbPress, than programmers and such use it.

    #137239
    Xevo
    Participant

    Sorta, the latest version had some work on it. However it’s still not the greatest.

Viewing 25 results - 24,226 through 24,250 (of 64,535 total)
Skip to toolbar