Worpress.org forum profile block & any contact Email
You can contact the forum moderators using this page. Contact here
You can contact the forum moderators using this page. Contact here
When we post an empty anonymous reply, we get the following errors: The part of BBPress that’s responsible for handling this, is the bbp_new_reply_handler() function, in the file /bbpress/includes/replies/functions.php. It contains these lines that are of interest to us: // User is anonymous if ( bbp_is_anonymous() ) { // Filter anonymous data $anonymous_data = bbp_filter_anonymous_post_data(); … Read more
I am assuming you already have a working SAML IdP. If so then it is a matter of configuring the SP (Service Provider). Once those two criteria are set it is just a matter of figuring out the best plugin that meets your requirements: 1) custom plugin: Does exactly what you need but you need … Read more
Stopping auto scrolling after submitting the form wp dequeue script OR wp deregister script this js scroll-scripts.js Please check it this link : https://developer.wordpress.org/reference/functions/wp_dequeue_script/ I hope is usefull
You can try this plugin ! https://wordpress.org/plugins/smf2wp/ SMF2WP is a simple one way bridge from Simple Machine Forum to WordPress. This means, this one uses databases of SMF Forum and sync to WP database every time a user performs log-in action in both WP and SMF.
This is not how templates in bbPress work. The list you posted is for the fallback templates, in case of required templates are missing. If bbPress loads templates from this list, it will load using theme compatibility method so it will work with all themes. To modify actual bbPress content templates, the best thing to … Read more
AFAIR BBPress relies on WP functions with these titles, so most probably this will be helpful: function remove_private_prefix_from_title( $title ) { return ‘%s’; } add_filter( ‘private_title_format’, ‘remove_private_prefix_from_title’ ); And here you can find docs for that filter: private_title_format
You could remove the #postNumber part from the url, you can do something like this $reply_url = explode(‘#’, bbp_get_reply_url($reply_id))[0];
Can i use 2 page content-forum & content-forum-slug on bbpress?
There’s no real embedding of another software into wordpress. If you want to visually embed it, then you’d have to take a look if and how phpBB uses templates and then add the same nav to the phpBB templates. The look and feel can be done via css. You’ll have to a) add the same … Read more