Skip to content

Instantly share code, notes, and snippets.

@ahmedeshaan
Created February 18, 2017 06:56
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 ahmedeshaan/7400578c40d8d2eae71937c41ac7a9e7 to your computer and use it in GitHub Desktop.
Save ahmedeshaan/7400578c40d8d2eae71937c41ac7a9e7 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
jQuery( document ).ready(function() {
jQuery(".product-categories .cat-parent").addClass( "active");
});
</script>
@huypham103
Copy link

I am using flatsome theme, i want to close all categories, please help me

@ozgursar
Copy link

ozgursar commented Feb 26, 2024

Try using removeClass

<script type="text/javascript">

jQuery( document ).ready(function() {
    jQuery(".product-categories .cat-parent").removeClass( "active");
});
</script>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment