Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 151 through 175 (of 64,057 total)
  • Author
    Search Results
  • #239329
    mikeraine11
    Participant

    Yes, neither the frontend nor the backend.

    In the WP Admin dashboard, there is no Forums tabs or any mentioned of Forums or bbPress in settings menu.

    On the frontend website, when you go to the forums URL (https://turnaroundinterview.com/forums/), it says Page Not Found.

    #239328
    Robin W
    Moderator

    so you cannot see bbpress on either the frontend and the backend – yes? or just the backend?

    mikeraine11
    Participant

    Hi,

    We recently moved our site from a previous host to WordPress.com, and in doing so updated the site to the Twenty Twenty-Four theme. We use bbPress for discussion forums because it integrates with Memberpress courses.

    All was good on the old site, but now bbPress and any mentions of Forums has disappeared from the WP Admin dashboard. I’m double checked that I am a bbPress keymaster, and also installed the bbPress Style Pack plugin, but don’t see anything there that solves my problem. I have also seen some people with a similar issue say that the All in One SEO plugin was the culprit, but that is not installed on the site.

    We are running version 6.4.3 of WordPress.

    Can anyone please help me get forums working!

    Thank you!

    #239326

    In reply to: Is bbPress alive?

    Robin W
    Moderator

    I have bbpress working fine with 8.2

    #239325

    In reply to: Is bbPress alive?

    davidalbert
    Participant

    I am planning to create a new forum with bbPress. Do you still have issues on 8.2?

    #239309
    Robin W
    Moderator

    You can build your forum to look however you like, many would complain if this was the only way you could show your forum.

    The basic look of the forum is generally determined by your theme, and dependent in theme how you use sidebars.

    The widgets on the left are available either in the default bbpress plugin or in

    bbp style pack

    which will let you style bbpress and add lots of features.

    #239307
    duwg
    Participant

    feel like this forum is a bit of false advertising 🙂 because the default setup looks nothing like bbpress.org

    does anyone know how to get their bbpress layout too look more like bbpress.org and buddpress.org

    I mean the Forum home page shows recent topics/discussion on the right hand side and Category on the left hand side more like Vanilla forum

    default bbpress setup is a forum style home page show category first

    #239304
    Robin W
    Moderator

    it needs a template change – if you know how to FTP

    find
    wp-content/plugins/bbpress/templates/default/bbpress/loop-topics.php

    transfer this to your pc and edit

    change:

    <li class="bbp-topic-voice-count"><?php esc_html_e( 'Voices', 'bbpress' ); ?></li>
    			<li class="bbp-topic-reply-count"><?php bbp_show_lead_topic()
    				? esc_html_e( 'Replies', 'bbpress' )
    				: esc_html_e( 'Posts',   'bbpress' );
    			?></li>

    to

    <li class="bbp-topic-voice-count"></li>
    <li class="bbp-topic-reply-count"></li>

    and save

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/loop-topics.php

    bbPress will now use this template instead of the original

    Repeat this for the file loop-forums.php

    #239303
    jemar707
    Participant

    I am trying to replace the titles for Voice and Replies with dashicons like the WordPress forums are styled. I am using the code below, and it works in that it adds the dashicon, but it doesn’t remove the words.

    
    /*topic titles*/
    .bbpress .forum-titles {
    	overflow: hidden;
    }
    .bbpress .forum-titles .bbp-topic-voice-count::before,
    .bbpress .forum-titles .bbp-topic-reply-count::before {
    	font: 400 16px/1 dashicons;
    	margin-right: 100px;
    	-moz-osx-font-smoothing: grayscale;
    	-webkit-font-smoothing: antialiased;
    }
    
    	.bbpress .forum-titles .bbp-topic-voice-count::before,
    	.bbpress .forum-titles .bbp-topic-reply-count::before {
    		font: 400 21px/1 dashicons;
    		margin-left: 20px;
    	}
    
    .bbpress .forum-titles .bbp-topic-voice-count::before {
    	content: "\f307";
    }
    .bbpress .forum-titles .bbp-topic-reply-count::before {
    	content: "\f125";
    }
    
    .bbpress li.bbp-header li.bbp-forum-info,
    .bbpress li.bbp-header li.bbp-topic-title {
    	text-align: left !important;
    }
    
    /*forum titles*/
    
    .bbpress .forum-titles {
    	overflow: hidden;
    }
    .bbpress .forum-titles .bbp-forum-topic-count::before,
    .bbpress .forum-titles .bbp-forum-reply-count::before {
    	font: 400 16px/1 dashicons;
    	margin-right: 100px;
    	-moz-osx-font-smoothing: grayscale;
    	-webkit-font-smoothing: antialiased;
    }
    
    	.bbpress .forum-titles .bbp-forum-topic-count::before,
    	.bbpress .forum-titles .bbp-forum-reply-count::before {
    		font: 400 21px/1 dashicons;
    		margin-left: 20px;
    	}
    
    .bbpress .forum-titles .bbp-forum-topic-count::before {
    	content: "\f307";
    }
    .bbpress .forum-titles .bbp-forum-reply-count::before {
    	content: "\f125";
    }
    
    .bbpress li.bbp-header li.bbp-forum-info,
    .bbpress li.bbp-header li.bbp-topic-title {
    	text-align: left !important;
    }
    
    #239280
    demonboy
    Participant

    Hi Robin,

    My apologies, I’d said it was User Role Editor. It wasn’t, I used the Members plugin. Unfortunately, I can’t provide a link as everything is behind a login but here is my Members admin page. You can see the additional member roles I created.

    Members roles

    All that said, however, I am wondering if this is a theme update that caused this. Previously I’d themed my forum to display this user role, not bbp-author-role, so it is possible this was over-written by a theme update instead (my theme includes bbpress). Honestly, it’s been over four years since I styled my forum so I’m clutching at straws here, but is there any way your plugin could have over-written any custom code I wrote?

    I think if I add this to my child functions file I may be able to re-introduce the forum role:

    		$bbp_roles['oyster-owner'] = array(
    'name' => 'Oyster Owner',
    'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants
    );
    #239278
    jemar707
    Participant

    I am reading and reading and reading. If I remove the functions I use from above and guess they may be a problem, is this something that can be handled by your style pack plugin instead? (I use it for ALOT). Much of those functions in our plugin relate to bbpress, that’s one of the reasons I use it instead of a child theme sometimes. If I change themes, I don’t want to lose the way I want bbPress to operate.

    #239238
    Robin W
    Moderator

    this error can be produced by several things, it is a usually related to permissions.

    The 10 years old post related to a previous version of bbpress that is very different from todays version.

    two cars stopped at the side of the road with their hoods up doesn’t mean that they both have the same problem 🙂

    #239231
    anutgc
    Participant

    On this page – https://thebakersjunction.com/forums/
    the footer code comes up as text.

    I disabled all plugins one by one. When i disabled G5 Core plugin the problem on this page disappeared but my entire site template got broken.

    I guess it is a conflict between bbpress and g5 core.

    Pls help

    #239225
    Robin W
    Moderator

    sorry, this is not a site design service ! The layout issues are related to how bbpress is interacting with your theme, and there are many thousands of themes.

    I only did this out of kindness to help you.

    You can play with the padding-left: 200px; setting ie changing it to say 210px to move the ‘heading’ to where you want.

    #239208
    ganarukanaru
    Participant

    Buddyboss does not provide free tools to migrate to BBPRESS, which will reduce its service and trust.

    #239207
    ganarukanaru
    Participant

    Since buddyboss’ forum functionality is low functionality, I would like to revert to BBPRESS. If BUDDYBOSS is kind, BUDDYBOSS should provide that tool.

    #239204
    Robin W
    Moderator

    try adding this to your theme’s additional css

    .bbpress .wp-block-group-is-layout-flex {
    	width: 100%;
    	max-width: 100%;
    	padding-left: 200px;
    }
    #239177
    enkoes
    Participant

    Thanks for your reply!

    I only found three widgets in your plugin, ie, Latest Activity, Single Forum Information & Single Topic Information. But they are not the widget I’m looking for. The widget I mean should look like the one used in bbPress support forum (located top left).

    Regards.

    kokiri
    Participant

    Hello Community Members,

    I hope this message finds you well. I am reaching out to address a concern related to notifications in our BuddyPress/bbPress forum. Currently, when receiving notifications for new forum topic replies, the notification list displays something like “bbp_new_reply_5991” instead of providing a user-friendly message such as “Username has replied to your forum topic.”

    This issue has been causing confusion among our community members, as it makes it challenging to understand the context of the notification at a glance. It is crucial for our users to receive clear and concise notifications to enhance their overall experience on our platform.

    If anyone has encountered a similar problem or has any insights on how to resolve this issue, your input would be greatly appreciated. Additionally, if any developers or administrators are familiar with potential solutions or workarounds, please share them with the community.

    Let’s work together to address this matter and improve the notification system in our forum. If you have any questions or need further clarification, feel free to ask. Thank you for your cooperation and assistance in resolving this issue.

    #239170
    enkoes
    Participant

    Hi, I like the forum summary widget (with total posts for each forum) used in bbPress support forum. See the first widget shown in the left sidebar.

    I’ve been searching every where but just couldn’t find the widget. Any clues?

    Regards.

    #239148
    Robin W
    Moderator

    I can only suggest the basic fault finding

    viz :

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, 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.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #239143
    kyle_conrad
    Participant

    Pulling my hair out on this one – Forums and Topics work just fine in the admin and in the front-end. However, Replies totally crash the site – on the front-end, they just fail quietly, but Add New on the Replies page in admin causes WordPress to fail. Trying to track down what could possibly cause this, because it feels really strange!

    Copying over the first 100 lines or so of the stack trace to see if ANYONE has any idea what could be causing this.

    Error:
    Xdebug has detected a possible infinite loop, and aborted your script with a stack depth of '1024' frames
    
      at /www/kinsta/public/internationalmidwivesorg/wp-includes/class-wp-object-cache.php:141
      at WP_Object_Cache->is_valid_key()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/class-wp-object-cache.php:364)
      at WP_Object_Cache->get()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/cache.php:154)
      at wp_cache_get()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/class-wp-post.php:240)
      at WP_Post::get_instance()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/post.php:1036)
      at get_post()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/post.php:1495)
      at get_post_type()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/common/template.php:454)
      at bbp_is_reply()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/replies/template.php:544)
      at bbp_get_reply_title_fallback()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/class-wp-hook.php:324)
      at WP_Hook->apply_filters()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/plugin.php:205)
      at apply_filters()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/post-template.php:174)
      at get_the_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/topics/template.php:603)
      at bbp_get_topic_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/replies/template.php:1405)
      at bbp_get_reply_topic_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/replies/template.php:549)
      at bbp_get_reply_title_fallback()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/class-wp-hook.php:324)
      at WP_Hook->apply_filters()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/plugin.php:205)
      at apply_filters()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/post-template.php:174)
      at get_the_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/topics/template.php:603)
      at bbp_get_topic_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/replies/template.php:1405)
      at bbp_get_reply_topic_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/replies/template.php:549)
      at bbp_get_reply_title_fallback()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/class-wp-hook.php:324)
      at WP_Hook->apply_filters()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/plugin.php:205)
      at apply_filters()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/post-template.php:174)
      at get_the_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/topics/template.php:603)
      at bbp_get_topic_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/replies/template.php:1405)
      at bbp_get_reply_topic_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/replies/template.php:549)
      at bbp_get_reply_title_fallback()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/class-wp-hook.php:324)
      at WP_Hook->apply_filters()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/plugin.php:205)
      at apply_filters()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/post-template.php:174)
      at get_the_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/topics/template.php:603)
      at bbp_get_topic_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/replies/template.php:1405)
      at bbp_get_reply_topic_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/replies/template.php:549)
      at bbp_get_reply_title_fallback()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/class-wp-hook.php:324)
      at WP_Hook->apply_filters()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/plugin.php:205)
      at apply_filters()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/post-template.php:174)
      at get_the_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/topics/template.php:603)
      at bbp_get_topic_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/replies/template.php:1405)
      at bbp_get_reply_topic_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/replies/template.php:549)
      at bbp_get_reply_title_fallback()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/class-wp-hook.php:324)
      at WP_Hook->apply_filters()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/plugin.php:205)
      at apply_filters()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/post-template.php:174)
      at get_the_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/topics/template.php:603)
      at bbp_get_topic_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/replies/template.php:1405)
      at bbp_get_reply_topic_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/replies/template.php:549)
      at bbp_get_reply_title_fallback()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/class-wp-hook.php:324)
      at WP_Hook->apply_filters()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/plugin.php:205)
      at apply_filters()
         (/www/kinsta/public/internationalmidwivesorg/wp-includes/post-template.php:174)
      at get_the_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/topics/template.php:603)
      at bbp_get_topic_title()
         (/www/kinsta/public/internationalmidwivesorg/wp-content/plugins/bbpress/includes/replies/template.php:1405)
    #239135

    In reply to: Is bbPress alive?

    badbert
    Participant

    Seems like a lot of developers are not doing much foor BBpress anymore 🙁

    i wanted to see if there was a plugin to get some core functions for a forum to work:
    – when you click on a topic title, you go to the first unread post (or last post if there are no unread posts)

    but the plugins available to do that do not work anymore 🙁 🙁

    this function is pretty important for normal forum use!

    #239125

    In reply to: Admin Login Isuue

    Robin W
    Moderator

    ok it is probably a combination of plugins/theme, you’ll need to work out which.

    Themes

    As a test switch to a default theme such as twentytwenty, 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.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #239122
    wagganation
    Participant

    while bbpress is active, when i log in to admin the side bar is missing, luckily i have the top bar. i deactivated bbpress and the problem goes away. so obviously this plugin causing it!.have the latest version of wordpress.

Viewing 25 results - 151 through 175 (of 64,057 total)
Skip to toolbar