Created
September 16, 2017 13:50
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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