Support » Plugin: YITH WooCommerce Wishlist » Icon wishlist not showing

  • Resolved alubis

    (@alubis)


    Hello Icon wish list not showing, just showing another caracter

Viewing 4 replies - 1 through 4 (of 4 total)
  • Luciano Palmieri

    (@lucianopalmieri)

    Hello there,

    Thanks for contacting us, we hope you are doing well πŸ˜„

    Could you please send us the URL of your site so we can see it? And if you think it is necessary also a screenshot or a video explaining better the problem you are experiencing.

    I am looking forward to your response.
    Have a nice day.

    Thread Starter alubis

    (@alubis)

    Hello,
    example this link: https://shop.akasha.co.id/produk/skinenergy-hand-spray-aloe-vera-botol-30ml/

    if access with Firefox and then see another character: https://prnt.sc/yip0L1a9sQeD
    if access with Chrome and then showing blank icon.

    Luciano Palmieri

    (@lucianopalmieri)

    Hello there,

    Thanks for your reply, I hope you are doing well πŸ˜„

    Please try inserting the following code snippet into your active theme’s functions.php file:

    if ( defined( 'YITH_WCWL' )) {
        if( ! function_exists( 'yith_wcwl_enqueue_back_required_assets' ) ) {
            function yith_wcwl_enqueue_back_required_assets() {
                $suffix  = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
                $version = defined( 'WC_VERSION' ) ? WC_VERSION : '';
    
                wp_enqueue_style( 'woocommerce_prettyPhoto_css', plugins_url( 'assets/css/prettyPhoto.css', WC_PLUGIN_FILE ), array(), $version );
                wp_enqueue_script( 'prettyPhoto', plugins_url( 'assets/js/prettyPhoto/jquery.prettyPhoto' . $suffix . '.js', WC_PLUGIN_FILE ), array( 'jquery' ), '3.1.6' );
                wp_enqueue_script( 'prettyPhoto-init', plugins_url( 'assets/js/prettyPhoto/jquery.prettyPhoto.init' . $suffix . '.js', WC_PLUGIN_FILE ), array( 'jquery' ), $version );
    
                wp_enqueue_style( 'yith-wcwl-main', YITH_WCWL_URL . 'assets/css/style.css', array( 'jquery-selectBox' ) );
            }
            add_action( 'wp_enqueue_scripts', 'yith_wcwl_enqueue_back_required_assets', 100 );
        }
    
        if ( ! function_exists( 'ywfav_add_fontawesome' ) ) {
            function ywfav_add_fontawesome() {
                wp_enqueue_style( 'fontawsome', 'https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' );
            }
            add_action( 'wp_enqueue_scripts', 'ywfav_add_fontawesome', 99 );
        }
    }

    Let us know any news, please.
    Have a nice day.

    Best regards,
    Luciano P.

    Thread Starter alubis

    (@alubis)

    Hello, this code is working, thank you.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Icon wishlist not showing’ is closed to new replies.