Kris
Forum Replies Created
-
Forum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] icon on mobile now showingHi @nikketrikke!
Unfortunately, a free version of FiboSearch is not integrated with TranslatePress.
Read more here about FiboSearch Multilanguage integrations.
Regards,
Kris- This reply was modified 3 years ago by Kris.
Forum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] Search icon widthHi,
use this CSS:
.menu-item .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon { margin-left: 20px; }
The result: https://prnt.sc/26qjoiz
Regards,
KrisForum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] View All Products Don’t WorkHi @vagherbie,
Can you do the debug for me? Follow these steps:
1. Press F12 or Right Mouse Button -> Inspect (open browser inspector).
2. Try to search for something and click “See all products” then check in the console tab (see screenshot: https://prnt.sc/26q34o5) for errors.
3. If there are errors, please share them here.Regards,
KrisForum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] icon on mobile now showingHi @nikketrikke
I see that you are not using FiboSearch on your website. Do you still need help with the problem?
Regards,
Kris- This reply was modified 3 years ago by Kris.
Forum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] Search icon widthHi @jonasojczyk
Use this CSS snippet (this snippet will also align the search icon into the center). See result: https://prnt.sc/26q1rk9
.dgwt-wcas-search-icon { position: relative; top: -2px; } .dgwt-wcas-search-wrapp { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon .dgwt-wcas-search-form { min-width: 200px !important; }
Paste it into Appearance -> Customize -> Additional CSS.
Hi,
Sorry, but, you cannot send credentials via www.ads-software.com (it is a public forum). Publishing any sensitive data is against the forum guidelines. Unfortunately, in this case, I will not be able to help you.
Regards,
KrisHi @rashamatt
This error is from a plugin Quantity Field on Shop Page for WooCommerce. Exactly in this line: https://plugins.trac.www.ads-software.com/browser/quantity-field-on-shop-page-for-woocommerce/trunk/wc-quantity-field-shop-page.php#L75
The plugin is hooked into FiboSearch Details Panel and refers to stock quantity directly (
$product->stock_quantity
) instead of using$product->get_stock_quantity()
.Contact the plug-in developer and report this error.
Also, before the author fixes the bug you can apply the temporary solution by changing the plugin code in the filequantity-field-on-shop-page-for-woocommerce/trunk/wc-quantity-field-shop-page.php
in line 75:$args['max_value'] = $product->stock_quantity;
to
$args['max_value'] = $product->get_stock_quantity();
Regards,
KrisForum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] 64×64 Search Results Image SizeHi @northwst!
1. Add the following code to your theme’s
functions.php
file or use the Code Snippets plugin:add_filter( 'dgwt/wcas/product/thumbnail_src', function( $src, $product_id ) { $thumbnail_url = wp_get_attachment_image_src( get_post_thumbnail_id( $product_id ), 'thumbnail' ); if ( is_array( $thumbnail_url ) && !empty( $thumbnail_url[0] ) ) { $src = $thumbnail_url[0]; } return $src; }, 10, 2 );
2. Make the image container larger
Changing the image size is not enough – you’ll also need to make the image container bigger. Add the following code to Appearance -> Customize -> Additional CSS:span.dgwt-wcas-si { width: 100px !important; }
You can read more about changing the product image in FiboSearch here
Regards,
KrisForum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] Doesn’t work with astraHi @colyz93
Try to add the FiboSearch by shortcode using Astra Header Builder.
Go to WordPress Admin Dashboard -> Appearance -> Customize -> Header Builder and add HTML widget with[fibosearch]
shortcode like on this screenshots:
https://prnt.sc/26mb93w
https://prnt.sc/26mb8o4
Regards,
KrisHi @grillazero
I will need a bit more information on the error.
Please provide the URL address of your website in this field if you can (Link to the page you need help with). This will help me debug the problem.
Also, please check if these products are the same (have the same IDs). Maybe this product is variable and your search results page shows both of the variants.Regards,
KrisForum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] Searching in post contentsHi @alfy40!
This support forum is only for users of the Free version of FiboSearch. Because you’re asking about the Pro version, please submit a ticket via our website: https://fibosearch.com/contact/.
Regards,
KrisForum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] Results in categoriesHi @steloubas4,
This support forum is only for users of the Free version of FiboSearch. Because you’re using the Pro version, please submit a support ticket via our website: https://fibosearch.com/contact/.
Regards,
KrisForum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] Results return product categoriesHi @barrycrous!
Use this code snippet to hide categories on the search results page:
/** * Hide all product categories on the search results page */ add_filter( 'get_terms', function ( $terms, $taxonomies, $args ) { if ( ! is_admin() && is_search() ) { $terms = []; } return $terms; }, 10, 3 );
You have two ways to add this code to your theme:
Open thefunctions.php
in your child theme and add the code at the end.
or install the Code Snippets plugin and apply this code as a snippet.
Regards,
KrisFiboSearch was never able to add variations directly from the search results. This is due to technical obstacles. Instead, FiboSearch displays the “Select Options” button which redirects to the product page. Some plugins or custom code can modify this behavior and display the variations form, but it doesn’t work, because the search results are displayed long after WooCommerce processes all variable products on page load and attaches JavaScript events to them.
Regards,
KrisForum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] Loco Translate not workingHi @mailtobb.
I see, that you are using Polylang. Go to
WordPress Admin Dashboard -> Languages -> Strings translations
and there you should be able to translate this phrase (see screenshot: https://prnt.sc/26g637v).Regards,
Kris