Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Facundo Arano

    (@aranofacundo)

    Hi there,

    Could you share the URL of the page so that we can check it and replicate the issue?

    Thread Starter startechmarketing

    (@startechmarketing)

    yes I can https://starpaint.de/produkt/elektrischer-pulverbeschichtungsofen-einbrennofen-pulveroven/

    only on mobile smartphone devices is the box with x

    Plugin Support crodriguez1991

    (@crodriguez1991)

    Hello there,

    I hope you’re doing well :D.

    Seems the dashicon font is not loaded on your site and for this reason you see the box.

    Maybe another plugin or your theme remove the section.

    Try with the following code in the functions.php and see if the problem is fixed

    if ( ! function_exists('yith_dashicons_front_end') ) {
            function yith_dashicons_front_end() {
                    if ( ! wp_style_is( 'dashicons', 'registered' ) ){
                       wp_register_style( 'dashicons', 'https://schwepper.com/wp-includes/css/dashicons.min.css?ver=5.9.3' );
                    }
               wp_enqueue_style( 'dashicons' );
    
            }
            add_action( 'wp_enqueue_scripts', 'yith_dashicons_front_end',999 );
    }
    

    Please, try it and let me know.

    Have a good day.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Toggle display setting’ is closed to new replies.