• Dear Support,
    I’m using Proteo and it has yith-proteo-custom-style-inline-css and how can I remove it?
    I want to control everything inside the child theme style.css.
    Is it possibile to remove it or disabled?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Francesco Grasso

    (@francgrasso)

    YITH Support Representative

    Hello there,
    you can do it by adding few lines of php code in your child theme functions.php file.

    add_action( 'wp_enqueue_scripts', 'remove_yith_proteo_inline_style', 1000 );
    
    /**
     * Remove customizer style
     *
     * @return void
     */
    function remove_yith_proteo_inline_style() {
    	wp_dequeue_style( 'yith-proteo-custom-style' );
    }

    Please let me know if you need further help on this ??

    Thread Starter lksld

    (@lksld)

    Thank you very much for your help. It works successfully.

    Francesco Grasso

    (@francgrasso)

    YITH Support Representative

    I’m happy to read this ??

    If you like Proteo and the hard work we are doing on it, please help us with a nice review https://www.ads-software.com/support/theme/yith-proteo/reviews/

    have a good day!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove inline css’ is closed to new replies.