Hi,
Thank you for your reply! Unfortunately, my site is currently in Coming Soon mode so you will not be able to check it. However, I have recorded a video the issue. Please kindly check the issue via the video in the link below:
https://drive.google.com/file/d/1k6a1JLiDiOM6mX-k3eUIWGlEK6r0ZALv/view?usp=sharing
In case you need some of my system info, please kindly check below:
+ PHP version: 7.4.30 (Supports 64bit values)
+ PHP memory limit: 512M
+ Theme: Hello Elementor (Version 2.6.1)
+ WP version: 6.0.1
+ Elementor version: 3.7.0
FYI, 2 days ago I added a code into the functions.php file of the theme to disable right-click on the site. I don’t think this code cause any issue related to the Elementor “Update” button. but in case you need to know the code, please take a look at it as below:
/*Disable right click */
function disable_right_click() {
?>
<script>
jQuery(document).ready(function(){
jQuery(document).bind("contextmenu",function(e){
return false;
});
});
</script>
<?php
}
add_action('wp_footer', 'disable_right_click');
/*code ends */
Thank you and I’m looking forward to hearing from you soon!
Elya
-
This reply was modified 2 years, 6 months ago by
Jan Dembowski. Reason: Formatting