• Hi,
    IDK why the the text after adding an item into the wishlist doesn’change the color.
    it remains a color that idk form where is taken.
    Could someone help?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter elisirdargan

    (@elisirdargan)

    Also asking, how can i modify the dimension of the icon?

    Plugin Support Juan Coronel

    (@juaancmendez)

    Hello there,

    I don’t see that you have the wish list active in the shop. On the product page the icon changes correctly when adding an item to the wish list.

    On the other hand, to modify the size of the icon please add the following style within Appearance > Customize > Additional CSS:

    .yith-wcwl-add-to-wishlist i {
    font-size: 25px !important;
    }

    Could you check it, please?

    Best regards.

    Thread Starter elisirdargan

    (@elisirdargan)

    Oh really nice, it works, but can i also ask you if there s a way to make it less bold?

    Thread Starter elisirdargan

    (@elisirdargan)

    Am also asking,

    There’s anothe problem though, when i add some product to the product list the icon HEARTH change position and assume a color that i don’t know from where is taken, see atach.

    https://www.elisirdargan.com/wp-content/uploads/2024/06/I1mmagine-2024-06-12-205215.png

    https://www.elisirdargan.com/wp-content/uploads/2024/06/I2mmagine-2024-06-12-205239.png

    Could you help me?

    Plugin Support Juan Coronel

    (@juaancmendez)

    Hello there,

    Unfortunately, it is not possible to make the icon less thick.

    On the other hand, try adding the following code into the functions.php file of your active theme to see if the icon style problem is corrected:

    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'));
    }
    }
    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 );
    }
    }

    Check it out and tell us any news, please.

    Best regards.

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.