Facundo A.
Forum Replies Created
-
Hi there,
Could you send us a link to the page with the issue and the changes you have done to the plugin so we can check it?
For what you mentioned, it seems the action isn’t supported by the plugin so you should use the filter instead to add the custom action.
We’ll remain at your disposal.
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] two dropdowns showing for one filterHi there,
Thanks for the link. I checked the site, and it seems the theme is the one adding the select2 field with search box to the dropdown filter of our plugin.
To solve the issue, you will need to add the following CSS code in Appearance > Customize > Additional CSS:
.yith-wcan-filters .filter-content > .select2 { display: none !important; }Let us know if this helped you.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] Problem calculating options with VATHi there,
Thanks for your patience. Please download the ZIP file in the following link and then copy the file inside to the includes folder of the plugin like before.
Let us know if this helped you.
Forum: Plugins
In reply to: [YITH WooCommerce Badge Management] Can’t see related product imagesHi there,
Please add the following CSS code in Appearance > Customize > Additional CSS and then check if the issue is solved:
.product .box-image .container-image-and-badge { height: 100%; position: absolute; top: 0; left: 0; bottom: 0; right: 0; }We’ll remain at your disposal.
Forum: Plugins
In reply to: [YITH WooCommerce Badge Management] hide “On sale” badge not workingHi there,
Please add the following CSS code in Appearance > Customize > Additional CSS:
.product .ast-on-card-button.ast-onsale-card { display: none !important; }Let us know if this helped you.
Forum: Plugins
In reply to: [YITH Infinite Scrolling] Compatible issueHi there,
I checked the site you mentioned but I couldn’t see our plugin enabled.
Could you enable it so that we can check it? Also, if you can, please write the selectors you use in the plugin settings.
Thanks for your cooperation.
Forum: Plugins
In reply to: [YITH WooCommerce Badge Management] YITH uncaught errorHi there,
I checked the log you sent, and it seems that at least a file is missing from the plugin folder, so please, try to reinstall the plugin and then check if the issue is solved.
We’ll remain at your disposal.
Forum: Plugins
In reply to: [YITH WooCommerce Badge Management] Disable open sans fontHi there,
Please add the following PHP code in the functions.php file of your current theme and then check if the issue is solved:
if ( ! function_exists( 'yith_wcbm_dequeue_google_fonts' ) ) { add_action( 'wp_enqueue_scripts', 'yith_wcbm_dequeue_google_fonts', 99 ); function yith_wcbm_dequeue_google_fonts(){ wp_dequeue_style( 'yith-gfont-open-sans' ); } }Let us know if you need more help.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] Error calculating % in cartHi there,
I checked the page you shared, but unfortunately I couldn’t see any active add-on in the product, could you check it?
Also, I noticed that you are using an outdated version of the premium plugin, so if you have a license I’ll suggest you update it to the latest version or instead use the free version of the plugin.
We’ll remain at your disposal.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] Problem calculating options with VATHi there,
I checked the page you mentioned, but unfortunately couldn’t replicate the issue you mentioned. Could you check it again?
Also, please send us a screenshot of the Tax options from the WooCommerce settings so that we can check it.
Thanks for your cooperation.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] Tooltip stylingHi there,
You can change the style of the tooltip using CSS in Appearance > Customise > Additional CSS, like in the following example:
.yith-wapo-option .tooltip * { font-family: 'monospace' !important; font-size: 15px !important; }We’ll remain at your disposal.
Hi there,
You can add the following PHP code in the functions.php file of your current theme to tell the plugin which price element should be replaced with the total order amount:
if ( ! function_exists( 'yith_wapo_custom_product_price_class' ) ) { add_filter( 'yith_wapo_replace_product_price_class', 'yith_wapo_custom_product_price_class', 20 ); function yith_wapo_custom_product_price_class( $price_class ) { $price_class .= " , div.elementor.product .elementor-widget-woocommerce-product-price .price"; return $price_class; } }You might need to change the CSS selector
div.elementor.product .elementor-widget-woocommerce-product-price .pricewith correct selector for your site.We’ll remain at your disposal.
Forum: Plugins
In reply to: [YITH WooCommerce Quick View] Close icon issueHi there,
To remove the extra close button added by the current theme in your site, you will need to add the following CSS code in Appearance > Customize > Additional CSS:
#yith-quick-view-close:before { display: none !important; }We’ll remain at your disposal.
Hi there,
I checked the plugin you mentioned, and it requires that you enable the Hide out of stock items from the catalog from WooCommerce settings, which will prevent you from displaying the Waitlist form for the variations.
So unfortunately, both plugins aren’t compatible.
We’ll remain at your disposal.
Forum: Plugins
In reply to: [YITH WooCommerce Waitlist] Back in stock emails are not sent out.Hi there,
To send the Back In stock email, you will need to go to the product settings and then click in the Send button of the Waitlist metabox.
Let us know if you need more help.
- This reply was modified 3 years, 1 month ago by Facundo A..