Skip to content

Instantly share code, notes, and snippets.

@farookibrahim
Created July 3, 2020 13:43
Show Gist options
  • Select an option

  • Save farookibrahim/560d35e052e16884c7ab134811d1ee60 to your computer and use it in GitHub Desktop.

Select an option

Save farookibrahim/560d35e052e16884c7ab134811d1ee60 to your computer and use it in GitHub Desktop.
Vodi - Remove Season Tabs from Single TV Show
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