Created
July 3, 2020 13:43
-
-
Save farookibrahim/560d35e052e16884c7ab134811d1ee60 to your computer and use it in GitHub Desktop.
Vodi - Remove Season Tabs from Single TV Show
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( 'vi_child_remove_seasons_tabs_from_single_tv_show' ) ) { | |
| function vi_child_remove_seasons_tabs_from_single_tv_show() { | |
| remove_action( 'masvideos_after_single_tv_show_summary', 'vodi_single_tv_show_seasons_tabs_wrap_open', 9 ); | |
| remove_action( 'masvideos_after_single_tv_show_summary', 'masvideos_template_single_tv_show_seasons_tabs', 10 ); | |
| remove_action( 'masvideos_after_single_tv_show_summary', 'vodi_single_tv_show_seasons_tabs_wrap_close', 11 ); | |
| } | |
| } | |
| add_action( 'init', 'vi_child_remove_seasons_tabs_from_single_tv_show' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment