Search Results for 'bbpress'
-
Search Results
-
Re allinop.com
1. I have tried using bbpress style pakc to remove the words ‘creator’ ‘topic’ that are above every reply to no avail (bbstylepack > topic/reply display > 10. > 0px , but this did not work
2. I used bbstyle pack to disable all breadcrumbs. An unintended side effect is that topic titles also got removed. (now breadcrumb disable has been deselected).
Are there any css solutions for the above?
Topic: No forum sidebar
Hello,
I setup my BBPress forum, but there’s no forum sidebar,
I need a widget to show the users activities,
Please tell me how to get this forum sidebar.
Thank you very much !bbpress dashboard not working. and some errors show in home page.
here is video link discribe the problem
bbpress dashboard not working
https://drive.google.com/file/d/1sgTIptA-flUxGz__AP0BQHvK3wBHDMIo/view?usp=sharingTopic: Text editor not showing
Text editor is not appearing.
I use Generatepress with bbpress, bbstyle pack.
I selected text editor via bb stylepack plugin
I tried the classic editor with no success.
Re: Website: allinop.comI have used the following css to modify the [bbp-topic-index]
.bbp-topic-voice-count, .bbp-topic-reply-count, .bbp-topic-freshness { /* Hides elements related to voice count, reply count, and topic freshness */ display: none; } .avatar-14 { /* Hides avatars with the class "avatar-14" */ display: none !important; } .bbp-search-form { /* Hides the bbPress search form */ display: none; }I have 2 issues:
Firstly, the topic titles do not take the entire horizontal space.
It is as if the hidden elements still occupy the space.
I have tried ‘hidden: none’ instead ‘display: none’ to no avail.Secondly, I’ve been trying to also remove the border around the list of latest topics.
I have unsuccessfully tried:
.bbp-topic { border: none; }and
.bbp-topic { outline: none; }I would be grateful for any ideas.
Topic: forum issues
Hi Robin,
You say ‘no issues’ but I’m having issues with my installation.
Somehow the I can’t access the ‘Forum’ settings in my menu, because it’s not there anymore. The plugin is active but not shown in the left navigation bar.Next to that I can’t check the user data anymore. The users in my list are not clickable anymore. And when I deactivate the plugin, the user are clickable.
So thats strange right.It’s probably another plugin that is causing the issue with bbpress, so I’m gonna check for that. If you ever heard something like this, please let me know.
Otherwise I’ll come back with my findings…I’ve spent a lot of time preparing my website for launch, but I’ve encountered a few roadblocks that I can’t seem to overcome. Any help would be greatly appreciated.
Forum URL: https://HeresOurSquirrel.com
Issues:
#1: Sometimes when I sign on, it fails and suggests the page is cached. However, I am not using any caching app.
#2: When registering… (I am using the Ultimate Members plugin — is there any other way to handle this?)
2a) emails aren’t being sent
2b) role isn’t being set (they’re participants, but the role isn’t being set to contributor)
2c) no users are being displayed under the “membership” menu item#3: When signing on as the admin (“TheSquirrel”) I can’t get to the dashboard… when entering “https://www.heresoursquirrel.com/wp-admin” in the address bar and clicking enter, it just returns to the Forum.
I created two test accounts; One participant, and one keyholder, so if you would like to sign on as either, please DM me and I will provide the sign-on credentials.
Any other feedback would be greatly appreciated.
WordPress Current version: 6.4.3
bbPress Version 2.6.9Thank you in advance!!
Hi
I am running BBPRESS and am looking to add a login link to Add login link to “You must be logged in to create new topics.” which appears at the bottom of Topics list when you are not logged in.
I have copied out the Forum-Topic.php file and it is located in my Themes BBPRESS folder.
Code in my Forum-Topic.php that I am looking to add to is ….
<div id=”no-topic-<?php bbp_forum_id(); ?>” class=”bbp-no-topic”>
<div class=”bbp-template-notice”>- <?php is_user_logged_in()
? esc_html_e( ‘You cannot create new topics.’, ‘bbpress’ )
: esc_html_e( ‘You must be logged in to create new topics.’, ‘bbpress’ );
?>
- <?php is_user_logged_in()