Forum Replies Created

Viewing 15 replies - 121 through 135 (of 528 total)
  • Hi there,

    I hope you’re well. I tried to replicate the issue you mentioned in my local installation, but the plugin worked correctly.

    Since there haven’t been any major change in the plugin, I suggest you try disabling all the plugins except for WooCommerce and our plugin and then check if the issue is solved.

    If so, you can then enable the other plugins again until you find the one causing the issue.

    We’ll remain at your disposal.

    Hi there,

    You’re welcome. About your second question, you will need to add your own custom CSS code to change the colors of the filters.

    For example, you can try a CSS code like the following in Appearance > Customize > Additional CSS:

    .yith-wcan-filters .yith-wcan-filter .filter-item a {
    color: blue !important;
    }
    .yith-wcan-filters .yith-wcan-filter .filter-item a:hover {
    color: red !important;
    }

    Let us know if you need more help.

    Hi there,

    You can use the following code too to change the label you mentioned:

    if ( ! function_exists( 'yith_wapo_custom_order_total_label' ) ) {
    function yith_wapo_custom_order_total_label( $label ) {
    return 'YOUR NEW STRING';
    }
    add_filter( 'yith_wapo_table_order_total_label', 'yith_wapo_custom_order_total_label', 10, 1 );
    }

    We’ll remain at your disposal.

    Hi there,

    You’re welcome. We are glad the issue is solved.

    I’ll mark the topic as resolved but don’t hesitate to open a new one if you need more help.

    Regards

    Hi there,

    I hope you’re well. I checked the page you mentioned, but I noticed that you’re using the older filter widget of the plugin, which are no longer supported.

    So I suggest you create a new preset filter from the plugin settings, then replace those widgets with the preset filter widget, and check if the issues are solved.

    We’ll remain at your disposal.

    Hi there,

    I hope you’re well. I checked your site, and to solve the issue you mentioned, you will need to add the following PHP code in the functions.php file of your current theme:

    if( ! function_exists( 'yith_wcan_content_selector' ) ){
    function yith_wcan_content_selector( $selector ){
    $selector = '#content .e-parent > .e-con-inner:has(.yith-wcan-filters)';
    return $selector;
    }
    add_filter( 'yith_wcan_content_selector', 'yith_wcan_content_selector', 9999 );
    }

    We’ll remain at your disposal.

    Hi there,

    I hope you’re well. You can change the text you mentioned of the plugin by adding the following PHP code in the functions.php file of your current theme:

    if ( ! function_exists( 'yith_wapo_custom_select_option_label' ) ) {
    function yith_wapo_custom_select_option_label( $label ) {
    return 'YOUR NEW STRING';
    }
    add_filter( 'yith_wapo_select_option_label', 'yith_wapo_custom_select_option_label', 10, 1 );
    }

    You will need to replace YOUR NEW STRING with Kies een optie or any other text you prefer.

    We’ll remain at your disposal.

    Hola,

    Espero que esté bien. He revisado la página que menciono, y en este caso parece que hay algún error en el sitio que está previendo al plugin recuperar el contenido para el popup de Quick View.

    Te recomiendo que pruebes de desactivar todos los plugins excepto por WooCommerce y nuestro plugin, y luego verifiques si el problema se solucionó. De ser así, luego deberás reactivar los plugin uno por uno hasta que encuentres el plugin que está causando el problema.

    Quedamos a tu disposición.

    Hi there,

    I hope you’re well. I checked your site and in this case, it seems there is a CSS code applied by Elementor that is hiding the titles in those pages.

    To solve the issue, please add the following CSS code in Appearance > Customize > Additional CSS:

    .wqv-product-content .product_title {
    display: inherit !important;
    }

    We’ll remain at your disposal.

    Hi there,

    I hope you’re well. I checked the page you mentioned, but unfortunately couldn’t see the tooltips enabled. Could you enable it so we can check it?

    Also, about the checkbox color, this isn’t being changed by the plugin, so they will use the style of the theme. So I suggest you check if your theme adds any customs style for the checkboxes and if it can be changed.

    We’ll remain at your disposal.

    Hi,

    About your request, unfortunately if you want to achieve it, you will need to customize the templates of the plugin by copying the block.php file in wp-content/plugins/yith-woocommerce-product-add-ons/templates/front/ to the woocommerce/front folder in your current theme.

    Alternatively, if you want to change the default heading element of the block with a div element, you could try adding the following code in the functions.php file of your current theme:

    if ( ! function_exists( 'yith_wapo_custom_element_for_headers' ) ) {
    function yith_wapo_custom_element_for_headers( $options ) {
    $options['style']['style-addon-titles']['options']['div'] = 'DIV';
    return $options;
    }
    add_filter( 'yith_wapo_panel_style_options', 'yith_wapo_custom_element_for_headers', 99, 1 );
    }

    Do keep in mind that it is recommended you set both titles and labels for the add-ons and options to prevent issue when they are added to the cart.

    We’ll remain at your disposal.

    Hi there,

    I hope you’re well. I checked your site, and it seems you’re using the default WooCommerce selectors for the products, which aren’t present in the page you mentioned.

    So I suggest you try replacing the Item Selector to div.col-lg-4 and the Content Selector to .row-items.

    We’ll remain at your disposal.

    Hi there,

    I hope you’re well. It’s not possible to use the HTML Heading add-on without selecting a heading type.

    In that case, you could instead use the HTML Text add-on to add the title and customize the style for that add-on using CSS.

    Let us know if you need more help.

    Hi there,

    Thanks for the video. I couldn’t replicate the issue you mentioned in my local installation, so I suggest you try disabling the other plugins in your site and then check if the issue is solved.

    If so, then you will need to enable the other plugins again until you find the one causing the issue.

    We’ll remain at your disposal.

    Hi there,

    Thanks for the link to the site. I checked your site, and in this case the issue seems related to the cache of your site.

    Please try cleaning both the cache of your site and browser, and then check if the issue is solved.

    We’ll remain at your disposal.

Viewing 15 replies - 121 through 135 (of 528 total)