Created
November 18, 2020 06:16
-
-
Save yousufansa/24f4332dae4f56750f6d9216020386fe to your computer and use it in GitHub Desktop.
Front - Tabs Block Tab Change on Hover
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
| if( ! function_exists( 'front_child_fgb_tabs_block_tab_change_on_hover_script' ) ) { | |
| function front_child_fgb_tabs_block_tab_change_on_hover_script() { | |
| ob_start(); ?> | |
| (function ($) { | |
| "use strict"; | |
| $(document).ready(function () { | |
| $(".fgb-tabs-block .nav-link").hover(function(){ $(this).tab("show"); }); | |
| }); | |
| })(jQuery); | |
| <?php | |
| $custom_script = ob_get_clean(); | |
| wp_add_inline_script( 'front-scripts', $custom_script ); | |
| } | |
| } | |
| add_action( 'wp_enqueue_scripts', 'front_child_fgb_tabs_block_tab_change_on_hover_script', 30 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment