Forum Replies Created
-
In reply to: ‘Forums Search’ returning wrong results
Is there such plugin as you mentioned?
Please ignore it. It is my copy paste mistake.
BathindaHelper.com
I could confirm the issue on your site so please troubleshoot it as described above.
And last, could you pls suggest me some paid developer in/around New Delhi in India, which could help me develop some code for MLM (Multi Level Marketing) for my WP website?
You can contact http://freewptp.com/contact/
You can remove ip address from bbPress posts by using the below custom code in the functions.php file of your child theme or in another custom plugin.
function vvd_no_view_ip( $author_ip, $r, $args ){ return __return_empty_string(); } add_filter('bbp_get_author_ip','vvd_no_view_ip', 10, 3 );
In reply to: Hiding the IP addressesYou can remove ip address by using the below custom code in the functions.php file of your child theme or in another custom plugin.
function vvd_no_view_ip( $author_ip, $r, $args ){ return __return_empty_string(); } add_filter('bbp_get_author_ip','vvd_no_view_ip', 10, 3 );
In reply to: How to remove IP addresses from bbPress?You can remove ip address by using the below custom code in the functions.php file of your child theme or in another custom plugin.
function vvd_no_view_ip( $author_ip, $r, $args ){ return __return_empty_string(); } add_filter('bbp_get_author_ip','vvd_no_view_ip', 10, 3 );
In reply to: hide ip addressYou can remove ip address by using the below custom code in the functions.php file of your child theme or in another custom plugin.
function vvd_no_view_ip( $author_ip, $r, $args ){ return false; } add_filter('bbp_get_author_ip','vvd_no_view_ip', 10, 3 );
In reply to: Hide IPInstead of editing plugin code you can remove it by using below custom code in the functions.php file of your child theme or in another custom plugin.
function vvd_no_view_ip( $author_ip, $r, $args ){ return false; } add_filter('bbp_get_author_ip','vvd_no_view_ip', 10, 3 );
In reply to: Local instance posts don’t workGlad you found the answer.
In reply to: Importing from DrupalIt is your Drupal site database details which you have used in your Drupal configuration file as described in the following pages.
https://www.ostraining.com/blog/drupal/change-the-database-connection/
https://www.drupal.org/docs/7/api/database-api/database-configurationSorry don’t have control on the plugin author so don’t know when he will reply.
You can either wait or find any other alternate plugin to use.
In reply to: What does bbPress ‘No Role for these forums’ mean?You are always welcome here 🙂
In reply to: show single forum description on reply templateYou are most welcome here 🙂
In reply to: ‘Spectator’ role not able to view any formsBut as I said in my OPost, spectator is not able even to ‘View’. When I change it to ‘Participant’ then only that user is able to view (/edit/create) all private and hidden forms.
Only users having read_hidden_forums capability can see hidden forums. Moderators and Keymaster have this capability.
Users having read_private_forums can see these forums. Moderators, Keymaster and Participant have this capability but Spectator and Blocked users roles don’t have it so they can’t see it.
And also, ‘No role’ user is also able to view/edit/create any topic.
The user having No Role have same capabilities like Participant role. He can create and edit their own topics and replies in the forum.
In reply to: nesting does not work with Divi themeThe shared Elegant Themes support topic page is not accessible for us as it is members only.
As this functionality works fine with default WordPress 2015 theme so it is not bbPress plugin issue. This seems conflict issue with Divi theme, may be due to not following WordPress standards so please contact the theme author to resolve the issue in the theme.
In reply to: allow/enable all users create groups under bbpressYou can contact above plugins developers regarding this and if none provides this functionality then you have to develop custom code.
If you are not a developer then you can wait for somebody to provide you solution here or consider hiring a developer to develop it for you.
In reply to: Blank PagesCould you please post here what version of PHP you are using on your server?
Can you please try temporary enabling WP_DEBUG mode? To do this, just go to wp-config.php include this:
define('WP_DEBUG',true);
You might already have a line for WP_DEBUG, so just make sure it’s set to true.
Let me know what errors if any you are getting when you face this issue.
It doesn’t seem bbPress issue but the Image Upload for BBPress Plugin related so please contact Image Upload for BBPress Plugin author regarding this.
You can contact him here https://wordpress.org/support/plugin/image-upload-for-bbpress
In reply to: register page problemIt is also working fine on chrome browser. I don’t have safari browser to test it.
Could you please test it disabling all safari browser extensions or test it on another computer?
In reply to: Question about issue in my siteCould you please tell me a bit more in details to reproduce the issue so that i can troubleshoot it?
In reply to: What does bbPress ‘No Role for these forums’ mean?Yes the user having No Role have same capabilities like Participant role. He can create and edit their own topics and replies in the forum.
In reply to: show single forum description on reply templateYou can achieve this using below custom code in your site and editing the text “This is custom text” to whatever you want to display.
function vvd_add_notice_before_topic_form() { ?> <div class="custom-text"> <p> <?php _e( "This is custom text." ); ?> </p> </div> <?php } add_action( 'bbp_theme_before_topic_form_notices', 'vvd_add_notice_before_topic_form' );
You can add that code either in the functions.php file in child theme or in small custom plugin.
In reply to: Importing from DrupalCould you please tell me a bit more in detail what is your concern here?
In reply to: 404_template hook fires wrongly@peterparkers It is written in PHP language.
Your question is not related to this topic so please create separate topic for it.
In reply to: ‘Spectator’ role not able to view any formsI checked again and again and found that ‘spectator’ role user is not able to view/create/edit any of the forums. Why so?
Spectator user role can only read forums, topics and replies. He can not create or edit anything.
Please get more information about bbPress user roles on this page https://codex.bbpress.org/getting-started/before-installing/bbpress-user-roles-and-capabilities/
2nd, does any user role need to be ‘subscribed’ necessarily to be able to view/edit forms?
No
In reply to: 404_template hook fires wronglyI have tested it with WP 4.8.1, no other plugins than bbPress, Twenty Seventeen Theme but it is working fine for me without any issue.
Please note i am using single site installation and not multisite.
In reply to: Requesting access to edit bbPress documentation