Hide Xtemos template button from Elementor editor view to other users
-
I do not want other users of my website to add Xtemos template sections. How can I hide the Xtemos button? Please see the screenshot attached in the private section.
Hello,
Please try to add the below code to the fucntions.php file in your child theme and then recheck it.
add_action( 'elementor/editor/after_enqueue_scripts', function () {
if ( ! current_user_can( 'administrator' ) ) {
wp_deregister_script( 'xts-template-library-script');
wp_dequeue_script( 'xts-template-library-script');
}
}, 12 );
Kind Regards
-
This reply was modified 1 year, 10 months ago by
Luke Nielsen.
Thank you, this has helped.
Hello,
Great! Always remember that you can reach out to us with any questions you may have.
We wish you a splendid day!
Kind Regards
The topic ‘Hide Xtemos template button from Elementor editor view to other users’ is closed to new replies.