Skip to content

Instantly share code, notes, and snippets.

@AndrewSepic
Created July 2, 2020 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndrewSepic/adb60995abebf8372bb2ef268e7eb63b to your computer and use it in GitHub Desktop.
Save AndrewSepic/adb60995abebf8372bb2ef268e7eb63b to your computer and use it in GitHub Desktop.
// Create Filters ?>
<div id="vod-filters">
<h2>Filters <span class="arrow down-default"></span></h2>
<div class="filters-wrap">
<?php foreach( $GLOBALS['my_query_filters'] as $key => $name ):
// get the field's settings without attempting to load a value
$field = get_field_object($key, false, false);
//var_dump($field);
// set value if available
if( isset($_GET[ $name ]) ) {
//echo 'something isset';
$field['value'] = explode(',', $_GET[ $name ]);
$currentArray = $field['value'];
//var_dump($field);?>
<div class="filter" data-filter="<?php echo $name; ?>">
<h4><?php echo $name; ?></h4>
<?php foreach( $field['choices'] as $choice_value => $choice_label): ?>
<input type="checkbox" value="<?php echo $choice_value;?>" if>checked="checked"<?php endif;?>/> <?php echo $choice_label;?>
<?php endforeach;?></div>
<?php }
else {
//echo 'nothing isset';
$field['value'] = explode(',', $_GET[ $name ]);
$currentArray = $field['value'];
//var_dump($field);?><div class="filter" data-filter="<?php echo $name; ?>">
<h4><?php echo $name; ?></h4>
<?php foreach( $field['choices'] as $choice_value => $choice_label): ?>
<input type="checkbox" value="<?php echo $choice_value;?>"><?php echo $choice_label;?>
<?php endforeach;?></div>
<?php }
// create filter
?><!-- <div class="filter" data-filter="<?php// echo $name; ?>">
<h4><?php// echo $name; ?></h4>
<?php// create_field( $field );
?>
</div> --><?php endforeach; ?>Apply Filters
</div><!-- /.filters-wrap -->
</div>
<script type="text/javascript">
(function($) {
// Toggle Filters
$('#vod-filters h2').on('click', function(){
$('.filters-wrap').toggle('slow').css('display', 'flex');
$('#vod-filters h2 span').toggleClass('up-green');
});
// change
$('#vod-filters').on('change', 'input[type="checkbox"]', function(){
// vars
var url = '<?php echo home_url('vod'); ?>';
args = {};
// loop over filters
$('#vod-filters .filter').each(function(){
// vars
var filter = $(this).data('filter'),
vals = [];
// find checked inputs
$(this).find('input:checked').each(function(){
vals.push( $(this).val() );
});
// append to args
args[ filter ] = vals.join(',');
});
// update url
url += '?';
// loop over args
$.each(args, function( name, value ){
url += name + '=' + value + '&';
});
// remove last &
url = url.slice(0, -1);
// reload page
$('a#applyFilters').on('click', function(){
window.location.replace( url );
});
});
})(jQuery);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment