Forums
Home / Plugin: WP Store Locator / Result Counter
(@mandeeej)
2 years, 5 months ago
Hi, is there anyway to get a result counter?
(@farroyob)
Hi!
Yes, definitely. Please check this thread that I replied just yesterday with the same question.
Regards!
Ive just seen it, thank you ??
For anyone else searching:
<div id=”store-counter”></div>
add_action( ‘wp_footer’, function () { ?> <script type=’text/javascript’> jQuery( document ).ajaxComplete(function( event, xhr, settings ) { counter = jQuery(‘div#wpsl-stores ul li:not(“.wpsl-no-results-msg”)’).length; jQuery(‘div#store-counter’).html(‘Found ‘+counter+’ stores’); }); </script>
<?php } );`