Loading image effect while searching in Prestashop

Today i want to show you how to create nice loading effect, when customers searching products in your store based on prestashop engine. If you don't know what I mean, take a look at this video that I attached below:

 

 

This tutorial is based on prestashop 1.5.4.1 but you can use it in all prestashop version (1.5.x). The most important thing - is to turn on instant search under the preferences -> search tab in your prestashop back office. So, if instant search is enabled you can read next part of this tut.

 

Create loading animation while searching

When your customers searching something in your store - they using usually blocksearch module. So, all changes we must apply to this module. For the first, we must edit blocksearch-top.tpl file located in the /modules/blocksearch/ directory. Remember, that sometimes this directory & files also exist in themes/your_theme/modules/ directory. If so - all changes apply there. Okay, so, as I said, open the blocksearch-top.tpl file. Near line 38 you've got this:

 

...
<div id="search_block_top">
   <form method="get" action="{$link->getPageLink('search')}" id="searchbox">
...

To this code we must add block with our loader, URL_TO_YOUR_LOADING_IMAGE - this is an url to loading image, you can easily find it in google, just open graphic search, and look for loading.gif ;-) Okay, so below you can find code with loading block:

<div style="position:absolute; left:-40px; display:none; width:32px; height:32px; background:url('URL_TO_YOUR_LOADING_IMAGE'></div>

paste it between the div and form, exactly as I show below:

<div id="search_block_top">
<div style="position:absolute; left:-40px; display:none; width:32px; height:32px; background:url('URL_TO_YOUR_IMAGE')" id="ajaxsearchloader"></div>
<form method="get" action="{$link->getPageLink('search')}" id="searchbox">

After changes you can save this file and read next step.

 

Open blocksearch-instantsearch.tpl file

This file is most important piece of code for instant search mode. 

 

Use this script instead old one:

	<script type="text/javascript">
	// <![CDATA[
		function tryToCloseInstantSearch() {
                        $("#ajaxsearchloader").hide(); 
			if ($('#old_center_column').length > 0)
			{
				$('#center_column').remove();
				$('#old_center_column').attr('id', 'center_column');
				$('#center_column').show();
				return false;
			}
		}
		
		instantSearchQueries = new Array();
		function stopInstantSearchQueries(){
			for(i=0;i<instantSearchQueries.length;i++) {
				instantSearchQueries[i].abort();
			}
			instantSearchQueries = new Array();
		}
		
		$("#search_query_{$blocksearch_type}").keyup(function(){
  		  $("#ajaxsearchloader").show();
			if($(this).val().length > 0){
				stopInstantSearchQueries();
				instantSearchQuery = $.ajax({
					url: '{if $search_ssl == 1}{$link->getPageLink('search', true)}{else}{$link->getPageLink('search')}{/if}',
					data: {
						instantSearch: 1,
						id_lang: {$cookie->id_lang},
						q: $(this).val()
					},
					dataType: 'html',
					type: 'POST',
					success: function(data){
					   $("#ajaxsearchloader").hide();
						if($("#search_query_{$blocksearch_type}").val().length > 0)
						{
							tryToCloseInstantSearch();
							$('#center_column').attr('id', 'old_center_column');
							$('#old_center_column').after('<div id="center_column" class="' + $('#old_center_column').attr('class') + '">'+data+'</div>');
							$('#old_center_column').hide();
							$("#instant_search_results a.close").click(function() {
								$("#search_query_{$blocksearch_type}").val('');
								return tryToCloseInstantSearch();
							});
							return false;
						}
						else
							tryToCloseInstantSearch();
					}
				});
				instantSearchQueries.push(instantSearchQuery);
			}
			else
				tryToCloseInstantSearch();
		});
	// ]]>
	</script>
author milos myszczuk
Article by Milosz Myszczuk PrestaShop expert, official PrestaShop community moderator. PHP developer, specialist in relative and spatial databases management, GIS Analyst, CEO & founder of VEKIA interactive agency. Read more about VEKIA company
If you like my articles and want much more valuable tips, feel free to send me donation
1.4 version 1.4.11 1.6 404 addon admin advertise ahref ajax alpha animation api app application authentication back office backup badge banner basics block bootstrap button cache carrier cart catalog category certificate changelog chat class clear client clip cms code colors columns comments configuration contact container content controller cookie counter country coupon css csv currency customer dashboard database debug default delete delivery desktop developer device disable discount displayNav displayTop download dynamic editor effect empty encrypt engine error exchange exclude export facebook faceshop fade fancoupon fancybox fanpage fatal feature feed field file fix fixed font footer free friendly url front ftp full gallery generate gift global godaddy google google+ gray grid groupon header help hide highlight homefeatured homepage hook hosting hover howto htaccess html html5 ID image import include input instagram installation integration iPhone issue javascript jquery kgb knowhow languages law left likebox link list livingsocial loading log login logo loyality mail mailing maintenance manufacturer marketing marquee mcrypt menu meta mobile modification module movie moving multilanguage multiupload must have mysql news newsletter notification number open graph order override page password performance PHP phpmyadmin picture pinterest plugin popup post prestashop prestashop 1.0 prestashop 1.1 prestashop 1.2 prestashop 1.3 prestashop 1.4 prestashop 1.5 price rules problem product profile promotion proslider purifier quantity query quick tip random rates register reinsurance release reporting reset responsive restore results ribbon rich text right sales search security seo service shadow share shipping shop shopmania slider smarty social networks SQL SSL statistics stock store style subcategory superuser support switcher tab tablet tag tax template text theme tinyMCE tips and tricks tpl tracking translations tree trends trigger tumblr tutorial twitter update upgrade upload variables video visits voucher vulnerability web2print wide widget width window wishlist wysiwyg youtube zip zopim