sorry, I’d need to buy elementor to even see how it works, let alone the additional plugin 🙂 so catch 22 !
maybe worth adding a comment to this thread to see if any of the people there can help
bbPress + Elementor
I need to be able to style the forum to look like the rest of the site and I need it to have a sidebar and I’ll need to insert images from time to time. I’d have to buy that plugin to find out it won’t do what I need it to do. The comment under the video is “But as soon as you click on a Topic you exit the Elementor styled page. Is there a way to style all bbpress pages with Elementor?” and the response is “Sorry, all bbpress things are not possible to design directly, because there some dynamic part that not possible to design with elementor.” So it won’t do what I need it to do.
I do have a question in to Elementor developers asking what can be done, but I was hoping someone here might have a solution that doesn’t require another plugin.
ok, bbpress looks at
the WordPress block list
no. links
in that part of the code, so maybe worth asking paid memberships if they do any checking.
Otherwise without site access, I can only guess that another plugin is doing something.
ok, bbpress just uses WordPress moderation, so do you have anything set in
dashboard>settings>discussion that could be affecting?
Warning: Creating default object from empty value in /var/www/schlauti/wp-content/plugins/bbpress/.bbpress.php on line 1635
this works on my test site
add_filter( 'bbp_default_styles', 'rew_dequeue_bbpress_css' ) ;
function rew_dequeue_bbpress_css ($defaults ){
unset ($defaults['bbp-default']) ;
return $defaults ;
}
might be better as this to ensure it fires after bbpress has loaded
add_action ('plugins_loaded' , 'rew_dequeue_bbpress_css' ) ;
function rew_dequeue_bbpress_css () {
wp_dequeue_script ('bbp-default') ;
}
Is there a snippet I can add to my theme function to disable the bbpress css style
Please is there a way I can do this
Stop the bbpress replies from. Showing in buddypress activity
I can confirm that the problem is in bbpress do shortcodes, I will leave it deactivated for the time being and will open a ticket on the plugin support forum.
Hi,
We have been looking for a solution for a long time to mention a user in bbPress.
I found a mention plugin for WP comments. Maybe it’s a little easier to filter things out of this than from BuddyPress and make a mentioning plugin for bbPress…
Comment Mention
I have installed wordpress, bbpress and BNFW in a new directory and the error persists:
If I edit the email address on the bbPress profile page, WP will send a confirmation email.
If I edit the email address on the admin page, BNFW will send a confirmation email.
Oh, I see you found the BNFW support page 🙂
that’s fine, just checking other possibilities.
so with just bbpress and BNFW you have the issue – yes ?
and this is user changing email address by going to ‘edit my profile’ and changing their email – yes
and then disable bbpress and the problem goes ?
Sorry if questions seem repetitive or picky – but history has shown if I don’t double check, I can spend hours chasing the wrong problem 🙂
bbp style pack
bbPress Mentions Email Notifications
bbPress Notify (No-Spam)
GD bbPress Tools
But I have already tried to deactivate them all.
hmm…bbpress doesn’t use either of those filters
what other bbpress related plugins are you using ?
but bbpress is activated – yes ?
Thank you for your reply
I cannot see any bbpress roles in the user admin at all
All dashboard references to bbpress are missing
what roles are you set to
WordPress role admin
bbpress role keymaster
are needed
add this to your custom css
#bbpress-forums .entry {
width: 100%;
}
I am a newbie on BBPress and just installed it and I’m in the process of setting it up. The problem is that the body columns are not aligning with the topic headings.
I did some testing and this is the default layout which is not aligning.
Forum: Imagination Room
However if I create a new Page and insert the shortcode the alignment is perfect, so I’m not sure what’s happening, but I don’t want to create several dozen pages and insert shortcodes, so I’d like to figure out why it’s not aligning.
test
I’ve tried messing with some of the css but I couldn’t figure it out. Any help would be greatly appreciated.
can you ask BNFW what filter/action they are hooking to – they will know what that phrase means – I can then find this in bbpress, and hopefully give you a solution
Hello,
I use the Better Notifications for WP plugin to override the default WP emails.
However, the email change confirmation email cannot be overwritten by the BNFW plugin.
This is what they wrote:
bbPress is overriding BNFW and has a higher priority when sending out notifications. This would be something that would have to be changed in bbPress in order to be compatible.
If I deactivate bbPress and change the password on the WP profile page, the BNFW confirmation email will be sent.
So the bug is in bbPress anyway, as it doesn’t allow to overwrite the confirmation email.
How can this error be fixed?
I appreciate any ideas!
answers from my perspective – I’m just a bbpress user who helps out here, and has written some plugins including style pack
1. it was bbpress authors’ choice to change freshness to last post – it does the same thing, and you can change what it says to what you want either using code or style pack. I don’t think there is any change in philosophy, apart from that what most other forums call that column.
2. I logged 3297 which is incorporated in 3356, which is as far as I know the fix. It is awaiting bbpress authors to look at it.
3. Given that bbpress authors have lots to look at, and that the freshness problem was not in 2.5.x code, I simply added a re-run of the 2.5.x code into my plugin and made it an option, which seems to fix the issue for many people. Given I am designer, author, tester, and everything else for my style pack plugin, I can simply do this. I do not have the problem that my code will affect 300,000 sites, or is run by several people who have busy lives and need to agree who will do what.