levelupclint
Forum Replies Created
-
Forum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] Still showing all resultsHello,
Please try this for a fix: https://fibosearch.com/documentation/troubleshooting/always-displays-all-products-on-the-search-results-page/
Best regards,
ClintHi Marco,
We can hide the current search icon in the header with CSS. Then, add the FiboSearch bar as a menu item. Can you try it?
Best regards,
ClintHi there,
If you’re using Elementor, please check:
Thanks,
ClintForum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] Search subdomainHello,
Unfortunately, that’s not going to be possible at the moment.
Best regards,
ClintHello,
This is how it should look after applying the CSS code: https://prnt.sc/11c4me4
Can you try with the following:
.search-form { display: grid !important; border: none !important; }
Hello,
Please share your site address so I can have a look.
Thanks,
ClintHi Kristin,
Can you share your site address so I can take a look?
Best regards,
ClintForum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] Search subdomainHello,
No, the search will work only under one site scope.
Hi again,
You can also try adding the CSS code in your Theme Customizer > Custom CSS:
.search-form { display: grid; border: none; }
Let me know if that works.
Hello,
In WooCommerce > FiboSearch > Search bar > Basic, can you leave blank so it’s set to 100% width?
Hello Marco,
You can ask the theme developer how best to replace the native search bar with FiboSearch. Then, we can take it from there.
Hello,
Can you try adding the following snippet to your child theme’s functions.php file:
add_action( 'template_redirect', function () { if ( ! empty( $_GET['dgwt_wcas'] ) ) { global $wp_query; if ( empty( $wp_query->found_posts ) ) { wp_redirect(home_url('your-404-page')); // Redirect URL exit(); } } } );
Hello,
Yes, we support the Astra theme. Please see this doc for the integration: https://fibosearch.com/documentation/themes-integrations/astra-theme/
Hello Marco,
We don’t currently have an integration with your theme. Can you contact your theme developer to see if there’s a filter we could use in replacing the default search?
Hello,
You can change the HTML in the details panel:
add_filter( 'dgwt/wcas/suggestion_details/product/html', function($html, $product_id){ $html = str_replace('to-replace', 'your-extra-html', $html); return $html; }, 10, 2);
There are no hooks to add something e.g. before title, price, after image e.t.c. You can only filter the whole HTML of the Details Panel.
Best regards,
Clint