Pablo Pérez
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Pagination breaks filterHi there,
From the page you’ve sent us, please let us know which filter we have to use to trigger your problem.
Also, please add the following code to optimize our plugin with your current page structure and let us know if the problem persists:
if( ! function_exists( 'yith_wcan_content_selector' ) ){
function yith_wcan_content_selector( $selector ){
$selector = '.elementor-location-archive';
return $selector;
}
add_filter( 'yith_wcan_content_selector', 'yith_wcan_content_selector' );
}Have a great day.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] Styling of sub total boxHi there,
The background color of the price box can be edited in the customization tab from our plugin options. However other styling properties are up to the theme or doesn’t have an option to change it, in which case it requires to change them using CSS code in your Additional CSS.
Let us know if you help finding a specific selector.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] Change of position | incompatibilityHi there,
Please send us the URL of the product to check your problem and offer you a solution.
Have a great day.
Hi,
The integration between our plugins are developed in and with the premium versions. In order to make the integration work, you will also need the premium version of product addons.
Have a great day.
Hi!
Could you send us the URL of the product to change your problem?
Have a great day.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] selection box styleHi!
The option to further customize this element can be found in the premium version. However, to just change the width, you can use the following code:
if( ! function_exists('yith_wapo_edit_width_formatted_settings')){
add_filter('yith_wapo_get_formatted_settings', 'yith_wapo_edit_width_formatted_settings');
function yith_wapo_edit_width_formatted_settings($formatted_settings){
$formatted_settings['select_width'] = 50;
return $formatted_settings;
}
}You can edit the code set the value that you need. Then you just have to include the code in the function.php of your theme.
Have a great day to both!
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] nicer image radio buttons viewHi,
I could see that you are using our premium version of our plugin. As these topics are reserved for free version, I suggest to open a ticket in our website and our agents will help you debug your problem, find and apply a solution.
Have a great day.
Hi there,
Checking your requirements, this filter won’t help you. You should create a category for “female” and another for “male” as it seems you want to use a custom taxonomy and our free version doesn’t support them.
Creating those categories and including a preset with category filter, it will automatically select those filters upon reaching the page allowing to filter specific products.
Let us know if you have any question.
Hi there,
Thank you for opening this topic.
I would be interesting to know what Code Atlantic information can gather to know is conflicting from our plugin and create this error in their plugin. Yes, my suggestion will be to contact them and let us know if you need any information from our side.
Have a great day!
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Colour customisationHi there,
We checked your site but we couldn’t find the filters, could you please send us a link where we can find the filters and let us know exactly which color you want to change? Maybe with a screenshot you can point us to the elements you need to change.
Have a great day!
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Constant plugin requestsHi there,
We checked the log you’ve sent us but it doesn’t point in any step to our ajax filter plugin. We are seeing other plugins being pointed, could you let us know if the problem also happens if you have our filter plugin and WooCommerce activated?
Let us know.
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Filter leads to hidden pageHi,
I checked your shop page, but the filters are not included, here is a screenshot.
Please, send us the link of the page with filters.
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Filters content not showingHi Francesco,
We checked your site and we are seeing you are using the premium version of the plugin. As this topics are reserved for the free version. I encourage you to open a support ticket in our website using your premium license.
Have a great day.
Hi there,
We will release a new update of the plugin with some improvements that should help with the issue you are experiencing. Please, once that update releases ( which will be soon ), please check your problem with the new version and let us know if the issue persists.
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Change text “Show more”Hi,
We could see you are using a select filter type, which use another specific template for the element, to edit this label, please add the following code in the functions.php of your theme:
if( ! function_exists( 'yith_wcan_change_show_more_label' ) ){
add_filter('yith_wcan_shortcodes_script_labels', 'yith_wcan_change_show_more_label');
function yith_wcan_change_show_more_label($labels){
$labels['show_more'] = 'Custom Text';
return $labels;
}
}I hope this code can help you.