Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Support Kris

    (@c0nst)

    Hi @sitharaek

    To help you I will need more information:

    • What theme is installed on your website? Is it integrated with our plugin? You can check it in the administration panel -> WooCommerce -> FiboSearch -> Starting (tab).
    • How did you try to add FiboSearch to the footer or footer widgets? Did you use the shortcode [fibosearch layout="icon"] ?

    Regards,
    Kris

    Thread Starter sitharaek

    (@sitharaek)

    Installed theme is Pharmacy WooCommerce WordPress Responsive Theme

    I added fibosearch shortcode [fibosearch] in the footer bar for mobile devices

    But when i open website in mobile devices, search icon isn’t showing.

    Plugin Support Kris

    (@c0nst)

    Hi @sitharaek!

    Try adding our search engine to your footer using the widgets available in your theme. See this screenshot to know what to do: https://prnt.sc/GOFvvo4sqG99

    1. Go to Appearance -> Widgets
    2. Expand the widget field where you want to add FiboSearch
    3. Click the plus button and select the FiboSearch widget. On the right side you will have settings where you can, for example, change the appearance from a bar to an icon.
    4. Save and check. Make sure to clear your cache if you use any on the site.

    Regards,
    Kris

    Thread Starter sitharaek

    (@sitharaek)

    Hi Kris,

    I am using elementor to edit footer bar. So there is only 1 option to add fibosearch, shortcode. I am also using GTtranslate plugin and it shows as “You are using the GTranslate plugin. The FiboSearch does not support this plugin.”

    Regards,

    Sithara

    Thread Starter sitharaek

    (@sitharaek)

    Hi,

    Out of stock products are showing in the search result in my website

    Plugin Support Kris

    (@c0nst)

    Hi @sitharaek!

    Let’s try this solution as well. It will add FiboSearch to the footer, but you will need to modify the class name where I’ve indicated to the class name of the widget to which you want to add the FiboSearch icon. You can check this by right-clicking or pressing F12 > Inspect on that Widget. The class will be visible in the Elements tab within the attribute class="" (example). Unfortunately, I don’t know which theme you’re using and I don’t have your website URL, so I can’t provide you with that name.

    // Add FiboSearch icon to the Footer
    add_action('wp_footer', function() {
    	echo do_shortcode('[fibosearch layout="icon" class="fibosearch-in-footer"]');
    	?>
    	<script>
    		jQuery(document).ready(function($) {
    			var searchWrapper = $('.fibosearch-in-footer .dgwt-wcas-search-wrapp');
    			var footer = $('.site-footer .widget-1'); // Change this classes to your footer and widget-class class or id use # instead . for ID, example: #site-footer #widget-1
    			
    			if(searchWrapper.length > 0 && footer.length > 0) {
    				footer.append(searchWrapper);
    			}
    		});
    	</script>
    	<?php
    }, 9999 );

    You have two ways to add this code to your theme:

    1. Open the functions.php in your child theme and add the code at the end.
    2.   or install the Code Snippets plugin and apply this code as a snippet.

    GTTranslate:
    We wanted to integrate FiboSearch with the GTranslate plugin. The reason why we failed to do so was because we encountered two major obstacles:

    • GTTranslate translations are translated on the fly; so, FiboSearch can’t search for translated content because transitions aren’t stored in a database.?The plugin’s author himself claims that it’s impossible?(read the plugin’s author article)
    •  users have no control over translations – everytime we got gibberish translations


    Answer to question about out-of-stock products is here.

    Regards,
    Kris

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Search icon is not showing on mobile device’ is closed to new replies.