Support Forums

Looking for support? You can access the support system via your account.

Forums Forums Search & Filter Pro Invisible Ajax results

Viewing 6 posts - 11 through 16 (of 16 total)
  • Ross Moderator
    #16438

    Hey Stephane

    To be honest what you’re looking for is way to specific to your theme for me to really suggest what you need…

    I’d suggest at this stage getting hiring a dev or asking in dev related forums/websites for further help.

    Thanks

    Stephane
    #16471
    This reply has been marked as private.
    Ross Moderator
    #16474

    Hey Stephane

    Normally I would say yes, but at the moment I’m just way too busy – my main priority is first to complete S&F 2.0, after this I may be available for this kind of work!

    Thanks

    Stephane
    #16476

    🙁

    Stephane
    #16521

    Ok, managed it to work !

    For those who use Salient theme : add this to search-filter/results.php :

    <script type="text/javascript">
    
    	<![CDATA[
    	
    		$(".searchandfilter").on("sf:ajaxstart",function(){
    			console.log("ajax start");
    			$('#loader').show();
    		});
    		
    		$(".searchandfilter").on("sf:ajaxfinish",function(){
    			console.log("ajax complete");
    			$('#loader').hide();
    						
    			jQuery.getScript("PATH_TO_YOUR_THEME_DIRECTORY/salient/js/init.js", function(data, textStatus, jqxhr) {
    			   //console.log(data); //data returned
    			   //console.log(textStatus); //success
    			   //console.log(jqxhr.status); //200
    			   //console.log('script.js loaded.');
    			});
    				
    		});
    		
    	]]>
    
    </script>
    Ross Moderator
    #16522

    Wow amazing! And lightning fast!! 🙂

Viewing 6 posts - 11 through 16 (of 16 total)

You must be logged in to reply to this topic.