• Hello. I’m posting here because I was testing some customization in the Add to wishlist style, and when I saved options with Textual selected, I haven’t been able to apply any other Style & Color customization. Screenshots below:

    The style remains Textual regardless of my selection in the settings:

    This is how it looked before testing any options:

    My products are created wth UX Blocks layouts on Flatsome theme, and they already have the Add to wishlist shortcode:

    If I activate a different theme ( Storefront ), the Add to wishlist is only visible with Textual style.

    I’d like to set it back is it looked before testing ( Any ideas what to do in this case? Let me know if you need any further information that might be useful.

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

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

    (@juaancmendez)

    Hello there,
    we hope you’re doing well!

    Please try adding the following code inside your active child theme’s functions.php file to see if this resolves the issue:

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

    Let us know any news.

    Best regards.

    Thread Starter reivorz

    (@reivorz)

    I’m afraid I don’t see any changes.

    Thread Starter reivorz

    (@reivorz)

    I have tried creating new products without using UX Blocks, but I get the same result; textual style even though I don’t have it selected.

    Custom CSS code doesn’t seem to work either, or maybe I’m not using it right ( I have tried one from another thread of someone using Flatsome theme too ).

    Plugin Support Juan Coronel

    (@juaancmendez)

    Hello there,

    I recommend you perform the following tests to see if the problem disappears in any step:

    • switch to a default WordPress theme like 2023.
    • Leave only WooCommerce and our plugin active.
    • if the problem disappears, activate your plugins in batches until you find the one that generates the conflict.

    If you don’t want to run these tests on your live site, you can easily create a test site using the free WP Staging plugin.

    We will be attentive to any news.

    Best regards.

    Thread Starter reivorz

    (@reivorz)

    When switching to Storefront theme, the Loop Settings work as they should, but the button won’t appear in the product page, I guess because as I mentioned, they are created using UX Builder which is part of Flatsome theme. I’m trying to get their support team to assist in this matter. Thank you.

    Plugin Support Juan Coronel

    (@juaancmendez)

    Hello there,

    Perfect! Let us know any news.

    Best regards.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[NSFW] Customization not working’ is closed to new replies.