Pablo Pérez
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH WooCommerce Compare] Not working fontawesome in iframe windowHi there,
Set limit of products for the compare table is a premium feature, this forum are for issues of the free version, please open a support ticket in the “Help Center” of our site and a member of the support staff will gladly look into your problem.
Also I couldn’t replicate your issue with adding the products to the compare table, in the support ticket also mention this problem. The same goes with the problem of FontAwesome.
Have a great day.
- This reply was modified 3 years ago by Pablo Pérez.
Forum: Plugins
In reply to: [YITH WooCommerce Compare] Add class for attribute valuesHello,
Please use this code instead:
$attribute = get_term_by( 'name', $product->fields[ $field ], $field, 'ARRAY_A' ); if ( $attribute ) { echo '<span class="' . $field . '-' . $attribute['slug'] . '">' . ( empty( $product->fields[ $field ] ) ? ' ' : $product->fields[ $field ] ) . '</span>';// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } else { echo empty( $product->fields[ $field ] ) ? ' ' : $product->fields[ $field ]; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } break;
So this code checks if it’s an attribute and will get the slug of term, creating the span that you requested.
Let me know if it works in your site.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] Label “Select Option”Hello,
Were you able to to perform the test we mentioned? If changing it in code doesn’t work, it means that another source it’s overwriting our option.
Please check only with your theme, WooCommerce plugin and our plugin. If it doesn’t work, check with the theme Twenty Twenty-One.
- This reply was modified 3 years ago by Pablo Pérez.
Hello,
You can achieve it only with the premium version of plugin, in order to achieve you can use a product type addon together with a number type addon. The product addon should be free and apply the product price to the number addon which it will be multiple per value.
With the free version you cannot have those addon type so is not possible. If you decide to get the premium version and you encounter any problem, please open us a support ticket.
Have a great day.
Forum: Plugins
In reply to: [YITH WooCommerce Compare] Problem with RTLHello,
I tested on my RTL site and I can’t replicate your problem. Please, if possible, send us the url of your site in order to check your issue.
Forum: Plugins
In reply to: [YITH Color and Label Variations for WooCommerce] Change Size of LabelsHello,
You can add this css code to your site in order to make them bigger and responsive:
.select_option_label.select_option { padding: 4px 8px 8px 5px; margin-bottom: 3px; } .select_option span { width: auto !important; min-width: 27px; }
Feel free to change any value in order to make it even bigger.
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Filter show empty taxonomy termsHi there,
I checked the filter you mentioned and it doesn’t appear, also I checked the rest of the terms of this filter and all has products. This is what I see.
Please, check it and let me know how to replicate the issue.
Have a great day.
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Noindex not workingHello,
You should check if there is another meta tag with the name robots, there should be two of them, the one your pointed and another with the SEO option.
Let me know and have a great day.
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Mystery space when filtering…Hi there,
I took a look at your site and it seems your theme’s js adds a height property to the element .site-header-inner-wrap. Are you using a child theme?
Let me know ??
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Conflict filter and wp rocketHi there,
I checked your site and didn’t see any problem with performance filtering by colors and worked fine.
Please let me know which specific term you had problems, so I can replicate your issue.
Anyways, we have a topic in our Help Centre on how to configure WP Rocket with our plugin here, please confirm you have the right configuration.
I look forward to your reply and have a good day.
Hi there,
The feature you mentioned is part of the premium version of the plugin. I invite you to open a support ticket in our website in order to discuss the plugin’s premium features, as this is forum is only for the free version.
Have a great day.
Hi there,
Hope you are having a good day.
Unfortunately is not possible to provide you an email, however, it seems the issue should between your theme and YITH WooCommerce Ajax Product Filter, as the theme doesn’t contains the standard wrapper with the id #content.
To give the filters a proper selector for the filtering, you can add the following code in your functions.php of your current theme’s folder:
if( ! function_exists( 'yith_wcan_content_selector' ) ){ function yith_wcan_content_selector( $selector ){ $selector = ''; return $selector; } add_filter( 'yith_wcan_content_selector', 'yith_wcan_content_selector' ); }
And set the value of $selector with a css selector ( class or id, but it has to be unique in the page) of a wrapper that contains the filters and the product list.
Please try this and let me know if the issue is fixed.
- This reply was modified 3 years, 2 months ago by Pablo Pérez.
- This reply was modified 3 years, 2 months ago by Pablo Pérez.
Hi there,
Hope you are having a great day.
In order to get any integration between our plugins, you will need to get the premium version of both plugins. You can visit our website to have more information.
We remain at your disposal.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] Can’t see the version 2xHi there,
I couldn’t replicate your issue, if possible, please take a closer look, see if any php or js error occurs while switching the version debugging your site, so we can have any information on what is happenning. Let us know if you were able to find something.
Have a great day.