• Resolved cyle77

    (@cyle77)


    Is there any way to change or turn off this message “right click is disabled” when image download is disabled. I don’t like this message on my site, thanks.

Viewing 1 replies (of 1 total)
  • Plugin Author BWPS Team

    (@buildwps)

    Hi @cyle77,

    Thank you for reaching out to us.

    You can change the message by adding the above code in child themes functions.php file or can use snippet plugin to add custom code.

    function custom_disable_right_click_message($message) 
    { 
               // Change the message as per your requirement 
                $custom_message = "Right-click is currently disabled."; 
                return $custom_message; 
    } 
    // Hook the custom function into the filter 
    add_filter('pda_disable_right_click_message', 'custom_disable_right_click_message');

    Let us know if it works.

Viewing 1 replies (of 1 total)
  • The topic ‘Change right click message’ is closed to new replies.