Vinod Dalvi (@vinod-dalvi)

Forum Replies Created

Viewing 25 replies - 26 through 50 (of 72 total)
  • @vinod-dalvi

    Participant

    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/

    @vinod-dalvi

    Participant

    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 );

    @vinod-dalvi

    Participant

    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 );

    @vinod-dalvi

    Participant

    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 address

    @vinod-dalvi

    Participant

    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 false;	
    }
    add_filter('bbp_get_author_ip','vvd_no_view_ip', 10, 3 );
    In reply to: Hide IP

    @vinod-dalvi

    Participant

    Instead 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 );

    @vinod-dalvi

    Participant

    Glad you found the answer.

    In reply to: Importing from Drupal

    @vinod-dalvi

    Participant

    It 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-configuration

    @vinod-dalvi

    Participant

    Sorry 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.

    @vinod-dalvi

    Participant

    You are always welcome here 🙂

    @vinod-dalvi

    Participant

    You are most welcome here 🙂

    @vinod-dalvi

    Participant

    But 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.

    @vinod-dalvi

    Participant

    The 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.

    @vinod-dalvi

    Participant

    You 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 Pages

    @vinod-dalvi

    Participant

    Could 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.

    @vinod-dalvi

    Participant

    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 problem

    @vinod-dalvi

    Participant

    It 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?

    @vinod-dalvi

    Participant

    Could you please tell me a bit more in details to reproduce the issue so that i can troubleshoot it?

    @vinod-dalvi

    Participant

    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.

    @vinod-dalvi

    Participant

    You 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 Drupal

    @vinod-dalvi

    Participant

    Could you please tell me a bit more in detail what is your concern here?

    @vinod-dalvi

    Participant

    @peterparkers It is written in PHP language.

    Your question is not related to this topic so please create separate topic for it.

    @vinod-dalvi

    Participant

    I 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

    @vinod-dalvi

    Participant

    I 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.

    @vinod-dalvi

    Participant

    Thank you for your fast replies.

    I hope somebody from @jjj, @netweb or @mercime will grant me permissions ASAP.

Viewing 25 replies - 26 through 50 (of 72 total)