YummyWP
Forum Replies Created
-
Forum: Plugins
In reply to: [Sokol: Smart WooCommerce Search] Overlapping executions in indexingHello,
Thank you for pointing out this specific issue and for sharing your solution.
I’ll review it and update the plugin to prevent overlapping cron job executions.
I appreciate your feedback and contribution.
Thanks,
StanislavForum: Plugins
In reply to: [Sokol: Smart WooCommerce Search] Not searching dash (-)Hi! Thanks for catching the issue with punctuation symbols in the search query.
I’ve just released a fix for this. Please update to v2.16.3 and let me know if everything is working smoothly now!Best regards,
StanislavForum: Plugins
In reply to: [Sokol: Smart WooCommerce Search] PHP errorHi Breda,
Thanks for pointing this out.
The issue has been resolved. Please update the plugin.
Best regards,
StanislavHi there,
Could you please provide a link to a staging site and screenshots of Smart Search settings.
Please contact us at https://www.wpsmartsearch.com/contact/Forum: Reviews
In reply to: [Sokol: Smart WooCommerce Search] fake situationHello!
We want to clarify that the ‘Search by product SKU’ feature is indeed available in the free version, as stated in the plugin description. You can find it under the “Items to Search Through” tab in the plugin settings. I checked it and it works fine.
If you’re experiencing any issues with this functionality, please reach out to our support team so we can help!Hi there,
We are going to add this feature to the PRO version in the future updates. I’ll let you know when it’s ready.Forum: Plugins
In reply to: [Sokol: Smart WooCommerce Search] does Smart WC Search work with php 8.4?Great! I’m glad that there is no issue. Thank you for your response!
Forum: Plugins
In reply to: [Sokol: Smart WooCommerce Search] Logging search termsHi there,
We are going to add this feature to the PRO version in the future updates. I’ll let you know when it’s ready.Forum: Plugins
In reply to: [Sokol: Smart WooCommerce Search] SKU/Ref search not workingThe filter has been added in the latest plugin release:
add_filter( 'sws_search_bar_css_selectors', 'sws_search_bar_css_selectors', 10, 2 );
/**
* @param $selectors array - css selector of the <form> element
* @param $widget_id int - id of the Smart Search widget that you set up [1|2|3...]
*
* @return mixed
*/
function sws_search_bar_css_selectors( $selectors, $widget_id ) {
if ( $widget_id === 1 ) {
$selectors[] = 'form.header-search-bar';
}
return $selectors;
}https://www.wpsmartsearch.com/docs/hooks-filters/#9-toc-title
Forum: Plugins
In reply to: [Sokol: Smart WooCommerce Search] SKU/Ref search not workingHello,
to search by SKU you should enable the appropriate setting in the “Items to search through” tab for the Smart Search widget #1
https://www.wpsmartsearch.com/docs/content-types/#2-toc-titleThere is no option to set custom selector via WP filter, but it’s a good idea and I’ll add this feature shortly.
Thank you!Forum: Plugins
In reply to: [Sokol: Smart WooCommerce Search] w3 Validate issueHello,
Please update to the latest plugin version. This should be fixed now.
Forum: Plugins
In reply to: [Sokol: Smart WooCommerce Search] w3 Validate issueHi there,
yeah, it will be fixed in the next plugin release.
Forum: Plugins
In reply to: [Sokol: Smart WooCommerce Search] Not working on mobileHello,
I checked the issue and determined that it’s not related to the Smart Search plugin.
It’s a custom CSS that hides the <body> element on the mobile screen (@media only screen and (max-width: 500px) ).You can find it in the page’s view source.
.post-type-archive-product {
display: none !important;
}Please remove that CSS and the page should be displayed normally then.
Forum: Plugins
In reply to: [Sokol: Smart WooCommerce Search] Dropdown z-indexHello,
There is a z-index issue.
Please add the following custom css:
.lakit-site-wrapper > .elementor-location-header > .elementor-top-section:first-child {
z-index: 9999;
}Hello,
Could you share your website link here or in our contact form ?
So I can check it out.Thank you!