YummyWP
Forum Replies Created
-
Forum: Reviews
In reply to: [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: [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: [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: [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: [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: [Smart WooCommerce Search] w3 Validate issueHello,
Please update to the latest plugin version. This should be fixed now.
Forum: Plugins
In reply to: [Smart WooCommerce Search] w3 Validate issueHi there,
yeah, it will be fixed in the next plugin release.
Forum: Plugins
In reply to: [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: [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;
}Forum: Plugins
In reply to: [Smart WooCommerce Search] Styles to be applied only when search box is openHello,
Could you share your website link here or in our contact form ?
So I can check it out.Thank you!
Forum: Plugins
In reply to: [Smart WooCommerce Search] Styles to be applied only when search box is openHello,
I’ve added new “Popup Max Height” option. You can find it under the “Layout” tab of Smart Search settings.
Forum: Plugins
In reply to: [Smart WooCommerce Search] Menu bug in Divi when using product searchHello,
Please add a custom css:
.et_pb_column.et_pb_column_3_5.et_pb_column_1_tb_header{
z-index: 999;
}
This should help.
Forum: Plugins
In reply to: [Smart WooCommerce Search] Error in LogHi there,
I can’t reproduce the issue on the testing server.
Can you please create a support ticket here and attach a screenshots with settings of Smart Search widget #1?Forum: Plugins
In reply to: [Smart WooCommerce Search] Issues with plugin and Php 8.12Closing the ticket as the issue is not related to the Smart Search plugin.