• Hi, I have an issue when adding a product to wish list. A white rectangle appears in the screen.?https://larabeachcouture.com

    why’s this and how can it be solved? it doesn’t look good at all. Please help.

    Additionally I have few more questions:

    Also when I have no products in the Wishlist how can I make the letters “no products added in the Wishlist” smaller? as it is now it doesn’t look good as they are too big:?https://larabeachcouture.com/wishlist/

    If I select a size S in a product then add it to the Wishlist, and if I go to the wish list I can see that the product is there in the Wishlist with the button “add to cart”, though it doesn’t specify the size in the Wishlist column. Is it possible to add the size in the Wishlist page for better customer experience and clarity?

    Also when I remove a product from the Wishlist it appears a text in green saying “product successfully removed” – can I delete this text. I don’t see it relevant to have it. Where and how can I do that?

    thanks in advance

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Juan Coronel

    (@juaancmendez)

    Hello there,
    thanks for contacting us!

    I see that you are using Flatsome, which modifies the styles of our plugin. First I recommend adding this code inside the functions.php file and check if it solves the problems:

    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')) {
    add_action('wp_enqueue_scripts', 'ywfav_add_fontawesome', 99);
    function ywfav_add_fontawesome()
    {
    wp_enqueue_style('fontawsome', 'https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
    }
    }

    If this hasn’t worked, I’ll tell you about it in parts.

    The popup message appears empty, it may be because you haven’t configured a text in Settings > Add to wishlist > Text customization > “Product added” text.

    You can also try to hide that popup by adding this CSS in Appearance > Customize > Additional CSS:

    .yith-wcwl-popup-message {
    display: none !important;
    }

    You can also add this CSS to shrink the text of the empty wishlist:

    td.wishlist-empty {
    font-size: inherit !important;
    }

    Finally, to see the added variation in the wishlist, you need to have all your variations defined in your product, and also activate the option Product variations selected by the user (example: size or color) in Settings > Wishlist page > Wishlist Detail Page.

    Could you check it, please?

    Best regards.

    Thread Starter lsb1

    (@lsb1)

    Hi (@juaancmendez)

    thank you very much for your reply. Is it here that I write the code?https://snipboard.io/EpW865.jpg

    thanks

    Plugin Support Juan Coronel

    (@juaancmendez)

    Hi there,

    Yes, that is the correct file.

    Please let me know if there is any news.

    Have a nice weekend!

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