Forum Replies Created
-
In reply to: When Support Block Theme?
Interesting – my style pack plugin has a fix for block themes, but from very little knowledge of FSE. I’m away for the next few weeks, but will be interesting to take a look at the code you have done.
In reply to: PHP notice on version 2.6.11pretty sure that it is LearnPress โ bbPress Integration
We have submitted a change required to Learndash.
If you are into code the fix is in learndash-bbpress\includes\class-dependency-check.php line 119 โ the line needs changing from
$plugin_header = get_plugin_data( trailingslashit( str_replace( '\\', '/', WP_PLUGIN_DIR ) ) . $plugin_key );
to$plugin_header = get_plugin_data( trailingslashit( str_replace( '\\', '/', WP_PLUGIN_DIR ) ) . $plugin_key, false, false );
This then prevents translations being loaded at that point (too early) and hopefully fixes the issue.
In reply to: Redirect unlogged in visits to forum pageAs the text says :
Some themes or plugins also add a login page that users use to login, in this case select “bbPress Login or login using a specific page” and put the full url in below. Whether this works will depend on the theme or plugin being used, so I cannot guarantee that this will work
and looks like yours doesn’t – sorry only so much i can do ๐
no problem, I hope you get fixed soon ๐
In reply to: Redirect unlogged in visits to forum pageInstall
once activated go to
dashboard>settings>bbp style pack>Subscription Emails>item 2 and follow the instructions
In reply to: Bulk delete topics and repliesdashboard>topics or dashboard>replies and you can bulk select in there – use ‘screen options’ at the top right to set page display to 100 and you can delete 100 at a time
In reply to: Gutenberg CompatibilityFor the latest update on my testing see
https://wordpress.org/support/topic/how-to-enable-gutenberg-blocks/
In reply to: Subscribe Existing Users to New Forumusers can subscribe to forums and topics, both work the same way. The post ID is either a forum or topic.
Not suer what you mean by command – if sql then I cannot help you. If php then you would use get_users and loop through that and use
bbp_add_user_subscription( $user_id, $forum_id )
private groups – the code simply checks matches. Users have a user_meta entry of ‘private_group’ and forums have a post_meta of ‘_private_group’ the general settings are stored in the options table
The following hooks are the nearest to what you want
do_action( 'bbp_template_before_replies_loop' ); ?> do_action( 'bbp_template_before_forums_loop' ); ?> do_action( 'bbp_template_before_topics_loop' ); ?>
In reply to: Subscribe Existing Users to New Forumforum subscribed users are held in post_meta database for the forum
so if the forum is ID 2927, then in post_meta you would have an entry for each subscribed user eg
`
post_id meta_key Meta_value 2927 _bbp_subscription 1371 2927 _bbp_subscription 1372
would mean that user_ID’s 1371 and 1372 are subscribed to forum 2927
ok, maybe you could do a coupe of images with x’s where you want it, and put on dropbox etc.
bbpress has hundreds of hooks.
Would be better for you to list exactly where you want to insert
In reply to: last active time updates for spam commentsthe code above provides a fix.
without knowing what your code does, impossible to provide a hook
I am just a volunteer here, there is no paid support. If you email me the log, I will take a quick look.
contact me via http://www.rewweb.co.uk/contact-me/
In reply to: PHP notice on version 2.6.11Thanks
This is just a warning that WordPress 6.7 introduced.
bbpress in itself does not issue that warning, so I’d suspect that another plugin is affecting this.
so you need to test to see which other plugin or your theme is doing this.
I’d start with loco translate and LearnPress โ bbPress Integration as likely candidates.
If not 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
Then come back
In reply to: PHP notice on version 2.6.11so just bbpress and learnpress?
I’d start by deactivating 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
Then come back
In reply to: PHP notice on version 2.6.11what additional bbpress related plugins are you running?
In reply to: BBPress doesn’t work with Blog FSE themegreat – glad you are fixed
In reply to: BBPress doesn’t work with Blog FSE themeThis is one of the new FSE themes, so you need a fix to work with bbpress.
install
once activated, navigate to
dashboard>settings>bbp style pack, and you should see the first tab called โTheme Supportโ โ if you donโt see this, come back.
In that tab, select
Enable Theme Support
and save
The forums should then display
In reply to: This forum is emptyTo do this without code install
once activated go to
dashboard>settings>bbp style pack>Forums Index Styling item 16
or with the code above use
In reply to: Seo for bbPressI cannot guarantee, but I believe unlikely, but like all plugins you use them under a GP2 license which has no guarantees of any kind ๐
In reply to: Seo for bbPressI believe this plugin still works if you are using yoast
In reply to: Get overlapping user avatars after freshnessVery nice effect, but would require
code to get the required avatars
code to create the required html (the example is using pug not native html)
code to output the html in the right place
code to generate and load the css
and more code to probably wrap all this into a pluginA ton of work.
Like everything it is possible, probably 2-3 days work to design and implement.