Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 29,401 through 29,425 (of 64,535 total)
  • Author
    Search Results
  • #119057
    joshuaslate
    Participant

    Hello! I’m helping a friend with his website. He’s trying to make a community for investors. We’re having trouble with the bbPress forums. You can see that http://investorswap.com/board/forum/general-stock-talk/ works, but if you go up a level to http://investorswap.com/board it is showing the category and boards, but they aren’t clickable. I’ve never used bbPress or BuddyPress before this, so I’m pretty lost. Any help would be very appreciated! This is intended to be a site-wide forum and not group specific.

    Using the latest version of WordPress, bbPress, and BuddyPress!

    Thanks!

    #119056
    htz77
    Participant

    I solved this with some CSS. First, in WP-Admin > Appearance > Menus, i added a custom CSS class to my tabs (at least my Forum tab and News tab). If you don’t see the CSS-classes field, toggle it on in the Screen-Options. For my Forums tab, i set a CSS class of “nav1-forum” and my News tab got “nav1-news”.

    Then in my CSS file (style.css), i added this to my Active-tab styles
    .bbPress #main-menu #menu-main-menu li.nav1-forums a,
    which makes the Forum tab highlighted whenever bbPress is “on” (based on the body class “.bbPress”.

    And I added this to my Inactive-tab styles:
    .bbPress #main-menu #menu-main-menu li.nav1-news a,
    which forces my News tab (which is for my normal “posts” post-type, the blog area of my site), to appear as Inactive, even though its element actually does incorrectly have the class “current_page_parent”.

    Of course you may need to adjust the IDs in the css, to match your html.

    htz77
    Participant

    Has a solution been found for this yet? When viewing any page of my Forum, my Menu (from wp_nav_menu) actually shows my NEWS tab (the LI element) (the normal “posts” post-type, for the blog section) with the “current_page_parent” class. So my forum looks as if it’s in the News section. I do have a Forum tab in my menu, but it is the Forum index page (using a shortcode). I suppose i can just use CSS to fix all this, but i would think bbPress would be able to avoid incorrectly triggering the “current_page_parent” class on the wrong element.

    #119052
    htz77
    Participant

    @Shane – Hey, thanks for responding, i appreciate the help. I finally found the issue. It was a conflict with the Slug i had entered in WP-Admin > Settings > Forums > Archive Slugs > Forums Base. I had it as “forums” — i guess that’s the same name as the CPT used by bbPress. So when i changed my slug to “theforum”, the problem was solved.

    • This reply was modified 13 years, 9 months ago by htz77.
    #119051
    Rethink
    Participant

    Wordpress and bbPress are up to date. This is part of a WordPress multisite install.

    http://anabaptistworship.com/category/community-music/

    I am using a custom child theme and there is no error when I switch to twentyeleven.

    I recently started getting this error, even on pages that aren’t part of bbpress on my site. I’m not sure when it started–maybe with a recent update?


    Error:

    Warning: Missing argument 2 for _bbp_has_replies_where() in /hermes/waloraweb048/b1387/as.rethink/wp-content/plugins/bbpress/bbp-includes/bbp-reply-functions.php on line 1381

    Fatal error: Call to a member function get() on a non-object in /hermes/waloraweb048/b1387/as.rethink/wp-content/plugins/bbpress/bbp-includes/bbp-reply-functions.php on line 1384


    Lines 1381-1385 of the file it mentions:

    function _bbp_has_replies_where( $where, $query ) {
    
        // Bail if no post_parent to replace
        if ( ! is_numeric( $query->get( 'post_parent' ) ) )
            return $where;
    

    Any suggestions? Thanks!

    #119049
    zaerl
    Participant

    What 500 error you got? You can see it from the apache error log (tail /var/log/apache2/error.log)

    #119045
    WHUK_Barb
    Participant

    It’s a weird incident where despite all my efforts, I just not able to get bbpress correctly installed on one of our servers. Though infact I’ve done this in the past for couple of our clients, but just unable to figure out what’s going wrong this time. After installing bbPress from the WordPress plugins menu, I get to see a 500> Internal Server Error for one of the clients site. I tried renaming the bbPress folder to bbpress-bak in wp-content/plugins, it didn’t give me an error, but I couldn’t activate bbPress with the folder name changed.I’ve set 755 for bbPress. But no luck with that, still trying. Can someone please help me with it ?
    Regards,
    Barb from Webhosting UK

    #119038

    In reply to: Ask for a plugin

    matrixd
    Participant

    @zaerl It sounds great!

    #119036
    htz77
    Participant

    I have a custom WP_Query outside the main loop, in my header.php, and also another one in footer.php. On my Forums List page (the top/base level of bbPress that lists all my Forums), the custom WP_Query in both header.php and footer.php, no longer works. It shows another instance of the bbPress Forums List, instead of showing the correct content (as it does on every other page of my site, including all other bbPress pages). My custom WP_Query is
    $args = array(
    'post_type' => 'page',
    'page_id' => 218
    );
    $the_query = new WP_Query( $args );
    while ( $the_query->have_posts() ) : $the_query->the_post();

    the_content();
    endwhile;
    wp_reset_postdata();

    I also tried get_page, which also didn’t work.
    $page_id = 218;
    $page_data = get_page( $page_id );
    $page_content = apply_filters('the_content', $page_data->post_content);
    echo $page_content;

    I tried using a bbPress ShortCode in a WP-Page called “Forums”, and then also without a page, just using bbPress Permalink “Forums”, without a wp-page and shortcode. Same problem either way.

    Why would bbPress conflict with these core WP functions? And why would it happen ONLY on the Forums List page? I also tested this in TwentyEleven, and the problem is there too.

    #119031
    JamesWagner
    Participant

    By the way, those comments about ways to manage searches are more of a wishful hope. The real issue is getting searches that include the forum. At this point, I am assuming that it is a configuration issue, rather than capability that needs another plugin.

    Thanks for your help….
    Jim Wagner

    #119029

    In reply to: 404 Error BBpress

    sharonlipinski
    Participant

    I was having the same problem and your suggestion fixed it. Thanks BenNielV!

    #119028
    Shane Gowland
    Participant

    Thanks Pippin! 🙂

    #119026
    JamesWagner
    Participant

    Greetings –

    A very green WordPress user, here, who still has a LOT to learn. One thing I do need to learn is about the Search function. Installation: bbPress 2.1.2, Responsive Theme, WordPress 1.7.7.

    When I enter a search term in the search box on any forum page, it finds nothing in the forum, even though there are entries with exactly the same tag as the search term. But it finds multiple entries on the rest of the site.

    At the very least, search needs to find entries in both the forum and the site, generally. Preferably, to reduce response clutter, it would be nice to have searches originating on a forum page return results only from the forum. Or, even better, would be a selector that says “search in:” documentation, application notes, blog, wiki, forum, or site as a whole.

    Can someone suggest any strategies to get a search that at least works in the forum?

    Many thanks
    Jim Wagner
    Oregon Research Electronics

    #119025
    citizenkeith
    Participant

    Hello!

    I am having a problem with my site. I have had the bbPress plugin installed on my WordPress for some time now, but it has not been activated. I just kept it there, and updated it regularly, until I finished working on my theme. Well, that work is finished now. When I activated the bbPress plugin, the entire website doesn’t load (“View Page Source” reveals nothing).

    I would like to delete bbPress from my database, but I have no idea how to do that. I just want to start over from scratch…

    Anybody? 🙂

    #119024
    laprek
    Participant

    Hello everyone!
    Would it be possible to import oxwall forums to bbpress?

    #119022
    tamarazuk
    Participant

    Hi,

    I am unable to view the topic or reply content. With debug on I receive the following error

    WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘FORCE INDEX (PRIMARY, post\_parent) WHERE 1=1 AND (wp\_posts.ID = 647 OR wp\_posts.’ at line 2] SELECT SQL\_CALC\_FOUND\_ROWS wp\_posts.* FROM wp\_posts JOIN wp\_icl\_translations t ON wp\_posts.ID = t.element\_id AND t.element\_type IN (‘post\_topic’) JOIN wp\_icl\_languages l ON t.language\_code=l.code AND l.active=1 FORCE INDEX (PRIMARY, post\_parent) WHERE 1=1 AND (wp\_posts.ID = 647 OR wp\_posts.post\_parent = 647) AND wp\_posts.post\_type IN (‘topic’, ‘reply’) AND (wp\_posts.post\_status = ‘publish’ OR wp\_posts.post\_status = ‘closed’) AND t.language\_code=’en’ ORDER BY wp\_posts.post\_date ASC LIMIT 0, 15

    I have had this error since I installed this plugin over a month ago and have not been able to fix it. At that time I found this ticket1 which lead me to this 2 line change2. I decided to add these two lines but that did not help either.

    I have switched themes to Twenty Ten bbPress, Twenty Eleven, and the standard Twenty Eleven. I have also disabled almost all plugins (not WPML because I’ve had bad experiences with disabling and re-enabling it). None of this troubleshooting actions have helped. I then sat around waiting for an update, but unfortunately one has not come yet.

    Since we are reaching the launch date I would like any help from anyone who has encountered this issue and successfully fixed it.

    Thank you so much! Tamara

    • This topic was modified 13 years, 9 months ago by tamarazuk.
    #119020
    EricSchmitz
    Participant

    Thanks, Spence, you’re a stitch! I LOVE resources like this! Full of great tips that I never would have worked out on my own.

    If anyone has a moment to answer a newbie question, I’m just getting started with BuddyPress and bbPress, and am not yet clear on the difference between “Forums” and “Sitewide Forums”. What’s up with that?

    #119010

    Topic: Profile links

    in forum Installation
    on3advertising
    Participant

    There is a common disconnect between the WP user profile and bbPress. It’s not integrated. Right now if the user registers with the bbPress registration, then logs in, it takes them to the WordPress profile page. This isn’t good for branding. First of all, it takes them ‘out’ of the site into a WordPress profile (confusing them right off the bat), which has the WordPress logo and WordPress backend style. At this point, a non-WP user doesn’t know what to do to get back to the site.

    Is there a clean, easy way to redirect the “Profile” link back to the bbPress profile and prevent them from ever hitting the WordPress brand? The site needs to feel consistent and well-thought out without this random user flow.

    The website I’m working on is: http://www.compusoftdevelopment.com/forum

    #119009
    on3advertising
    Participant

    I want to customize a topic that is closed. It was easy to find the css class for a topic that was closed, but I cannot for for the life of me find what php file is executing that class. I want to add an extra column with the string “[Resolved]” next to the name of the topic to make it more intuitive for my users. The website with an example of a closed topic is: http://www.compusoftdevelopment.com/forum/forums/forum/submitted-features/

    I am running Wp v3.4.2 and bbPress v2.1.2

    #119006

    In reply to: Arabic Translation

    Yousef Matios
    Participant

    Hi, as part of one of our projects at Tasweek Online, we had to FULLY translate bbPress v2 to Arabic. I am not sure how to add it here, but if you want it then get in touch.

    • This reply was modified 13 years, 9 months ago by Yousef Matios.
    • This reply was modified 13 years, 9 months ago by Yousef Matios.
    #119004
    zaerl
    Participant
    bbp_get_user_profile_url( $user_id = 0, $user_nicename = '' )
    

    is the function for retrieving the user profile URL. If you don’t pass an ID it takes that current user ID.

    \wp-content\plugins\bbpress\bbp-theme-compat\bbpress\user-details.php
    \wp-content\plugins\bbpress\bbp-theme-compat\bbpress\user-favorites.php
    \wp-content\plugins\bbpress\bbp-theme-compat\bbpress\user-subscriptions.php
    \wp-content\plugins\bbpress\bbp-theme-compat\bbpress\user-topics-created.php
    

    are the template files that you can override in your own template.

    #118997
    applesqaz
    Participant

    yep currently i have no reason to use BBpress. The above reply or elese where on the forum is that it is only 500 lines of code. Okay thanks no thanks.

    Im here to download and use this program as how the demo look, not how it looks minus 500 lines of code. You could write Download BBPress minus 500 lines of code see how many download.

    Like I said Im willing to pay for theme. I dont see logic of withholding it. All it does is make me forget about bbpress. Not everyone installing these scripts is a programmer / designer. 500 lines might as well be 1 million to me and others.

    I thank the guys who created this for their great effor, it looks nice.

    #118996
    masada
    Participant

    I agree. This theme would spread the word and it would encourage people to try bbpress.

    #118995
    applesqaz
    Participant

    yea i installed it and it looks pretty bad on mine.

    When you download it you think its going to look like this site and thats what draws people in buy when they install it I think everyone of them is disappointed.

    I dont get why you dont release this theme. People are asking for it and want to use BBpress but they stop using it cause all the other themes are sh!t. This is the only nice theme and only reaon i consider bbpress.

    If you dont wanna give it away for free put a price on it and let us buy it.

    what is the advantage of withholding it, how does it help you spread the bbpress word. If it was released more sites would run bbpress

    pshudgins
    Participant

    Hello… using pagelines, and have installed bbpress. Forum seems to be working fine, but the alignment of the header text for the columns… e.g., topic, posts, voices, freshness… is off…not aligned horizontally. If you can let me know how to edit the CSS for this particular piece, I’d really appreciate it. Also, possible to change the column header text? If so, how? THANKS http://www.powelltatewptest.com.php5-22.dfw1-1.websitetestlink.com/?forum=gear-swap Also, seems like the topic title is in the wrong place… should be left-aligned, then “started by” should go underneath.. just like this forum. Thoughts on how to fix?

    • This topic was modified 13 years, 9 months ago by pshudgins.
    • This topic was modified 13 years, 9 months ago by pshudgins.
Viewing 25 results - 29,401 through 29,425 (of 64,535 total)
Skip to toolbar