Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 14,151 through 14,175 (of 64,515 total)
  • Author
    Search Results
  • sivaramapandian
    Participant

    hi friends,

    Me too, breadcrumb is not showing only in forum pages.

    Previously i had WordPress SEO plugin. Now disabled that too. But still i am not getting breadcrumb. No code is done. Latest bbpress has been installed as it is.

    Please help

    Thanks

    #165967
    Martijn
    Participant

    Well, the issue is that when I’m using the BBpress plugin, when I log in on mysite.com/*newadmin*
    It redirects me to the homepage. Upon returning to the same link it requires me to fill in my login again.
    Only after I logged in, I can go to /wp-admin to get into the Dashboard.

    This issue is not happening when the BBpress plugin is inactive.

    No, we don’t know is also an answer. Then we can look for an alternate solution to what we want.

    #165964
    pazzaglia
    Participant

    Rob thanks for the plug-in, which I will use immediately, BUT how is it that it’s not considered a security issue to be giving out “confidential” e-mail addresses Via the BCC field?

    It’s a big breach of privacy.

    This should be fixed at the core! When spammers get wind of this all they need to do is reply or subscribe to a post topic to snag e-mail addresses of participants. They will.

    I don’t want my e-mail address given away and both the BBPress forums and WordPress forums appear NOT to do this while the the default behavior of this application on any other wordpress installation DOES.

    Please consider this carefully for addition into the WordPress core.

    Ciao,

    L

    #165963
    erich199
    Participant

    I”ve been reading these topic about “new topic button” and I’m just curious why this isn’t included in the plugin? Most major forums have this feature and when I click on “Start Topic” I don’t have to choose the forum where I want the topic posted. So if I click on “start new topic” in the “General Discussions” forum, it post the topic there. I don’t have to select where to post the topic.

    Would love to see this feature in future releases. Thanks for the hard work on bbpress.

    #165962
    Robkk
    Moderator

    @richardwil

    You may need to hire a developer to do the import for you. Devs seem busy working on other aspects of bbPress and importing in general. And for me importing is a huge learning curve.

    I guess you can also wait it out with phpBB still until we fix the importer in 2.6.

    #165959

    In reply to: SMF Import Help Needed

    Robkk
    Moderator

    Sorry, I forgot all about your topic. Whenever I contacted the devs awhile ago, they were very busy with other bugs, tasks, tests. It might be best to hire a developer for the import as we are being backed up with other things in the bbPress plugin. Stephen might come and reply to your posts in sometime, but maybe not soon as I explained they seem busy.

    You may also need to wait it out with SMF until we get the issues with the importer resolved.

    #165955
    Robkk
    Moderator

    Maybe not using BCC at all would help, plus this delivers emails through the wp-cron to make sending emails more efficient and make the emails most likely not end up in the spam folder.

    https://wordpress.org/plugins/asyncronous-bbpress-subscriptions/

    Robkk
    Moderator

    Its some pagination code inherited from the template bbPress is using for its pages.

    You might need to create a bbpress.php file from the file bbPress is inheriting from and place it in your child theme and also remove any post meta like the by that is usually for displaying the author of a blog post.

    Getting Started in Modifying the Main bbPress Template

    If you are using Genesis, I think installing the bbPress Genesis Extend plugin will solved most bbPress layout issues.

    btint
    Participant

    Hello,

    My Forum is creating multiple pages, yet they all fit on one page. At the bottom of the forums page, it is listing 4 pages. However clicking each page brings the exact same content.

    http://awesomedynamicacademy.com/forums/

    Using Bbpress 2.5.8
    Using WP 4.3

    #165951
    Robkk
    Moderator

    If you have a support forum this plugin will help you add additional topic statuses like resolved.

    https://wordpress.org/plugins/buddy-bbpress-support-topic/

    This one too.

    https://wordpress.org/plugins/bbresolutions/

    #165949

    In reply to: Add/Change User roles

    Robkk
    Moderator

    this is great. thanks Robkk. Just one question… Do I put this into the bbpress.php file in the bbpress folder?

    No. Also the bbpress.php file should be in the root of your theme.

    I added it here: wp-content/plugins/bbpress/templates/default/bbpress

    Just checking if that is correct?

    Don’t mess with any core files.

    Okay so I put the above code in here and it seems to work:

    plugins > bbpress > includes > users

    Again, just checking if that is correct?

    Don’t mess with any core files.

    Here, I forgot I did this a while back. Add this to your functions.php file in your child theme.

    function rk_show_role_classes($classes) {
        $replyid = bbp_get_reply_author_id();
        $bbp_get_role = bbp_get_user_display_role($replyid);
        $bbp_display_role = strtolower($bbp_get_role);
    	  
      
    	$classes[] = $bbp_display_role;
    	return $classes;
    }
    add_filter( 'bbp_get_topic_class','rk_show_role_classes' );
    add_filter( 'bbp_get_reply_class','rk_show_role_classes' );

    Do the CSS I said before for the above code.

    It would be something like this but for each role.

    .ambassador .bbp-author-role {
      background-color: blue;
    }

    And if you do not need custom roles but instead just role names, lets say for each role it would be like this.

    Keymaster -> Ambassador
    Moderator -> Team Member
    Participant -> Community Member

    You can just change the role names using this function. Add it to your child themes functions.php file. And rename My Custom Role to what you want.

    add_filter( 'bbp_get_dynamic_roles', 'ntwb_bbpress_custom_role_names' );
    function ntwb_bbpress_custom_role_names() {
    	return array(
    		// Keymaster
    		bbp_get_keymaster_role() => array(
    			'name'         => 'My Custom Keymaster Role Name',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_keymaster_role() )
    		),
    		// Moderator
    		bbp_get_moderator_role() => array(
    			'name'         => 'My Custom Moderator Role Name',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() )
    		),
    		// Participant
    		bbp_get_participant_role() => array(
    			'name'         => 'My Custom Participant Role Name',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() )
    		),
    		// Spectator
    		bbp_get_spectator_role() => array(
    			'name'         => 'My Custom Spectator Role Name',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_spectator_role() )
    		),
    		// Blocked
    		bbp_get_blocked_role() => array(
    			'name'         => 'My Custom Blocked Role Name',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_blocked_role() )
    		)
    	);
    }

    Oh and quit trying to copy Ultimate Members site, try to have a unique website.

    Robkk
    Moderator

    You may need to run some repair tools like Lynq did in this plugin.

    Test Data for bbPress – Plugin

    Running more than one repair tool can be resource intensive so be careful.

    #165946

    In reply to: bbpress not logout

    Robkk
    Moderator

    When I contacted the devs yesterday, one of them said that they haven’t come across this issue lately, and also if WordPress was installed in a subfolder.

    They said a possible issue is that there might be some caching where it shouldn’t be.

    I replied and said that I will at least keep this bug, that you and some other guys are experiencing, as a possible issue with bbPress. I will also report back to the devs if it happens to another user again, then we can go to bug finding from there.

    Robkk
    Moderator

    But its not contained in a nice neat pop-up box like here in bbpress’s sub-header bar.

    That is a modified WordPress toolbar slipped under the header.

    Is there a way to include registration link inside the login widget? or is there a registration widget?

    There should be some settings in the widget to input a registration link and a forgot password link too.

    Brovashift
    Participant

    Hi Robkk,

    Thanks for getting back to me re my login/reg issue.

    The plugin you sent looks good, but ideally Id like to handle the login/registration natively.

    I have added the bbp-login / bbp-register on a single page, which works to some extent, looks kinda basic. But its not contained in a nice neat pop-up box like here in bbpress’s sub-header bar.

    More importantly, there is no Logout! Do I need another shortcode for that? [bbp-logout] maybe?

    Thanks for your help

    Rob

    #165933
    begona.alvarezd
    Participant

    Hello all!

    I would really like to find a way to create a new topic status.

    Unfortunately, bbpress for resolved topics just has closed status, that actually disables the option to post in that topic for normal customers. I would really like to achieve a way to have an additional custom status like resolved, that is not closed and allows my moderators to organize properly.

    Is there a way to hook a topic status? I would really prefer it than hacking bbpress and didn’t figure out how to make it. My idea is declaring it in bbpress.php but is not a beautiful solution.

    Any idea?

    #165930

    In reply to: Add/Change User roles

    sbskamey
    Participant

    Okay so I put the above code in here and it seems to work:

    plugins > bbpress > includes > users

    Again, just checking if that is correct?

    Now to change the background colours, god that’s gonna take me another 2 days! :p

    #165929

    In reply to: Add/Change User roles

    sbskamey
    Participant

    I added it here: wp-content/plugins/bbpress/templates/default/bbpress

    Just checking if that is correct?

    pazzaglia
    Participant

    When I receive a default e-mail alert of a topic or reply from BBPress, if I view the e-mail’s full header the e-mail addresses of all the subscribed users in that topic are visible.

    This is not just the admin alerts, also users are seeing this.

    Please fix!!

    #165925

    In reply to: Add/Change User roles

    sbskamey
    Participant

    this is great. thanks Robkk. Just one question… Do I put this into the bbpress.php file in the bbpress folder?

    #165923
    Eslam Yosef
    Participant

    Hi,

    I’m making a multi-languages website, and I’m starting with English (original), Arabic and Chinese. My team includes original speakers of each language so we can have a good view of which words are for humans and which are not.

    The Arabic translation (which located here) is suck .. really!

    I tried to edit the translation and download the new files, but I can’t because there’s a current translation I don’t want it.

    Since I can’t create the file myself, my question is:

    How can I make my own translation in the same way and download only what I translated?

    Thanks in advance!

    #165915
    Robkk
    Moderator

    Okay I just renamed the login page using the AIO security and firewall plugin. I have bbPress enabled but do not see an issue.

    You said this on the topic you linked to.

    We want users to be able to register and comment etc. but we want to keep them out of the wp-dashboard completely. So we have a alternate profile page etc. and are denying access for all nor administrator & editor users. I don’t know if this might have an effect on these things.

    What are you using to lock them out of the dashboard?

    #165914
    Robkk
    Moderator

    copy form-anonymous.php in your child theme and remove this in the file.

    <p>
      <label for="bbp_anonymous_website"><?php esc_html_e( 'Website:', 'bbpress' ); ?></label><br />
        <input type="text" id="bbp_anonymous_website" value="<?php bbp_author_url(); ?>" size="40" name="bbp_anonymous_website" />
    </p>
    Robkk
    Moderator

    Try some troubleshooting it could be your theme conflicting with bbPress. Try a default theme temporarily to see if is in fact bbPress causing the issue with any scripts.

    Troubleshooting

    Contact the theme author if it just your theme, and see if they have a fix for users that want to use bbPress.

    The debug information you got is explained here.

    bbp_setup_current_user was called incorrectly

    Robkk
    Moderator

    Any plugin that hooks into the default WordPress registration and adds special fields should add fields also to the bbPress registration form.

    A plugin like this could add extra fields.

    https://wordpress.org/plugins/cimy-user-extra-fields/

    This site uses the [bbp-login] shortcode and there is a message on the registration page that says this site uses the same registration details as WordPress.org.

Viewing 25 results - 14,151 through 14,175 (of 64,515 total)
Skip to toolbar