Thread Starter
echapp
(@echapp)
Hi Menaka,
My website is still in development,
I decided to use the standard style.
Thanks for the reply
Thread Starter
echapp
(@echapp)
Hi bcworkz, thank you for replying
I solved this issue with:
function remove_customize_info(){
wp_enqueue_script( 'my_script', get_stylesheet_directory_uri() . '/js/script.js' );
}
add_action( 'customize_controls_print_scripts', 'remove_customize_info' );
jQuery( document ).ready(function() {
jQuery( "#customize-info" ).remove();
});
Thread Starter
echapp
(@echapp)
Hi,
It was not working because the priority argument was not defined.
add_action( 'customize_register', 'my_customizer', 11 );