Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 4,851 through 4,875 (of 64,394 total)
  • Author
    Search Results
  • yogaville
    Participant

    The Divi Theme Builder Header is not loading on BBPress search results. Instead, it looks as though it is loading the default WordPress header.

    Incorrect header
    http://iytawebsite.staging.wpengine.com/forums/search/introductions/

    Correct Header

    Home

    I contacted Elegant Themes already and they directed me here.
    Thoughts?

    Wordpress v5.3.2
    BBPress v2.6.4

    #209199
    ocglimited
    Participant

    I have BBpress installed on WP with Avada theme. I have created a hidden forum where I place administrative notes.

    Looking at the google search console I see error pages for each of my hidden forum topics! But the permalink is showing info I would like to keep hidden too.

    Shouldn’t topics in a hidden forum be hidden as well? Do I have to set each topic to PRIVATE? Is this a bug?

    #209196

    In reply to: Reddit style forum

    webcreations907
    Participant

    Hello,

    Easiest way would be to override the bbpress’s content-single-topic.php file and move bbp_get_template_part( 'form', 'reply' ); to above bbp_get_template_part( 'loop', 'replies' ); within that file.

    For another option, I’ve tried the below on a few different themes without any issues. You’d add the below code to your theme’s functions.php file. Best if you add to child theme so that you don’t have to re-add if you update your theme, same would apply for the first option above.

    
    
    if ( !function_exists( 'oscowordpress1_move_bbpress_reply_form_filter' ) ) {
    	function oscowordpress1_move_bbpress_reply_form_filter( $template , $slug , $name ) {
    
    		if ( is_array( $template ) && in_array( 'form-reply.php', $template ) ) {
    			remove_filter( 'bbp_get_template_part', 'oscowordpress1_move_bbpress_reply_form_filter', 10 );
    			return array();
    		}
    
    		return $template;
    	}
    }
    
    if ( !function_exists('oscowordpress1_move_bbpress_reply_form')){
    	function oscowordpress1_move_bbpress_reply_form( $slug, $name ){
    
    		if ( isset( $name ) && $name == 'replies' ) {
    			bbp_get_template_part( 'form', 'reply' );
    			add_filter( 'bbp_get_template_part', 'oscowordpress1_move_bbpress_reply_form_filter', 10, 3 );
    		}
    	}
    	add_action( 'get_template_part_loop', 'oscowordpress1_move_bbpress_reply_form', 10 ,2 );
    }
    
    

    Best of luck, and hope one of those work out for you. 🙂

    #209195
    Barry
    Participant

    I have zero knowledge of GamiPress…but let’s park that part of the question for a moment 🙂

    Like WordPress itself, bbPress supplies a plethora of hooks that will let you write code that listens for various events—such a new topics being created or replies being added—at which point your code can scan for keywords and interact in various ways. I’m not sure exactly what you’re picturing, but having the bot add replies of its own or perhaps even trigger currency transfers in the context of GamiPress are all possibilities.

    How easy this would be I guess really depends on what sort of tasks you want your bot to perform and what conditions you wish to be met before it performs them, but certainly bbPress/WordPress by themselves provide a nice foundation to build on top of.

    #209191
    webcreations907
    Participant

    The topics & replies within forums you can change in your WordPress admin area at Settings > Forums below “Topics and Replies Per Page”.

    If you want to change the displayed forum amount(shortcode you mentioned), try adding the below code to your functions.php file of your WordPress theme.

    
    if(!function_exists('poco06_bbpress_change_forum_count_display')){
    	function poco06_bbpress_change_forum_count_display( $args ){
    		if( is_array( $args ) && array_key_exists( 'post_type', $args ) && $args['post_type'] == 'forum'){
    			$args['posts_per_page'] = 100; //Change to number of displayed you want
    		}
    		return $args;
    	}
    
    	add_filter( 'bbp_after_has_forums_parse_args', 'poco06_bbpress_change_forum_count_display' ,10 );
    }
    

    That should increase it to 100, change as needed. There might be a plugin for that as well that others may be able to point you to.

    🙂

    #209190
    webcreations907
    Participant

    You could add the below CSS to get your forums off your header and make the forums fill the page width.

    You’d want to add the code to style.css file, preferably in a child theme so that when you update you don’t have to re-add the code. Or if that theme has a options panel with a area to add custom CSS.

    
    body.bbpress .content-wrapper .content-area {
        max-width: none;
        padding: 0 7px;
    }
    
    body.bbpress .content-wrapper, 
    body.bbpress.no-sidebar.page .content-wrapper {
        margin: 0;
        padding: 0;
    
    }
    
    body.bbpress .site-content {
        padding: 30px 0;
    }
    

    Just thought I’d throw that out there as a option 🙂

    #209186

    In reply to: Errore nel login

    Robin W
    Moderator

    bbpress just uses WordPress login, so the issue lies with your site/wordpress

    #209184
    Robin W
    Moderator

    ok, I can only suggest that you revert to the standard tests

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #209181
    #209178
    manish198530
    Participant

    hello

    i am using bb-press plugin in my theme
    i have to add short code in my page with word-press function like this in .php page
    “<?php echo do_shortcode(‘[bbp-forum-index]‘); ?>”

    it’s not working on .php page
    —————————————
    but when i create page in wordpress admin section and add shortcode on page it’s working

    but on .php page it’s not working
    can you please help me what i am doing wrong

    Thanks 🙂

    #209177
    poco06
    Participant

    Hello,

    I’m using bbpress with the DIVI theme and got an issue : the [bbp-forum-index] shortcode returns only 50 forums end no more !
    I have also tried with the Twenty Twenty theme and got the same issue.

    Any idea how I could display more than 50 forums with this shortcode?

    Wordpress 5.3.2 and bbpress 2.6.4
    Regards
    Pat

    #209156
    nemoprofeta
    Participant

    I use bbPress with LearnDash. Recently my users are being redirected to the home page, if they try to visit a forum while they are logged out.
    They should see the login form instead. How can I fix it?

    #209145
    dbushrod
    Participant

    Disclaimer: I am a newbie!

    I have searched for hours to try and find a seemingly basic way to change how bbpress fits into the dara theme, as you can see from the page below, it sits on the header bar:

    Community

    Is there anyone who could help me to get it to fit properly, please!

    Dee

    #209116
    OutoftheHat
    Participant

    Hi,
    I seem to be experiencing this behaviour in 2.6.4. Not sure where to go from here…? I have a test site set up with only bbpress 2.6.4, theme Twenty Twenty v1.1, and an example forum exhibiting the problem, protected behind SeedProd’s Coming Soon plugin (though still get the problem if this is deactivated too). A number of other plugins from the live site are installed but deactivated. I would be delighted if an expert could take a look, and can provide login plus info on where to see the problem… First time you reply to the test reply, it bounces to the bottom; second time, it works… Odd.
    Thanks for your time.
    Neil

    #209066
    kaillarkz
    Participant

    Hello, I saw Gamipress’ potential to change lots of things regarding gamification of forums, but so far it failed pretty hard to me. Thinking about how to make things work, it ocurred to me that making a BOT as a bridge between bbPress and Gamipress might work as I want, but… I have no idea if it’s actually doable nor how to make one myself.
    I’d like to make a BOT to give moderation over a single topic when a random user transfer X amounts of Gamipress’ currency, is it doable? Easy, maybe?
    I’m just asking this because I plan on learning enough to make one, but if it’s too complex I’ll just drop the idea and look for other solutions.

    #209063
    pandee91
    Participant

    Hello,

    I am trying to configure permissions on my bbpress forum. I was following a guide that uses “capability-manager-enhanced” and i can’t seem to get role “Participant” to be able to post on a forum/category!

    What should I do or rather how do i navigate past this issue?

    Welcome to Tadoos Universe

    WPv:
    BBpV: 2.6.4
    Ultra Community: 2.0.25

    #209060
    ocglimited
    Participant

    I am succesfully using bbpress, with the Avada theme. I notice that my bbpress pages have strange title (in the browser tab). FOr example:

    https://telium.io/search/code/

    How can I fix this?

    alexei1966
    Participant

    Dear friends,
    At some point disappeared text from topics. Cannot say exactly at which moment, because it’s not my web-site, but that of a friend of mine.

    All content is present in the database (forums, topics, replies). The TOC of a forum is displayed correctly:

    Фотосъемку

    But when I click on any link to see the topic with replies, I see the following:

    Макросъёмка

    No text, but the rest is displayed well, including images.

    Settings:
    1. bbpress 2.6.4. All other plugins are disabled at the moment (except GD bbPress Attachments, which does not affect). Deleted and reinstalled it from the scratch. Before reinstallation deleted all the settings of bbpress manually from the table wp_options (DELETE FROM on_options WHERE option_name LIKE “bb%”;). No result.
    2. WordPress 4.9.9 with generic theme Twentyseventeen. Change the theme to others – no result either.

    Please help. Thank you in advance.

    #209048
    iamthewebb
    Participant

    I’ve just been testing this on my sites and I can’t get it to fail. Are there any more details in the server error log, do you have any custom code or bbpress plugins installed?
    Also does debugging show any additional info?

    #209045
    diana74
    Participant

    I have wordpress site and want to add “accept term and conditions ” to the forum registration form” in bbPress. How to do this?

    #209028
    mddsharp
    Participant

    I am using the latest WordPress and BBPress as of 2/29/2020

    I don’t know if this is intentional or a bug, but I am throwing it out there.

    If you go to the WordPress dashboard, all Topics, and post a new topic with no forum, it will actually post but not show up anywhere. It won’t even show in topics.

    If another user knows the URL of the topic post, he/she can reply. But, that reply won’t show up in replies in the dashboard.

    If you attempt to delete it by going to the URL and clicking Trash, the browser will start processing it but after 45 seconds it says “This page is not working” but it does delete the post.

    #209027
    packzap
    Participant

    Lately, since the first of the year, Akismet has occasionally been flagging valid replies (posts) and topics as Spam. Thus, not publishing the posts until I manually go in and “unspam” them. These false positives are very frustrating. It is doing this to people that have posted in my bbPress forum for years. What gives?

    I am running WordPress 5.32, bbPress 2.64 and no changes to the Twenty-Fourteen theme in years.

    In Akismet, I only see settings to basically run, or disconnect. I am tempted to do the latter.

    #209024
    patrikkk
    Participant

    Greetings!
    I’ve tried importing my xenforo to wp bbpress. I successfully got the forums, threads and users imported. Although the users would not be able to log in to their accounts (getting incorrect password error), despite the fact bbpress Convert Users option upon import state
    “Passwords remain encrypted, and are converted as individual users log in.”

    Anyone had any experience in this? I didn’t get any error when importing users.
    Altho I did get stuck at step 11, “Calculating closed topic”

    Thanks in advance for your time!

    #209015
    frogman16
    Participant

    I have now tried this:
    Activated: bbPress Notify (No-Spam)
    Deactivated: bbPress auto subscribe for new topics and replies
    Deactivated: AsynCRONous bbPress Subscriptions

    And then this setting:
    Activated: bbPress Notify (No-Spam)
    activated: bbPress auto subscribe for new topics and replies
    activated: AsynCRONous bbPress Subscriptions

    E-mails work for another user I created with both configurations, but myself, as the administrator does not receive a single e-mail no matter what. Have tried various settings. So I guess I am 50% there.

    frogman16
    Participant

    Morning. As the title suggests, “Notify me of follow-up replies via email” is not working. I can tick the box no problem, but no e-mails. I added the plugin “bbPress auto subscribe for new topics and replies” to allow the system to tick the box automatically. I tried the plugin “AsynCRONous bbPress Subscriptions” but no change. I’ve tried Googling this extensively. I’m also not a programmer. Any advice would be appreciated. Thanks.

Viewing 25 results - 4,851 through 4,875 (of 64,394 total)
Skip to toolbar