Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 4,901 through 4,925 (of 64,431 total)
  • Author
    Search Results
  • #209261
    nabeelpommy
    Participant

    Hello! I am using bbpress and when I type anything in topic and try to apply formatting like bold, italic text, it show the code instead of applied formatting, suppose I applied B for bold it shows <b> Text</b> and does not make text bold , same like other command , like if I try to make text as heading3 its shows <H3> Text </H3> instead of text in Heading 3 style.
    What is problem , thx in advance

    Regards
    Like I use b tag here and my text has bold , but in my case it show command name alognwith text instead of applying that command

    #209258
    Robin W
    Moderator

    not used elementor, but this should let you style bbpress

    bbp style pack

    #209252

    Hi,

    I’ve created a website using Elementor and LearnDash. I’ve installed and activated a forum using BBPress. However, when I try to edit the forum with Elementor I get an error message saying ‘Sorry the content area was not found in your page’.

    Could you please advise how I can style my forum with Elementor? I’ve already got into the Elementor setting and ticked the boxes to edit forums, topics and replies.

    Thanks,

    Ben

    #209239
    kurtgarrison
    Participant

    Hi, our company is shutting down a Lithium forum and exploring the idea of importing into bbPress. The bbPress import tool allows importing by connecting to a database. We wouldn’t be able to do that with Lithium. They will provide an XML file on shutdown. Is there a way to import from a file. I reviewed the bbPress provided PHP import files for mapping including the example that can be edited for Forums not included in the dropdown list. So we could edit our data fields to match.

    Any help or insights would be great appreciated!

    thanks,
    Kurt

    #209235
    owhited
    Participant

    I installed bbpress. In the dashboard, the menu items like “Forums”, “Topics” and “Replies” appear for the keymaster role. But it doesn’t appear for Participant role. Do I need to change any settings?

    #209229
    Robin W
    Moderator

    sorry, no idea why.

    Beyond free help, esp. given that divi is a paid product and bbpress is free.

    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?

Viewing 25 results - 4,901 through 4,925 (of 64,431 total)
Skip to toolbar