Skip to content

Instantly share code, notes, and snippets.

@ahmedeshaan
Created November 21, 2019 18:37
Show Gist options
  • Save ahmedeshaan/fb2289ceaa219e577cd7b3ecdc12ba4d to your computer and use it in GitHub Desktop.
Save ahmedeshaan/fb2289ceaa219e577cd7b3ecdc12ba4d to your computer and use it in GitHub Desktop.
<script type="text/javascript">
jQuery(document).ready(function( $ ){
// Your code in here
jQuery(window).on('wcpf_update_products', function () {
$('.variations_form').each(function(){
$(this).wc_variation_form();
});
});
});
</script>
Reference: https://getwooplugins.com/ticket/27261/#comment-75868
@ahmedeshaan
Copy link
Author

jQuery(window).on(‘wcpf_update_products’, function () {

jQuery(‘.variations_form’).each(function(){
jQuery(this).wc_variation_form();
});

});

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