Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Created September 16, 2017 13:50
Show Gist options
  • Select an option

  • Save kreamweb/25f0225f9223aa0c6940a9908ba35a8c to your computer and use it in GitHub Desktop.

Select an option

Save kreamweb/25f0225f9223aa0c6940a9908ba35a8c to your computer and use it in GitHub Desktop.
reload the page in singular product page after added the product to the list
<?php
if ( defined( 'YITH_YWRAQ_PREMIUM' ) ) {
function ywraq_print_my_inline_script() {
if ( is_singular() ) :
?>
<script type="text/javascript" charset="utf-8">
jQuery(document).on('yith_wwraq_added_successfully', function ($) {
window.location.reload(false);
});
</script>
<?php
endif;
}
add_action( 'wp_footer', 'ywraq_print_my_inline_script', 99 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment