Skip to content

Instantly share code, notes, and snippets.

@JarrydLong
Created August 28, 2017 18:49
Show Gist options
  • Save JarrydLong/1888e50b90468cb087f8c66010c57ff4 to your computer and use it in GitHub Desktop.
Save JarrydLong/1888e50b90468cb087f8c66010c57ff4 to your computer and use it in GitHub Desktop.
Select a specific category based on Cat ID on page load
var wpgmza_open_cat = wpgmza_getUrlVars()["catid"];
jQuery(document).ready(function(){
if( jQuery('.wpgmza_checkbox').length > 0 && typeof wpgmza_open_cat !== 'undefined' ){
setTimeout(function(){
jQuery("#wpgmza_cat_checkbox_"+wpgmza_open_cat).click();
}, 800);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment