Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 20,751 through 20,775 (of 64,534 total)
  • Author
    Search Results
  • #145810

    In reply to: Plugin submission

    Stephen Edgar
    Keymaster

    If they are commercial plugins and are not GPL licensed they will not be listed.

    License

    If they are GPL licensed and they are in the WordPress plugin repository they will be automatically included in our plugin list https://bbpress.org/plugins

    Primus Palus
    Participant

    If I view the index of the bbpress forum I can see my background image for my theme. When I click to go into a specific forum, the background is replaced with a color (off white).

    I imagine this is all CSS related and somewhere in the code. I however would like to set all forums to show the same background. I am using a theme called “Explicit” for my wordpress site.

    Thanks. I hate being new to this.

    #145799
    Robin W
    Moderator
    #145796
    Primus Palus
    Participant

    I have created a new bbpress forum on my site. If I click on the link through the top menu I get this:

    If I click on the announcements section/forum/category… I get this:

    I want the index to show up the same as the in forum view. But it seems to be not wanting to work right. I’m also unable to override the background image for that page for some reason.

    Any help would be appreciated. I’m at a point now where I’m about to install a different forum and just use it on a sub-domain with no integration with WordPress. This is the second forum I’ve gone through and it’s annoying that there isn’t some simplicity here.

    #145795
    elaborate
    Participant

    I’m starting this thread because I didn’t have much luck with my original thread on the BuddyPress Support forums.

    Basically, what I’m trying to do is copy all the forms from the Edit page from the bbPress profile to another page and still have them work.

    Specifically, I’m trying to move them to the Settings page on the BuddyPress profile.

    The problem is that they don’t work when they’re moved from their original url, the pre-defined values aren’t displayed and submitting changes doesn’t work, so I’m hopelessly trying to find out what is broken and if this is even possible to do.

    Any help will be appreciated.

    Thank you.

    #145794
    Evan Herman
    Participant

    Probably not the most elegant solution, but something I came up with to temporarily resolve the issue.

    First we grab the classes assigned to the body class:

    $body_class = get_body_class();

    Then we just check if bbpress is in the body class array, and if it is, I’ve decided to use jQuery to just switch the classes on the navigation item.

    
    if ( in_array('bbpress',$body_class) ) {
    		?>
    		<script>
    		  jQuery(document).ready(function() {
    		    jQuery('.menu-item-347').removeClass('current_page_parent');
    		    jQuery('.menu-item-2592').addClass('current_page_parent');
    		  });
    		</script>
    <?php
    	}
    
    ttmt
    Participant

    Hi all

    I now this topic is over a year old but I was hoping someone might be able to help.

    I have downloaded and activated the bbPress Post Ratings plugin.

    I have bbPress 2.5.3 installed with forums and posts working.

    Should the plugin work with the version of bbPress?

    How do I use the plugin so I can rate the posts in the forum.

    Thanks in advance for any help.

    #145791
    Evan Herman
    Participant

    I have a forum I am setting up to support some plugins I’ve created. The forum is displayed on a ‘Support’ page. I also have a seperate ‘Blog’ page, which I use for blog posts.

    When a user clicks into a support thread, the navigation item changes from highlighting the ‘Support’ menu item to highlighting the ‘Blog’ menu item. From some research I’ve done it’s due to bbpress using single.php as its page template, which is setting the ‘Blog’ page the current page.

    How can I get this so ‘Support’ stays highlighted after clicking into a thread?

    Sorry if this is an easy fix, I’m new to bbpress and just getting used to the template hierarchy.

    Thanks!

    #145790
    Stephen Edgar
    Keymaster

    Switch to one of WordPress default themes, Twenty Thirteen or Twenty Fourteen.

    If bbPress works try your theme again, if bbPress doesn’t deactivate the plugin, delete it and reinstall.

    And or try deactivating all your plugins except bbPress then reactivate one by one until the error occurs to find a conflicting plugin.

    #145787
    Robin W
    Moderator

    suggest you start with looking at

    bbpress/includes/extend/buddypress/members.php

    This changes bbpress to go to buddypress profile, and should give you all the code you need.

    #145783
    gemini-at-work
    Participant

    let’s see if there is a plan for me to show the sidebar in my twenty eleven theme. renaming the sidebar-page did not do a thing. i’m using a child theme of twenty eleven and tried putting the bbpress.php there instead of into twenty eleven theme, but nothing worked.
    just in case it helps looking at the site, here it is, or the start of it anyway:
    http://foothillfibersguild.org/forums/

    thanks for any suggestions!

    #145782
    ultramalcolm
    Participant

    I’ve installed bbpress, but when I go to the forum in a browser, I just get this message:

    Fatal error: Class 'WP_Post' not found in /nfs/c09/h02/mnt/137912/domains/profoodblogger.com/html/wp-content/plugins/bbpress/includes/core/theme-compat.php on line 375

    How can I begin tracking this down?

    #145779
    lantaarntje
    Participant

    Hi i’m using the Recent Topic Widget but im looking for the exact layout as the bbpress.org Recent Topics on the frontpage. I only get Newest Topic which shows only Topic name – Author and Freshness
    But i like to see: Recent Topic Name – Author – Latest Reply and by Poster name

    Is there a way I can accomplish this?

    Greetings

    #145778
    jbdizzle
    Participant

    So I changed the names of the user roles. I would like to change the text color of each role. Here is the code that I am using to change the name. Could I just wrap the role name in a color code?

    add_filter( 'bbp_get_dynamic_roles', 'my_bbp_custom_role_names');
    
    function my_bbp_custom_role_names(){
     return array(
    
            // Keymaster
            bbp_get_keymaster_role() => array(
                'name'         => __( 'The Dragon Born', 'bbpress' ),
                'capabilities' => bbp_get_caps_for_role( bbp_get_keymaster_role() )
            ),
    
            // Moderator
            bbp_get_moderator_role() => array(
                'name'         => __( 'Moderator', 'bbpress' ),
                'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() )
            ),
    
            // Participant
            bbp_get_participant_role() => array(
                'name'         => __( 'Legionnaire', 'bbpress' ),
                'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() )
            ),
    
            // Spectator
            bbp_get_spectator_role() => array(
                'name'         => __( 'Spectator', 'bbpress' ),
                'capabilities' => bbp_get_caps_for_role( bbp_get_spectator_role() )
            ),
    
            // Blocked
            bbp_get_blocked_role() => array(
                'name'         => __( 'Blocked', 'bbpress' ),
                'capabilities' => bbp_get_caps_for_role( bbp_get_blocked_role() )
            )
        );
    }

    p.s. Is there a way to change what each of these roles have access to?

    #145777
    laternastudio
    Participant

    Hi there,

    I’ve spent a while searching the forums/web regarding custom views, but am a little bit stumped at the moment. Some of the only reference that I’ve found is a bit outdated (though it still seems to work) and incomplete.

    I’d like to create 2 custom views:

    • Display a particular user’s favorites (let’s say user_id is hard-coded to 2)
    • Display a particular user’s subscribed topics (again, let’s say user_id is hard-coded to 2)

    Any points in the right direction? Ideas for resources on the topic of custom views?

    #145775
    jbdizzle
    Participant

    I figured everything out except the post count. On the bbpress forum widget, I would like to have the post count next to the forum like this website has.

    #145770
    drashrafsabry
    Participant

    How to install bbpress on a multisite where one is in arabic RTL and the other is english ??

    #145768
    Charles Mabe
    Participant

    @ronthai: CSS is NOT always the answer. I need to add a class to the bbPress login widget’s avatar.

    siobhan61
    Participant

    Hello,

    I’m using bbpress 2.5.3 with a WordPress twenty-twelve child theme. I’m also using bbpress WP tweaks (1.3.1). I’m trying to incorporate the bbpress forums into our theme, and it works fine on the first level with a custom sidebar (I haven’t really styled anything yet — trying to get the basic functionality first):
    http://innovativeapprenticeship.org/community/

    but at the forum level I’m not getting the right content — no breadcrumb trail; no topic list:
    http://innovativeapprenticeship.org/community/forum/test-1/

    I put a few echo (‘here’) statements into single-forum.php template I adapted for the child theme and can see that it’s being called. But content-single-forum.php, which is called from single-forum.php if there is content, and which would have the breadcrumb trail and the topic list among other things, is not being called. I tried some echo statements in there and nada. It’s not being called from my child theme or from the bbpress template folder.

    Actually, I can see that bbpress has created another navigation level, forum, that doesn’t really exist. Forum is really the first level (our “Community” page). Does this have something to do with the problem?

    Has anyone encountered something like this, and do you have any idea why this is happening?

    cheers, Cheryl

    #145763
    Robin W
    Moderator

    ok, so then to answer your orig question – “Can I easily change the dates and authors of messages on bbpress?” for 40, yes IF you have access to phpmyadmin and are comfortable in doing a few simple (and safe) edits within it.

    If that sounds ok, come back and I’ll tell you what you need to change

    #145762

    In reply to: Private

    Robin W
    Moderator

    ‘Would you happen to know if i can assign/connect such a “private” Group to a Membership Level of my S2 Members WordPress Plugin?’

    Offhand no, I haven’t played with the s2 plugin to know what it does or how it works !

    I suspect that total automation would be hard given that you’d presumably need to link a course or courses to a forum or forums, and then link memebers to a group within bbpress representing that.

    Load the plugin and have a look, it’ll take you probably about 10 minutes to configure and 1/2 hour to work out how you might want to use it. Then come back and let me know what you are trying to do.

    Don’t promise to link, but if it’s easy!

    #145761
    #145757

    In reply to: Freshness for Category

    Robin W
    Moderator

    Chill, we’ll hopefully work it out.

    you might (should) want to create a test site. Whilst that may seem daunting, it is quite easy to do, and once done a great way to test stuff without risking the live site.

    see

    https://codex.bbpress.org/creating-a-test-site/

    Couple of questons when you are ready

    1. The page you are linking to – this is just a members page, not a link to the forum pages?
    2. What is your forum slug called (go into dashboard>settings>forums and look for forum slug.

    ace2five
    Participant

    Hi, I’ve tried this but while it sets the page correctly here: http://ace2five.tv/forums/ and on most other pages, if you click through into a forum: http://ace2five.tv/forums/forum/bbpress-theme/ or here: http://ace2five.tv/forums/topic/topic-bbpress/ it fails to display correctly. This appears to be a header issue. I have asked on the theme thread but had no advice as yet.

    Theme is True Mag installed this week, bbPress installed latest version yesterday. Any help much appreciated.

Viewing 25 results - 20,751 through 20,775 (of 64,534 total)
Skip to toolbar