Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Redirect After Click Wrapper in Icon Box Widgets
- */
- function redirect_after_click_icon_box_wrapper() {
- ?>
- <script type="text/javascript">
- (function ($) {
- $(document).on('ready', () => {
- const wrapper = $('.jkit-icon-box .jkit-icon-box-wrapper');
- wrapper.on({
- click: (e) => {
- const url = $(e.currentTarget).find('.icon-box-link').attr('href');
- window.location.href = url;
- }
- })
- })
- })(jQuery)
- </script>
- <?php
- }
- add_action( 'wp_footer', 'redirect_after_click_icon_box_wrapper' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement