Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 14,151 through 14,175 (of 64,454 total)
  • Author
    Search Results
  • #165820
    sbskamey
    Participant

    Hi support,

    http://sincebeingsingle.com/insight/topic/share-site-others/

    I want to know how to add a new BBpress user role name.

    I would like three roles:

    – Team Member
    – Community Member
    – Ambassador

    I would also like each of these roles to have a different colour label.

    Just like this website: https://ultimatemember.com/forums/topic/how-did-you-find-out-about-ultimate-member/

    I have seen a few topics about this, but these topics are from 1-3 years ago. I want to know if there is easier way to do this than changes .php files?

    I have tried User Role Editor and Members plugin with no luck. These plugins add new WordPress user roles, but not BBpress Forum user roles.

    I would really like to know how to do this.

    Thanks again,
    Kam

    #165817
    vinzen
    Participant

    Hi, Can the latest bbPress version run on PHP7 configuration? Does bbPress support PHP7.0?
    Thanks.

    #165806
    Martijn
    Participant

    Hi,

    We are using BBpress for user registration and forums we will be activating in the near future on our website. We are also using the All In One WP Security Plugin, in here is a option to rename the login page, so directly going to mysite.com/wp-admin should not work and should be mysite.com/*newadmin*

    However this did not work initially, we had to log in on the /*newadmin* but still had to go to /wp-admin to gain access to the dashboard.

    We disabled all other active plugins, and the problem was solved, after testing it showed that once BBpress plugin was disabled the feature worked as intended, loggin into /*newadmin* would get me instantly into the dashboard.

    I’ve also requested help on their end, but since 2 plugins are involved, Do you guys have any suggestions as to what might cause this & what might solve this issue?

    Any help or suggestions would be great. We just want to rename the admin part, so we are not bound to the wp-security option, just seemed easy.

    Heres my initial post on wordpress.org support for all in one wp security:
    https://wordpress.org/support/topic/renaming-the-login-cant-enter-with-the-url?replies=4#post-7342568

    We are using a fully up to date version of WP & all plugins.

    #165804
    Robert.S
    Participant

    Ooopsy. Don’t know what went wrong with those image urls. Here they are again:

    Avada BBPress Search Results: https://www.dropbox.com/s/04ndkdsjlpa5k8j/avada-forum-search.jpg?dl=0

    ExpressionEngine old forum Search Results: https://www.dropbox.com/s/u31awcckz4261oi/Expression-Engine-forum-search.jpg?dl=0

    #165801
    joym
    Participant

    Help! My bbpress isn’t being indexed on Google or other search engines. Can anyone advise me on this? Thank you.

    #165795

    In reply to: Custom freshness links

    Robkk
    Moderator

    @inget should have used this.

    .forum-archive li.bbp-forum-freshness {
        display: none;
    }
    
    .forum-archive li.bbp-forum-info {
        width: 77%;
    }
    


    @markburgess

    Do you have an incorrect freshness date on your forum archive?? Plus that ticket you linked to is bbpress.org specific, that is why you see the compenent being Site – bbPress.org and that the pictures are of bbpress.org.

    #165794

    In reply to: Custom freshness links

    Mark Burgess
    Participant

    Thanks to IngeT for leading with the way to map out the bad Freshness data. After cruising around the Forum, I don’t see a good answer to this. The only ticket open appears not to be addressed these last five months on this ticket: https://bbpress.trac.wordpress.org/ticket/2414

    #165791
    Robkk
    Moderator

    Oh that was what you were trying to change, I thought you meant title tag and all that. Yeah whats in the blue bar is coming from your theme, it probably shows Archive for all archive pages.

    You can also see if you to yoursite.com/topics it shows the same thing. I bet your theme authors can give you a function to modify it for bbPress pages using the bbPress condtionals bbp_is_forum_archive()and bbp_is_topic_archive()

    #165785

    In reply to: How to modify

    Robkk
    Moderator

    INstall this plugin

    https://wordpress.org/plugins/wp-admin-no-show/

    or just use this code.

    add_action('after_setup_theme', 'remove_admin_bar');
    
    function remove_admin_bar() {
    if (!current_user_can('administrator') && !is_admin()) {
      show_admin_bar(false);
    }
    }

    You can follow this to add a profile link to your menu.

    Layout and functionality – Examples you can use

    #165783

    I’d like to add some custom buttons/functionality to the visual editor in the forums on my site. I have some working code that adds the buttons and functionality to TinyMCE in the WordPress admin for pages and posts but I haven’t been able to get it working in the editor for the forums. Here’s some of that code (exluding the actual JS) that adds two buttons (labeled braille and simbraille) to the visual editor in admin.

    `//custom braille font buttons for tinyMCE
    function braille_add_buttons( $plugin_array ) {
    $plugin_array[‘braille’] = plugins_url( ‘/js/nba-editor.js’, __FILE__ );
    return $plugin_array;
    }
    function braille_register_buttons( $buttons ) {
    array_push( $buttons, ‘braille2000’, ‘simbraille’ );
    return $buttons;
    }
    function braille_font_buttons() {
    add_filter( “mce_external_plugins”, “braille_add_buttons” );
    add_filter( ‘mce_buttons’, ‘braille_register_buttons’ );
    }
    add_action( ‘init’, ‘braille_font_buttons’ ); `

    I found another post in the bbPress forum from somebody else trying to do the same thing (https://bbpress.org/forums/topic/hook-into-bbpress-teeny-mce/) and someone suggested applying a filter to bbp_get_teeny_mce_buttons but that poster couldn’t get it working and I can’t figure out how to adapt the already working code I have to this either. I think eventually that poster found a work around but I really need to get this working so any help would be greatly appreciated!

    The forum is located at http://natlbraille.wpengine.com/forums/
    I’m using bbPress 2.5.8 on WordPress 4.3. If you need any additional info I’m happy to supply it, just ask. Thanks in advance for any help!

    #165780
    Robkk
    Moderator

    Add this to your functions.php file in your child theme or functionality plugin to remove the display name changer in bbPress and also WordPress.

    add_action('show_user_profile', 'remove_display_name');
    add_action('edit_user_profile', 'remove_display_name');
    
    function remove_display_name($user) { 
        
        if ( bbp_is_single_user_edit() ) {   
            ?>
            	<script>
            		jQuery(document).ready(function() {
            			jQuery('#display_name').parent().hide();
            		});
            	</script>
            <?php 
            
        } else {
            ?>
            	<script>
            		jQuery(document).ready(function() {
            			jQuery('#display_name').parent().parent().hide();
            		});
            	</script>
            <?php }
            
    }    
    #165777
    Robkk
    Moderator

    Closing this in favor of your other topic.

    HELP PLEASE NEW TO BBPRESS

    #165772
    Robkk
    Moderator

    What website field in bbPress, the one in anonymous posting or on their profile??

    #165771

    In reply to: Can bbPress do this?

    Robkk
    Moderator

    THis is probably possible with a specific conditional and might be custom development for now to create in bbPress. You may need to hire a developer to create this for you.

    #165770
    Robkk
    Moderator

    1. How can I get people visiting on the website to login in or register and view their profile? Whenever I look at my website in incognito mode, there is no sign up or register button or view profile button.

    You may need to add login or register menu items, or you can use the bbPress login widget and add links to your default WordPress register page or the page you put the [bbp-reigster] shortcode.

    2. If people can register, how can can that registered person create a new topic? I can’t seem to find that tab thing on bbpress on my website.

    What tab thing? just scroll at the bottom of a forum you created and you should see a topic form.

    3. How can I make the forum so that only registered people can reply and non registered people to only look at the forum?

    I think as long as you do not have any private forums or enable anonymous posting you can do this by default.

    4.How can i get registered users to unsubscribe

    You are not really specific on what to subscribe to, but you can unsubscribe to forums and topics by following this guide. You can only unsubscribe to forums and topics if you are already subscribed to them though.

    Subscriptions

    In other words how can i make the forum on my page like the one on bbpress ?

    Hard work and custom development.

    #165768
    Robkk
    Moderator

    Try a default theme. All plugins deactivate except only bbPress.

    I have no idea why you think private groups would help users to post, which should be in bbPress by default.

    Make sure you users have the participant role and not something like spectator. You can check their forum roles in Users > All users in the WordPress backend.

    #165767
    Robkk
    Moderator

    Does what is in this guide help any??

    Creating Content

    #165765
    Robkk
    Moderator

    @antonhoelstad

    All you had to say was that you did not edit files, if you did not edit any files.

    You did not need to post ALL of the code in the templates that just included any specific keywords to search. If you started fresh from on bbPress then you just posted the default templates.

    Do not post full template code, on this site use soemthing like gist.github so I do not have to scroll through all of that in this topic, or even in the forums search on this site.

    Did you even try putting the templates into a child theme like I said above??

    #165755
    Robkk
    Moderator

    I explain how to here. Simply go to your forum profile and go to subscriptions and hit the red Xs.

    Subscriptions

    #165737
    sameersingla5179
    Participant

    Hello folks,
    I have created a forum using bbpress on my wordpress site but I am not able to create sub forums or should I say categories in it. Any solution for this or any guide to use bbpress properly.
    Thanks

    #165735
    Loc Pham
    Participant

    Thanks everyone for posting your method of inserting inline images. So are those methods which you’ve posted a hack? Will it expose security risk? Why don’t bbPress support this capability as the thread has been asked over 3 years ago?

    #165733
    seco111
    Participant

    I have gone as far and deactivating all my plugins except BBpress and my them 3clicks. even then participants and moderators can not reply or add topics. I also tried the plugin private groups and still nothing. This seems to incredibly simply! but I can not get it to work.

    Under users I have created 4 fake accounts (all my emails) and given them participant access but non of them can us the forum or reply to any topics.

    site name is Spanishscholars.com
    BBpress: 2.5.8
    WP : tried both 4.2.4 and 4.3 ( currently running 4.3)

    ss

    #165731
    Robin W
    Moderator
    #165728

    Topic: How to modify

    in forum Installation
    inboxis
    Participant

    how can i get low ranking roles like subscriber to not see the wordpress dashboard? but make thier profile page different so its not the defalut dashboard in wordpress? For example the ” dashboard in bbpress.org is a profile thing at the top right corner. How do I do That?

    #165727
    inboxis
    Participant

    Could any of you guys tell me what the bbpress roles are: keymaster,moderator,participant,spectator,and blocked?

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