Search Results for 'bbpress'
-
Search Results
-
Hi everybody!
I have users from several places in our service. That means there are also several bbpress- forums in use.
I am looking for a short code which shows the forums where a user has joined. Do you have any idea? That information is available on the Buddypress profile, but it needs some clicking and our users are frustrated.
It would be nice to place the short code on sidebar so users can go directly to the forum without clicking hassle š
Thanks you in advance, bbpress is dynamite š
Hello, I am running WordPress 5.4, we have Memberium 2.158, and we have installed Image Upload for bbPress Pro so our users can import images. Our issue is that a forum user cannot import more than one image unless they are the Keymaster. Image Upload says that’s not their problem, that it’s another plugin’s issue. Do others have a similar setup and have any advice on how to fix this? I can’t have all forum users set as Keymasters just so they can upload images? Thank you very much.
Hi,
In my “social wall” (Activity of the site with bbPress), the subject post (after being created a subject) is not shown in its last version (and the design of the page Activity is broken). I tried to use Dashboard>Tools>Forums and checked all cases for repair but it does not fix the pb.
URL : https://agora.aqua.support/activity/I use a plugin called WP Sweep. I have asked on their forum but no reply to date. And for the issues I did raise they were not willing to do anything.
Their plugin is useful but when it sweeps all “revisions” it purges out all of the changelog history for various bbpress forum topics and replies. I would like the SW Sweep plugin to omit any bbPress changelog entries.
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 filepreclass has adisplay:block;. This causes a problem with the plugin I am trying to use.The author does not want to use
!importantbecause he says it is bad design. So how do we fix this? How can we allow bbpress to do what it wants withpreand EnlighterJS do what it wants?Topic: Forum roles issue
Good Morning,
I am managing a company intranet with bbPress, and I have a problem with user roles.
I need that among all the users there is only one Keymaster (me) that manages the entire forum and that the rest are only participants.
The problem is that if I assign users the Participant role, they cannot create topics or reply to created topics. In fact, with the role of Moderator they cannot do it either. Only the Keymaster role allows you to do that, but it also gives permissions that I don’t want to give to all users, like deleting topics.
Another problem I run into is that my user database is connected to my company’s Active Directory. And every time it is updated (once a day) the roles I have assigned manually are lost …
Could someone help me with these problems?
Thank you very much.
hello guys,
i have few sentences what are displayed in french for all my languages i dont know why, my default language is english, and my theme’s developer are saying that the issue is comming from bbpress.
look pictures this sentence is translated in all language
but displays french for all languageshttps://paste.pics/e3ffc065ef3ef5c140d05fc85747960d
https://paste.pics/0ac43ae103b834aca3aaf608f125fa99help me pls
best regards
Topic: bbPress and redirect_to
I have two websites running custom php to create Log In/Log Out entries on the menu.
The Log Out behavior is different on the two websites. I finally tracked down the problem to bbPress. The URL created by my custom code with w_logout_url() on the bbPress site includes:
&redirect_to=…where the URL created by the site without bbPress installed does not.
Disabling bbPpress removes the &redirect_to=… and reenabling bbPress makes the redirect_to return.
That leads me to believe bbPress is changing /setting this value somewhere, but I don’t see any choice to change that value in the bbPress settings?
add_filter( 'wp_nav_menu_items', 'ccc_add_loginout_link', 10, 2 ); function ccc_add_loginout_link( $items, $args ) { if (is_user_logged_in() && $args->theme_location == 'header-menu') { $items .= '<li><a href="'. wp_logout_url() .'">Log Out</a></li>'; } elseif (!is_user_logged_in() && $args->theme_location == 'header-menu') { $items .= '<li><a href="'. site_url('wpflogin') .'">Log In</a></li>'; } return $items; }Thanks!!