Facundo A.
Forum Replies Created
-
Hola,
Espero que esté bien.
Lamentablemente, no es posible excluir un bloque dependiendo del precio del producto desde la configuración del plugin. Solamente es posible seleccionar si el bloque se mostrara en todos los productos o productos/categorías específicas.
Si quieres hacer eso, puedes intentarlo creando tu propio código personalizado y aplicarlo al filtro
yith_wapo_get_blocks_by_productdel plugin.Avísanos si necesitas más ayuda.
Hi there,
We have released the new update which contains the fix my colleague mentioned.
Please check it and let us know if the issue is solved.
Forum: Plugins
In reply to: [YITH WooCommerce Waitlist] success message not appearingHi there,
I hope you’re doing well.
I checked the page you mentioned and in my case the both the waitlist form and the success message displayed correctly as a guest user.
So I suggest you clean both the cache of your site and browser and then check again if you have issues with the guest users.
Thanks for your cooperation.
Forum: Plugins
In reply to: [YITH WooCommerce Waitlist] JS error on variable productsHi there,
I hope you’re doing well.
To check what is happening, please send us the link to the variable product with the issue so we can do some tests.
Thanks for your cooperation.
Hi there,
I hope you’re doing well.
I checked the page you mentioned with the color swatches, and the problem seems to be that you’re using the same color for the border and accent colors of the swatches.
Please go to YITH > Color and Label Variations > Customization > Style options, and then check that these options have different colors.
We’ll remain at your disposal.
Hi there,
I hope you’re doing well.
Unfortunately, this isn’t possible with the plugin. You will need to create your own custom code to achieve it.
Also, keep in mind that the add-ons are associated to the product items in the order, not to the order itself.
Let us know if you need more help.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] Option is forced to be mandatoryHi there,
I hope you’re doing well.
To check what is happening, please send us the link to the product with the add-on so we can do some tests.
We’ll remain at your disposal.
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Color filter limit? 9 color limit?Hi there,
I hope you’re doing well.
About your question, there isn’t a limit on the number of options displayed in a filter.
In this case, if there isn’t any product that match the missing terms in the filter, then they won’t be displayed. The filter will only display the terms that have products in the results.
We’ll remain at your disposal.
Hi there,
I hope you’re doing well. About the issue, please check that the price of the add-on in the plugin settings is set using a dot as a decimal separator and then check if the issue is solved.
If you still have issues, please send us the link to the product where we can see the issue so we can check it.
We’ll remain at your disposal.
Hi there,
I hope you’re doing well. Unfortunately, the plugin isn’t compatible with the plugin you mentioned.
Let us know if you need more help.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] Image associated with option not visibleHi there,
I hope you’re doing well. I checked the page you mentioned, but unfortunately couldn’t find the issue you mentioned.
Could you let us know exactly which image and add-on you are having issues with in the page so we can check it?
Thanks for your cooperation.
Hi there,
Unfortunately, we don’t check any of the administration settings for the free version of the plugin, since the messages of the forum are public.
In this case, I suggest you check the following page of the documentation about adding the badges to the products: https://docs.yithemes.com/yith-woocommerce-badge-management/free-version-settings/select-badge-product/
If you still have issues, please send us the link to the product page with the issue and confirm us if you are using the free or premium version of the plugin.
We’ll remain at your disposal.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] Extra optionsHi there,
I hope you’re doing well. About your question, first there isn’t any integration between the free versions of our Product Add-ons and Request a Quote plugins, so you won’t be able to send the add-ons in the quote.
About issue, you mentioned, please send us the link to the products so we can check them and see what is happening.
We’ll remain at your disposal.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] Text input area is not boxed in Cart page.Hi there,
I hope you’re doing well. Please send us the link to the site so we can try to see the issue.
Keep in mind that the add-ons should have a similar style to the variation attributes in the cart and checkout, so you might also want to check the issue with the developer of your current theme.
We’ll remain at your disposal.
Forum: Plugins
In reply to: [YITH Infinite Scrolling] Can you help me?Hi there,
I hope you’re doing well. About the issue you mentioned, if you can’t see the badge in the shop page, but you can see it in the product page, I suggest you try adding the following PHP code in the functions.php file of your current theme:
f ( !function_exists( 'yith_wcbm_shop_badge_container_start' ) && !function_exists( 'yith_wcbm_shop_badge_container_end' ) ) {
add_action( 'woocommerce_before_shop_loop_item_title', 'yith_wcbm_shop_badge_container_start', 9 );
add_action( 'woocommerce_after_shop_loop_item_title', 'yith_wcbm_shop_badge_container_end', 20 );
function yith_wcbm_shop_badge_container_start() {
do_action( 'yith_wcbm_theme_badge_container_start' );
}
function yith_wcbm_shop_badge_container_end() {
do_action( 'yith_wcbm_theme_badge_container_end' );
}
}Let us know if this helped you.