Search Results for 'test'
-
Search Results
-
Hi,
I’d love to display the latest forum topic to my logged in user using a ‘hello bar’ / horizontal bar at the top of my site (I’d build it in Elementor).I’ve tried with the [bbp-display-topic-index show=’5′] shortcode but it displays it vertically.
I’m not well versed in php but I can copy and adapt.
Would anyone be able to advise how I can do this?
Thanks!Hi guys,
Quite simply the “favorites” button does not show beside the subscribe button on any topic or forum on my site.
I have deactivated – reactivated bbPress. Tried the Twenty Seventeen Theme. Nothing has worked.
I have the latest WordPress version 5.4
I have bbPress version 2.6.4My site is https://fashioncollaborate.com but you wont be able to see anything unless you are a subscribed member. I can provide admin credentials privately?
Hello,
I am using the latest version of wordpress (5.4) and the most recent version of bbPress (2.6.4)
Website: ticsandthoughts.com
I am using the Responsive theme.
I am extremely new to all of this, so apologies if this is a dumb question. I recently set up a forum through bbPress and am wanting to remove the top text on the page “Archive: Forums”, as well as the text description “bbPress forums”.
Here’s a link to how it looks right now: https://ticsandthoughts.com/forums/
Thanks so much in advance!
Alex
We have only just set up our WordPress page so have the latest business version and latest bbpress version. We are using a Hero theme.
We have added a ‘block’ to our home forum page. The title is showing “welcome to our local community forum” but the text that we have written underneath isn’t showing up. We have tried adding this text as another block but that doesn’t show up either. How can we get this to show on our home page?
Also, we would like to edit the text type of the title ‘welcome to our local community forum’ and reduce the size. We can’t seem to find where to do this.
We had the following reply from the help at WordPress: I checked the page for your homepage here: https://wordpress.com/page/connectbuzz.net/197 If you will look at “Page Attributes” on the right side, then “Template” you see you assigned this page for the bbPress Forum Index. It makes the page inevitable. The page has to be blank, because bbPress will override anything that’s in there.
How can we get the text to show up?
Topic: Forum Moderators Not Work
Hello,
I created 2 foruns, called
“forum” and “forum2”.I created 2 users, called
“test” and “test2”.I added the user “test” as Moderator to the “forum”
and “test2” from the Moderator for “forum2”.The problem is that the 2 users are being able to create topics in the 2 forums, being certain that only the Moderators would be able to create in their forums, how can I solve?
Topic: CSS styling query
Hi
I have some queries and I wonder if you can help me get to the bottom of them. I would be grateful for your guidance. Here is the background.
I am using the latest bbPress plugin and I notice that the bbpress.css file is 1702 lines long.
I am using a premium theme (seos-video-premium) and even though I am using a child theme, I have noticed that my Support forum is actually using:
wp-content/themes/seos-video-premium/seos-video-premium/css/bbpress.css
I assume this is because there is no bbpress.css in my child theme css folder so it uses the themes one instead of the bbPress plugin’s one?
So I have two specific questions here.
1/ the bbpress.css file in the premium theme folder is actually 1408 lines of code. So it is 300+ lines shorter than the plugin version. To be honest, I was not expecting to find a bbpress.css file inside the theme. So what am I supposed to do? Simply replace the theme version with your plugin version?
2/ I have been trying to use a beta version of EnlighterJS Plugin (it is their beta that uses EnlighterJS v3. There was an issue with these styles:
#bbpress-forums div.bbp-topic-content pre, #bbpress-forums div.bbp-reply-content pre { display: block; line-height: 18px; margin: 0 0 24px; padding: 5px 10px; white-space: pre; overflow: auto; }
In their classes they have this styling:
.enlighter-default .enlighter-raw { display: none; min-width: 100%; line-height: inherit; font-size: 12px; font-family: inherit; margin: 0; padding: 0; white-space: pre-wrap; word-wrap: break-word; border: none; box-shadow: none; }
The HTML is:
<pre class="enlighter-raw">.textMaterial { /* Uncomment to hide the material */ /* display:none;*/ font-size: 10pt; font-style: italic; font-weight: 700; background-color: yellow; } .textMethod { /* Uncomment to hide the method */ /* display:none;*/ font-size: 10pt; font-style: italic; font-weight: 700; background-color: cyan; }</pre>
Notice that ttheir CSS style uses
display: none;
? The bbpress CSS filepre
class has adisplay:block;
. This causes a problem with the plugin I am trying to use.The author does not want to use
!important
because he says it is bad design. So how do we fix this? How can we allow bbpress to do what it wants withpre
and EnlighterJS do what it wants?