Viewing 1 replies (of 1 total)
  • flymke

    (@flymke)

    What you can do (e.g. in footer.php) is to simulate a click with jQuery:

    
    <?php if( ISSET($_GET['category']) ): ?>
    <script>
    	jQuery(document).ready(function( $ ) {
    		$('.filters').find('[data-filter=".<?php echo $_GET['category']; ?>"]').trigger( 'click' );
    
    	});
    </script>
    <?php endif; ?>
    

    Mike

Viewing 1 replies (of 1 total)
  • The topic ‘URL Query string option?’ is closed to new replies.