Hi, after clicking the magnifying glass, the search field does not display correctly, and when hidden, the page expands
]]>Hello!
Thank you for this wonderful search plugin. I recently switched to your plugin from another plugin and it works great. The only problem I have is that searching by SKU doesn’t work if the SKU contains a dot. Let’s say my SKU is “245.563” and I want to search for it. In this case, the product is not found. If I remove the dot from the SKU, the search is successful.
Am I doing something wrong, do I need to adjust something, or is this a bug that you can fix?
Thank you in advance!
]]>Hi all,
Unable to type anything when open seach from mobile menu. Just narrow a bit desktop windows to test till hamburger menu appears. But works OK from header icon both mobile and desktop. Overlay on mobile checked.
Fixer code did not solved. Console jQuery(‘#jquery-dgwt-wcas-js’).length; returns 1. Flatsome theme.
Just tested to disable overlay on mobile and was abble to type. Only problem to type from hamburger menu overlay on mobile
Any ideas to fix?
]]>This website has been using Fibosearch in conjunction with Elementor. We are in the process of removing Elementor and just using default Kadence theme instead.
When we turn off the Elementor Search Results template and we try to search and get the Kadence search page header, but no results show on the page. How can we designate the default Kadence theme search page for results to show?
The problem is that FiboSearch does not auto index when using the “Admin Columns” plugin to edit the product.
]]>Hello,
FiboSearch bar is overlaping original theme search bar with results, making them both visible. FiboSearch option to Replace theme bar is checked. Theme is Uncode
Here is a printscreen: https://prnt.sc/D_oWI88M6owB
]]>Hi
I’m having an issue with the search bar, images do not show in search results.
Larger images do show in the product details when hovering over the product details however.
Is this something I can fix ?
Thanks
]]>Hello,
After the update, there is a delay (spinner ) loading the magnifier icon in the menu when moving between pages.
Brian
]]>Recently we found that sometimes the Fibosearch text field can’t type in anything, but when in PC mode is ok. When we click the fibosearch bar in mobile, the A HREF link show #. But once a while Fibosearch in mobile seem working alright, sometimes it not.
Do anyone know how to fix this? Thank you so much
]]>After updating to version 1.29 an issue occurs on my mobile causing the search icon not to be visible, only the search bar. I want to rollback to version 1.28.1, but I can’t find a download anywhere. Could you provide a download link for previous versions?
]]>Hi,
Since installing your update today, the Magnifier icon has disappeared from my navigation? Have you changed the CSS selector or something?
]]>Dear Support, in my last ticket you guys helped me so much to overwrite my theme search with wonderful ajax search from fibo. But after latest updates, the search form won’t load anymore. i use the same code since last ticket:
add_action( 'wp_footer', function() { ?>
<script type="text/javascript">
jQuery(document).ready(function($){
$('body').on('click', '.show-search', function(e){
if ($(window).width() < 1199) {
e.preventDefault();
$('.dgwt-wcas-enable-mobile-form').click();
}
});
});
jQuery( document ).on( 'fibosearch/hide-mobile-overlay', () => {
$('.search-device').removeClass('open');
});
</script>
<style type="text/css">
.tbay-search-form {
display: none !important;
}
</style>
<?php }, 9999 );
i hope you guys can help me ??
]]>Hello,
Fibosearch works perfectly fine on desktop. For example, when I search for “diaomond studs” and click “all products” it goes to a search page showing all the diamond studs.
It doesn’t work the same on mobile. When I search the same thing and then click “all products” the search results page I get is different. It shows diamond products. Is there a way to fix this?
]]>After trying to reach search page it doesnt load at all or gives 404 error after log time
]]>hello
i think search doesn’t work correctly when there’s special character in the phrase , for example when i try to search for something like assassin’s creed which has the special character ( ‘ ) in one of its words , i get stuck on loading bar and no result is displayed.
also i think it would be great if you can make adjustment to plugin so that even if someone simply search for “assassins creed” without puting that special character , all the results even with special characters be displayed aswell.
for example someone search for “assassins creed” , but aside from the results for this phrase , the results for the “assassin’s creed ” which has a special character in the middle of it , also be displayed
thank you in advance for your help with this matter
]]>hello
I’m having trouble sorting products by price from the search bar.
problem is Product prices are not arranged in order. As selected in select as shown in the attached picture.
https://jmp.sh/0tmiLM7x
Is it possible if you help me find the cause of it?
Or if I use the pro version option inside will that fix this problem?
thank you
]]>Hi,
I’m using your plugin on this website https://www.papadovo.com/ and I have realised that it must be in conflict with our child theme (Divi Cart Pro – which also as a search bar functionality, however, it only works on the nav menu).
The main issue I’m experiencing is a delay in displaying the search results.
Is there a way to solve this problem?
Thanks
]]>Hello! I’d like to add a simple filter to exclude a stock status I set up called “discontinued_sku” Can you assist with this, I’m also using the WoodMart theme and have everything else working but this, small sample below, it works perfectly with the theme, but your plugin seems to override that and thus, not sure of the logic to bypass finding any discontinued_sku as we still want this product page to be found directly, just not indirectly via search or listing and not have to hand set this in the admin for all products? I did try your docs online and was not able to find the answer myself yet.
// Exclude discontinued products from all product queries
add_action('pre_get_posts', function($query) {
if (!is_admin() && $query->is_main_query() && ($query->is_post_type_archive('product') || $query->is_tax() || $query->is_search())) {
$meta_query = $query->get('meta_query') ?: [];
$meta_query[] = ['key' => '_stock_status', 'value' => 'discontinued_sku', 'compare' => '!='];
$query->set('meta_query', $meta_query);
}
});
// Exclude discontinued products from Fibosearch results
add_filter('fibosearch_product_query_args', function($args) {
$meta_query = $args['meta_query'] ?? [];
$meta_query[] = [
'key' => '_stock_status',
'value' => 'discontinued_sku',
'compare' => '!='
];
$args['meta_query'] = $meta_query;
return $args;
});
// Exclude discontinued products from WoodMart search results
add_filter('woocommerce_shortcode_products_query', function($args) {
$meta_query = $args['meta_query'] ?? [];
$meta_query[] = [
'key' => '_stock_status',
'value' => 'discontinued_sku',
'compare' => '!='
];
$args['meta_query'] = $meta_query;
return $args;
});
Thank you …
]]>Hi.
I use the free version of Fibosearch (for testing purpose) with Woodmart.
When I set the Fibosearch bar to replace the themes bar, the Fibosearch bar is flashing over the default bar, a couple of times !
Can this be ressolved ?
Regards
]]>Hello,
I’m using Divi theme and I need to increase the number of products shown on the results page.
I’ve already read your documentation, but I can’t find these options (see image attatched). I have also talked with Divi Support (as suggested on your documentation) however they said that is best to talk directly with you (the plugin’s creators).
]]>When you serach using Fibosearch it doesn’t direct you to the search results template i made in Elementor, instead it takes you to the default unedited search results page.
]]>Hello, I have a training catalog with different training categories. The category filters appear correctly when I do a search in the bar, except that when I click on them it takes me to the shopping cart page and not to the category page in question. Thank you in advance for your help.
]]>Hello,
is it possible to change the order of results? I want to show posts after products. The order of results would look like this: categories, products, blog posts.
Thank you
]]>Hi
We are using Product Table to display the products in a two column format, just
SKU and
Product Name
But on the above mentions page when I search for example “motor’ and then click ‘View All’ or hit return, the results are not relevant? See here: https://app.screencast.com/ou7ZJQfYIHWUT amd here https://app.screencast.com/O05jm3PceU397 it should be 117 not all the products.
Is there soemthing I have done, or maybe the WP product Tables doesn’t work with FiboSearch?
Hello,
I am just wondering if it is possible to disable the functionality where pressing ‘Enter’ during a search redirects to the default WooCommerce product page. My store is highly customized using a page builder, and I’d prefer users to select products directly from the FiboSearch drop-down list to visit the specific product pages.
Appreciate any assistance.
Thanks
]]>Hi, I have installed this plugin https://www.ads-software.com/plugins/ajax-search-for-woocommerce/ in below website :
When we search on any product like “tube, medic”, it is showing all products in website.
Please tell me what is the solution ? if you need i will give admin credentials
]]>Hi,
We have received a PCI scan of our website and there are 2 items – CGI Generic SQL Injection (blind, time-based) and CGI Generic Local File Inclusion that made our report fail with a bit negative impact on us.
After looking into the report we found that this plugin is the caused of the vulnerabilities.
This is one of the flagged examples :
Using the POST HTTP method, SecurityMetrics found that : + The
following resources may be vulnerable to local file inclusion : + The
'dgwt_wcas' parameter of the / CGI : / [dgwt_wcas=/%00.html] --------
output --------'home-banner') ); ?>
If this something that you guys can address and this could affect more people
]]>When i try to use the search bar the results apperar like 50px away from the bar like on this photos , ive tryed to look for any docs or any config but found nothing
my site https://www.jd-depannage.fr/
]]>I’m using a custom theme so probably has something to do with that but when entering the search field on a mobile device I just can’t enter any text to search. Any recommendations on where to start would be appreciated.
thanks
]]>Thank you for the good plugin. I have an issue with Cumulative Layout Shift (CLS) on mobile screens with Astra and integrating fibosearch as a widget displayed as an icon in the header: The search seems to use 100% width as default during loading, causing linebreaks on the right widget (shopping cart) until the page finished loading additional js/css. This is critisized by Google pagespeed/lighthouse and looks buggy during loading.
It does not happen if I remove fibosearch and place a different widget on the left side, so I guess it is caused by fibosearch. I already tried to mess around with custom css but could not fix this. I disabled css/js handling in wp-optimize to make sure this is not the root cause. Maybe you have a hint how to fix this or can improve the plugin?
Thx, Oliver