Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 9,926 through 9,950 (of 64,515 total)
  • Author
    Search Results
  • Pascal Casier
    Moderator

    Hi Bruce,
    To change the breadcrumbs have a look here: https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#4-turning-off-or-changing-breadcrumbs

    If you don’t want to do it yourself, check out plugins like ‘bbP Toolkit’ where you should be able to configure it.

    Pascal.

    #179860

    In reply to: Order of Sticky topics

    fabiofava
    Participant

    Can’t the DevTeam add an option for Ordering (creation date, last post date, ascending, descending) on the Main bbPress Options? Or add a field “Order” to Topics like they exist to Forums?

    #179856
    sally
    Participant

    Hello,

    i use WP 4.6.1 and BBpress 2.5.11. I would like to move the Date / Time in Topics (over the Avatar) down under Mentions, like its here in the bbpress forum done?

    Thanks
    Regards
    Sally

    Bruce
    Participant

    I found the answer here

    #179841
    jessicak0
    Participant

    I have just updated to WordPress version 4.7 and bbPress version 2.5.12. I am a web developer creating a site for a client, so the work is only locally on my machine; however, I’ve added the appropriate function to the filter ‘bbp_verify_nonce_request_url’ so that it should be working appropriately (I had to do this to fix the problem that led to this new one). Now, every time I try to post a new topic through the front end (rather than via the WordPress dashboard), the above error appears (“ERROR: Your topic needs a title.”) despite the fact that I have submitted a title. Any help would be appreciated!

    #179839
    BenM
    Participant

    Hi,

    If I copy/paste html content to topic content, all html tag appears in text, all quotes are converted to french quotes and content can overflow screenshot (link to full image)

    I try this below but It doens’t change anything !

    remove_filter( 'bbp_get_reply_content', 'wptexturize' , 3);
    remove_filter( 'bbp_get_topic_content', 'wptexturize', 3);

    I remove ALL plugins and I erase functions.php !

    I also try this :

    function bbp_tinymce_paste_plain_text( $plugins = array() ) {
        $plugins[] = 'paste';
        return $plugins;
    }
    add_filter( 'bbp_get_tiny_mce_plugins', 'bbp_tinymce_paste_plain_text' );

    even if I want to permit copy/paste of (filtered) html, just to try, but it doesn’t make any change.

    Do you have an idea of what happens?
    Thanks.

    inderdeepbajwa
    Participant

    I have the latest 4.7 version of WordPress and installed the latest bbPress plugin (updated 4 days ago).

    When I click on Forums->All forums, in the WP Dashboard, it shows me a full white blank page. Upon typing website.com/forums, it shows a blank page. The newly created forum link website.com/forums/forum/forum is also completely blank. I’ve tried this on two themes – Twenty Sixteen and Twenty Seventeen. Both showed blank page.

    I tried creating a new page and pasting [bbp-forum-index] but that gave me the following code as the result:
    {{ partial “head.html” . }}
    {{ partial “header.html” . }} {{ partial “sidebar.html” . }} {{ partial “post/header-cover.html” . }}
    {{ $paginator := .Paginate (where .Data.Pages “Type” “post”) }} {{ range $paginator.Pages }} {{ .Render “summary” }} {{ end }} {{ partial “pagination.html” . }}
    {{ partial “footer.html” . }}
    {{ partial “foot.html” . }}

    #179835
    #179833
    netixel
    Participant

    Hi team and everybody,

    This is my question : How to disable notifications of each new topic ?
    When a user create a new topic in bbpress forum each users receive a notification about this new topic.
    How to disable that ?

    If a user follow a topic he will receive a notification by e-mail but if he doesn’t follow it he doesn’t receive an email.

    Thanks for your help and your job.
    Regards.

    #179832
    marco_b
    Participant

    So it looks like a plugin which has an action of Woocommerce “manage_shop_order_posts_custom_column” breaks the functionality to display the name.

    As this function is only needed within the admin area I managed it be surrounding the function with “is_admin” and now bbPress works as expected

    Bruce
    Participant

    bbpress Version 2.5.12
    wordpress Version 4.6.1
    TwentyThirteen-Child theme

    You’ll see I don’t know what I’m doing here. What follows is what I tried.

    I put the following into my 2013 child theme:
    1. a folder titled “bbpress” which contained the following all copied from the bbpress plugin folder:
    2. a folder titled “bbpress”
    3. a folder titled “css”
    4. a folder titled “extras”
    5. a folder titled “js”
    6. a file titled “bbpress-functions.php

    I replaced the top of the bbpress.css file which was in the “css” folder with this:

     /*
    Theme Name: bbpress bbpress-child
    Theme URI: http://neighborsconnect/neighborsnation/wp-content/themes/twentythirteen-child/bbpress-child/
    Description: bbpress-child theme for bbpress
    Version: 1.0
    Author: Bruce Wilson
    Author URI: http://neighborsnation.org/
    Template: bbpress-default
    Tags: bbpress, bbpress-child
    */ 

    Then I increased the font-size for the bbpress forums from 12 px to 20px and other such changes to see if it worked.

    Surprise! Surprise! It didn’t work.

    What do I need to do to make it work?

    ~ Bruce

    #179827
    Stephen Edgar
    Keymaster

    Thanks @chadschulz is this more along the lines of what you are after?

    A quick modification of your code above, with some tweaks via https://codex.bbpress.org/custom-capabilities/

    
    function chadschulz_bbpress_customized_roles( $bbp_roles ) {
    	// Keymaster -> Captain
    	$bbp_roles['bbp_keymaster'] = array(
    		'name'         => 'Captain',
    		'capabilities' => bbp_get_caps_for_role( bbp_get_keymaster_role() )
    	);
    	// Moderator -> Commander
    	$bbp_roles['bbp_moderator'] = array(
    		'name'         => 'Commander',
    		'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() )
    	);
    	// Participant -> Ensign
    	$bbp_roles['bbp_participant'] = array(
    		'name'         => 'Ensign',
    		'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() )
    	);
    	// Spectator -> Visitor
    	$bbp_roles['bbp_spectator'] = array(
    		'name'         => 'Visitor',
    		'capabilities' => bbp_get_caps_for_role( bbp_get_spectator_role() )
    	);
    	// Blocked -> Banned
    	$bbp_roles['bbp_blocked'] = array(
    		'name'         => 'Banned',
    		'capabilities' => bbp_get_caps_for_role( bbp_get_blocked_role() )
    	);
    	// Lieutenant (Based on Participant role caps)
    	$bbp_roles['bbp_lieutenant'] = array(
    		'name' => 'Lieutenant',
    		'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() )
    	);
    	return $bbp_roles;
    }
    add_filter( 'bbp_get_dynamic_roles', 'chadschulz_bbpress_customized_roles' );
    
    #179820
    Stephen Edgar
    Keymaster

    I can see topics here http://massfacilities.com/forums/forum/job-listings/

    Is that correct?

    Can you also try disabling all your other active plugins, does that fix the issue?

    If so re-activate the plugins one by one to determine if it bbPress 2.5.12 is conflicting with another plugin.

    #179817
    Stephen Edgar
    Keymaster

    Did you go through the support topics ?

    https://duckduckgo.com/?q=bbpress+site%3Aoneall.com&ia=web

    This page looks like the docs you need:

    http://docs.oneall.com/plugins/guide/social-login-wordpress/

    #179812
    PWDEV66
    Participant

    I recently updated WordPress and BBPress. Everything appeared to be in good shape last Friday but today the categories for the forum show on the main menu but the forum and all the related content are missing. I can see that the plugin is active but I do not see it in the WP admin. Any help is greatly appreciated. Thanks

    Wordpress 4.7
    BBPress 2.5.12
    website – massfacilities.com custom theme usign Bootstrap

    #179811

    Topic: No profiles

    in forum Troubleshooting
    James G
    Participant

    I have a live site that I added forums to.
    using WP 4.7
    bbpress 2.5.12

    When I try to look at a users profile from the
    forum I get a 404 error.

    Is there a fix for this or even a plugin?
    Any ideas?
    Thanks

    #179810

    In reply to: Karma, reputation

    Helmuts
    Participant

    here should be a solution https://wordpress.org/support/plugin/bbpress-votes/ (if you’re still here or to other bbpress users) .. it should be working, I’m still trying to make it work for my forum http://www.lustjobs.com/forums/ (voting works – trying to understand how to display karma on user profiles).

    #179808

    In reply to: topics.php on line 943

    yoshidesu
    Participant

    also my bbpress is not showing forums. topics are first page.

    #179807
    sally
    Participant

    Hello, i have installed the plugin wp-post ratings

    https://wordpress.org/plugins/wp-postratings/installation/

    I want to show the rating in bbpress.

    Find: <?php while (have_posts()) : the_post(); ?>
    Add Anywhere Below It (The Place You Want The Ratings To Show): <?php if(function_exists(‘the_ratings’)) { the_ratings(); } ?>

    In which files, i have to add the php code?

    Thanks a Lot!

    Best Regards
    Sally

    #179804
    Kona Macphee
    Participant

    Hi guys, the ticket was created and has been marked as fixed and closed.

    However, the problem is still occurring in bbPress 2.5.12, so the bug has not actually been fixed.

    Could somebody please fix this issue? I’m still having to manually patch the bbPress code with every update.

    Thanks!

    #179802
    marco_b
    Participant

    Hi Stephen

    What I did was the following:

    1. Installed bbpress as mentioned
    2. Updated the flooding time to 0
    3. Auto assigned the standard roles to the user via Tools -> bbp-repair
    4. As admin I created a forum with status “open” and visibility “public”
    5. As admin I created a topic with status “open”
    6. I logged in with a non admin user and tried to reply on the topic which I’ve created as admin.

    My result is now that the user displayed is Anonymous even with logged in user.

    I would expect that the name from the logged in user is used instead of Anonymous.

    Do I miss something in the configuration?

    Best regards,
    Marco

    #179801
    Stephen Edgar
    Keymaster

    Can you share your code for how you’re defining your custom roles please?

    If you’d rather keep the code private you could join the #bbPress channel in Slack

    You can sign up for WordPress Slack here: https://chat.wordpress.org

    #179797

    In reply to: topics.php on line 943

    Stephen Edgar
    Keymaster

    This has already been fixed for the upcoming bbPress 2.6

    https://bbpress.trac.wordpress.org/changeset/6044

    #179796
    Chad R. Schulz
    Participant

    OK. Well after some harrowing attempts to rebuild from older versions of bbPress and WordPress I ended up reverting back to the most recent of both, 4.7 and 2.5.12, respectively.

    And presto! Everything is now as it should be. WTF?!

    Maybe something got fouled up in the DB conversion or I simply needed to kick something loose.

    Anyway, nevermind.

    Thanks.

    #179795
    Chad R. Schulz
    Participant

    I’ve added a dynamic role to my forums that no longer appears in any display user role capacity.
    I used the bbp_get_dynamic_roles hook as before.

    However, the capabilities from this role do transfer over–just not the name.

    I’m using custom functions that require this role’s name be defined. So basically this update breaks my site.

    Any attempt to role back to an earlier version of bbPress seems to crash the site.

    Help!?

Viewing 25 results - 9,926 through 9,950 (of 64,515 total)
Skip to toolbar