Robkk (@robkk)

Forum Replies Created

Viewing 25 replies - 1,301 through 1,325 (of 3,784 total)
  • @robkk

    Moderator

    Use this custom CSS to make the forums full-width.

    .bbpress #content {
      width: 100%;
    }
    In reply to: BBPress Subscriptions

    @robkk

    Moderator

    on their BuddyPress profile there is a nav item called Forums, after selecting that you should see a subnav item called subscriptions.

    @robkk

    Moderator

    I see it is now on your forums. I see that the CSS causing the issue is definitely from the bbPress New UI plugin in its dark theme.

    Contact the developer of the plugin so other users do not come across the same issue as you are.

    Oh and bbPress has classes for each of its areas on the forums, most prefixed with some kind of bbp in them. Other plugins and themes could use those classes and add CSS styles for those areas in their own respective stylesheets to style the forums differently.

    @robkk

    Moderator

    You can create a ticket in the bbPress trac, if you think this would be a great idea to have a hook for. I cannot really think of any other great uses except for the link counter feature you said though.

    @robkk

    Moderator

    This is what is causing the issue.

    .bbp-reply-content p {
        margin: 0px;
        padding: 0px;
    }

    You can do this instead.

    .bbp-reply-content p {
        margin: 0px 0px 10px;
        padding: 0px;
    }

    @robkk

    Moderator

    Add forums and topics to a sitemap and send it in Google Webmaster tools for better indexation.

    @robkk

    Moderator

    Do some troubleshooting. It could be cache, your permalinks need to be refreshed, etc.

    Troubleshooting

    Navigation Links Return 404s Errors

    @robkk

    Moderator

    I kind of disagree with using a theme for just bbPress templates, just customize the forums to your liking with a plugin like bbP style pack.

    In reply to: indispensable plugins

    @robkk

    Moderator

    Depends on what you need. It may be best for you to just search the plugins directory to find what you need.

    Plugins

    In reply to: Install problem

    @robkk

    Moderator

    bbPress does not create any database tables it used WordPress’s tables.

    Stored Database Data

    Install WP Admin No Show to disable users from accessing the WordPress backend.

    Troubleshoot for missing pages.

    Troubleshooting

    In reply to: PHP7 compatibility

    @robkk

    Moderator

    Not sure, bbPress could always possibly need only slight changes to support it if any. You can always try it on a test server/local development area to check and make sure though.

    @robkk

    Moderator

    What does this have to do with bbPress?

    @robkk

    Moderator

    is it possible to make the “Forum” dropdown menu a required field, and to require that in that drop down users choose a forum and not be able to choose “no forums” (which currently shows as the the default option).

    I will create a trac ticket for this later today. It might be best for it to be required and for the default text to be “choose forum” instead.

    You can create a button to your new topic page easily by using the text widget provided from WordPress, and adding this simple HTML.

    <a href="http://yoursite.com/new-topic" class="button">New Topic</a>

    In reply to: Add/Change User roles

    @robkk

    Moderator

    Create new roles with custom capabilities.

    Custom Capabilities

    TO have individual colors for each role, there is a function that might help. I think you need to create a varialbe to pass the bbp_get_user_display_role() with the id of the user in the reply author bbp_get_reply_author_id() to get the specific user role of the reply author then pass the user role name into $classes. You might also need to use strtolower() to make the class in your code lowercase.

    
    function my_reply_class($classes) {
    	$classes[] = 'test-class';
    	return $classes;
    }
    add_filter( 'bbp_get_reply_class','my_reply_class' );

    After all that, all you would need to do is add this CSS.

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

    @robkk

    Moderator

    This might be custom development and you may need to hire a developer to create this for you.

    @robkk

    Moderator

    link to your site you might need some extra CSS.

    In reply to: WP_DEBUG errors

    @robkk

    Moderator

    Not really a bbPress issue, bbPress just spits out the information. Read this codex guide explaining the issue.

    bbp_setup_current_user was called incorrectly

    @robkk

    Moderator

    This sounds exactly like your other topic here…and the other one you also created.

    HELP PLEASE NEW TO BBPRESS

    It is most likely a cache issue on your end. Make sure you have WP-Super-Cache set up correctly and that the cache refreshes when a new post is published or updated.

    Clear all cache files when a post or page is published or updated.

    I saw this message on your forums page source code that is why I know you are using that specific plugin.

    <!-- Dynamic page generated in 1.073 seconds. -->
    <!-- Cached page generated by WP-Super-Cache on 2015-08-25 19:54:03 -->
    
    <!-- super cache -->

    Also do not post multiple topics of the same issue, just update your original topic.

    @robkk

    Moderator

    link to a post that should have line breaks so I can check it out.

    In reply to: Custom freshness links

    @robkk

    Moderator

    @markburgess

    Do you trash or restore any topics?? Some users have been saying this may be the cause of the issue.

    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.

    @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()

    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

    In reply to: Two columns of forums

    @robkk

    Moderator

    What exactly do you mean??

    @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 }
            
    }    
Viewing 25 replies - 1,301 through 1,325 (of 3,784 total)