Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 9,126 through 9,150 (of 64,515 total)
  • Author
    Search Results
  • #183506

    In reply to: No toolbar available

    Robin W
    Moderator

    the code

    function bbp_enable_visual_editor( $args = array() ) {
        $args['tinymce'] = true;
        return $args;
    }
    add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );

    in most themes should work fine. the wp-footer part was specific to the other poster.

    The code goes in your child theme’s functions file

    Functions files and child themes – explained !

    #183503
    vikefans
    Participant

    Hello I am interested in setting up bbpress but I already have a forum software that is using the page named Forums. Is this going to cause problems or can I set the default page to use as a different page? Say Forum instead?

    #183501
    paperprofit
    Participant

    Thank you for that suggestion. I will try that.
    I do have another site created in Tesseract that have no Wishlist member or bbpress at this time. I will create a BBpress forum there and see what I get. Your suggestions are much appreciated.

    I have contacted Wishlist as well, in case they know of any issues.

    #183498
    paperprofit
    Participant

    Ironcally, it is the newly created Topics and Replies that are not showing up. I will try reinstalling BBPress, and continue to leave Wishlist out of the equation. I will report back.
    Is it not possible that the problem has to do with my Theme?
    Thanks for your patients, Robin.

    #183491
    Martin
    Participant

    Hi!, I need to do this in my wordpress. I’ver already installed rpb-chessboard and bbpress-do-short-codes plugins, but i don’t know where i have to call function
    add_filter (‘pw_bbp_parse_shortcodes_cap’ , ‘publish_topics’ ) ;

    When I active bb-press-do-shot-codes [pgn] and [fen] sections were disappeard.

    Thanks!

    #183488
    Robin W
    Moderator

    ok, sorry I don’t know much about MU and bbpress functions, so can’t say if that would work

    #183478
    paperprofit
    Participant

    It seemed for a moment that the problem was fixed. I now see the original “topic” entry, but when I added few replies, I cannot see them, unless I log in as admin.

    I had installed the bbpress style pack, and deactivated it to see if that fixed the problem. It did not.

    #183477
    Robin W
    Moderator

    could be lots of things, but try

    bbpress wp4 fix

    and/or

    bbpress wp4 fix2

    #183476
    stefaanc
    Participant

    I am looking for a WordPress forum plugin for an educational environment, and came across bbPress. It has many promising features, but there is one essential feature I need for which I cannot find confirmation in the documentation whether it is available in bbPress. This is it:

    When a user (student) posts for the first time to a forum — typically in answer to the question related to that specific forum — I want they cannot read the available forum posts until they have submitted their first post: I see nothing/I submit my first post/now I see all other posts.

    This is a ‘trick’ often used in educational settings, because it stimulates every student to think about the question from scratch, unbiased by the previous answers. Such an approach stimulates a larger diversity of answers.

    Is such a tool available in bbpress?

    Thanks for your insight!

    #183475

    In reply to:

    blasterspike
    Participant

    I have to update this thread.
    After the Nth time that I was uninstalling/installing bbPress 2.6 beta 2 to do a test with a new import, this time it’s just giving me a wrong password error while I’m 100% sure of the password as I have done a copy/paste from the old phpBB forum.

    #183473
    paperprofit
    Participant

    I have a forum that I wanted to protect for my members only. I have Wishlist-member installed and activated, but bbpress topics and replies seem erratic when I try the protection. So I removed all protections to make sure that the issue is not with bbPress or even my Theme (Tesseract).

    What I found out is that even with my protections all off, bbPress is not diplaying my Topic, only the replies to them. I have 3 topics. Is there a way you could help? Here are the topics:

    Market Commentary

    Theta Gain / Losses

    PCCRC to Genie

    Incidentally, when I am logged in as admin, I do see the original posts (topic).

    #183459
    shazzhy
    Participant

    @casiepa
    Hi Pascal, thanks to your advice, I managed to do exactly what I was trying to: an integration between a new application based on Custom Post Type (for games registration for a RPG club in Brussels) and integration with our bbPress Forum (I can show you if interested). One thing I could not achieve is changing the post date/time in order to “Up” the messages that are updated through the integration. I’ve tried updating Post_date, Post_Modified but without any luck. It also need to update the right column with Last Message Date displayed. any recommendation where to look into?
    Thanks !

    #183458
    KurzBaginski
    Participant

    Hi Pascal,
    a freelancer has builded a plug-in for me which works fine. I will send it to you by email. Perhaps you can use it for your bbPress Toolkit.

    Regards
    Jörg

    #183455
    Stephen Edgar
    Keymaster

    Thanks for the detailed explanation @tweichart 🙂

    This has been fixed for the upcoming bbPress 2.6

    It was fixed via https://bbpress.trac.wordpress.org/changeset/6113

    tweichart
    Participant

    Hey guys,

    just stumbled over a small 500 error in the functions file:

    
    AH01071: Got error 'PHP message: PHP Fatal error:  Uncaught Error: [] operator not supported for strings in /var/www/vhosts/mydomain/wp-content/plugins/bbpress/includes/forums/functions.php:1854
    Stack trace:
    #0 /var/www/vhosts/mydomain/wp-includes/class-wp-hook.php(298): bbp_pre_get_posts_normalize_forum_visibility(Object(WP_Query))
    #1 /var/www/vhosts/mydomain/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters('', Array)
    #2 /var/www/vhosts/mydomain/wp-includes/plugin.php(515): WP_Hook->do_action(Array)
    #3 /var/www/vhosts/mydomain/wp-includes/class-wp-query.php(1681): do_action_ref_array('pre_get_posts', Array)
    #4 /var/www/vhosts/mydomain/wp-includes/class-wp-query.php(3238): WP_Query->get_posts()
    #5 /var/www/vhosts/mydomain/wp-includes/class-wp-query.php(3347): WP_Query->query(Array)
    #6 /var/www/vhosts/mydomain/wp-conten...
    

    Should be fixeable, ln 1850-1854 is in the bbp_pre_get_posts_normalize_forum_visibility function and looks like this:

    
    // Get any existing meta queries
    $meta_query   = $posts_query->get( 'meta_query' );
    
    // Add our meta query to existing
    $meta_query[] = $forum_ids;
    

    adding an array check to ln 1850 should suffice (i do actually not know what one’s trying to achieve here, so this is just a quickfix):

    
    $meta_query   = is_array( $posts_query->get( 'meta_query' ) ) ? $posts_query->get( 'meta_query' ) : array( $posts_query->get( 'meta_query' ) );
    

    side-note: wp version 4.7.3, bbpress version 2.5.12, php version 7.1.3

    Cheers,
    Toby

    #183432

    In reply to: Slug Conflict

    webdotcom
    Participant

    As soon as I renamed the post_name for the hardware image from “hardware” to “hardware-attachment” in wp_posts, I was able to use “hardware” as the forum slug in bbpress.

    I found a filter that automatically adds “-attachment” to file slugs, so that file pages don’t automatically reserve slugs.

    Really silly that it can happen though.

    #183426

    In reply to: bbp_reply_admin_links

    Robin W
    Moderator

    ok, two things

    1. what does not working mean ?
    2. html is included because that’s what you put in your thread as what you wanted !

    Now I trying to change args of bbp_get_reply_admin_links (stored in bbpress/includes/replies/template.php)
    Thats my hook
    function hw_get_reply_admin_links ($args) {
    $args = array (
    ‘before’ => ‘<div class=”list”>’,
    ‘after’ => ‘</div>’,
    );
    return $args;
    }
    add_filter (‘bbp_get_reply_admin_links’, ‘hw_get_reply_admin_links’ );
    What’s wrong here?

    mareczek1235
    Participant

    Hi, i installed bbpress and i don’t know where can i change directing.

    I want just to change the redirection after clicking on the username who created a topic / post .

    Actually it direct me to : mystie.com/members/myusername/

    I just need to change it : mystie.com/users/myusername/

    How and where i can do that?
    thank you very muich for help!

    #183417

    In reply to: New Users Can’t Post

    jamiehennings
    Participant

    Hello,

    I want to share my experience and some troubleshooting steps that I have to learn from bbPress so can you suggest me that can I upload the post on your forum or not.

    #183415
    jamiehennings
    Participant

    Hello,

    I am looking to change color of “text” and I tried to it by using CSS but it can’t work, but when I use the instruction that you provide in your thread then my problem get resolved.

    #183412

    In reply to: Slug Conflict

    webdotcom
    Participant

    Was due to an image upload with hardware as the file name. Doesn’t seem right that bbpress doesn’t have its own “namespace” or taxonomy (sorry not wp pro here). Or am I just missing something?

    #183410

    Topic: Slug Conflict

    in forum Troubleshooting
    webdotcom
    Participant

    Hello,

    I was creating a forum in the admin, and after publishing, the slug “hardware” had a -2 on it, so became hardware-2

    There’s no other forum with the same slug, so I don’t understand why its adding the -2 on it.

    So my question is: How do I avoid slug conflicts?

    I have a woocommerce category called “hardware” as well, but even trying to change that to “hardwares” I still cannot use “hardware” without the “-2” for the forum.

    Are bbpress’ slugs and terms not “segmented” under “/forums”?? Can I not have a “hardware” shop category and a “hardware” forum?

    Please advise!

    Dustin L.
    Participant

    WordPress 4.7.3
    bbPress 2.5.12

    Everything was working fine with WooCommerce 2.6.14. I had forum root set to ‘community’ and I created a page with the slug ‘community’. When navigating to /community WP was displaying my page.

    After updating to WooCommerce 3.0.1 WP now displays the forum root (archive-forum.php) instead of the my custom page (page-community.php).

    If I switch to storefront or any of the recent Twenty * themes the problem goes away. If I use my theme and disable all other plugins, the problem persists. So this seems to be a conflict between my theme and WooCommerce that is causing this issue.

    I can resolve the issue by changing either the forum root or my page slug but I would prefer not to do that. Any ideas on how I might be able to resolve this and keep my URLs intact?

    #183405
    Rixter
    Participant

    Do you happen to have the answer to this as well…?
    It is WooCommerce related, not bbPress though.

    I would like to change the color of the text when filling out username.
    Through WooCommerce I have a page ‘My account’ and in it two text boxes. One for username, one for password.
    The text on my site is white, the background of these fields also.
    So when you type name or passwords, it’s invisable.

    I would like to add code to custom CSS to solve this.

    What would be the code for this?

    I think the element is called something like this…
    input#username.woocommerce-Input.woocommerce-Input–text.input-text.

    (I am slowly learning how CSS works, tried to do it myself but it didn’t work…)

    #183388

    In reply to: BBpress forum error?

    bjoernschiffer
    Participant

    Yes its work i have only change the bbPres version on bbPress version 2.6-beta-6251
    thank you !!!

Viewing 25 results - 9,126 through 9,150 (of 64,515 total)
Skip to toolbar