Skip to content

Instantly share code, notes, and snippets.

@farookibrahim
Created July 28, 2020 15:23
Show Gist options
  • Save farookibrahim/72d06bd5742f48f6fefc56d87fa7f66d to your computer and use it in GitHub Desktop.
Save farookibrahim/72d06bd5742f48f6fefc56d87fa7f66d to your computer and use it in GitHub Desktop.
Vodi - TV Show single description move to above Review
if( ! function_exists( 'vi_child_customize_single_tv_show_tabs' ) ) {
function vi_child_customize_single_tv_show_tabs( $tabs ) {
unset( $tabs['description'] );
return $tabs;
}
}
add_filter( 'masvideos_template_single_tv_show_tabs', 'vi_child_customize_single_tv_show_tabs' );
if( ! function_exists( 'vi_child_single_tv_show_move_description' ) ) {
function vi_child_single_tv_show_move_description() {
if ( is_single() && is_tv_show() ) {
echo '<h4>' . esc_html__( 'Description', 'vodi' ) . '</h4>';
masvideos_template_single_tv_show_description();
}
}
}
add_action( 'masvideos_after_single_tv_show_summary', 'vi_child_single_tv_show_move_description', 27 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment