Last active
November 16, 2023 07:04
-
-
Save akther80/7b0f537ee253cbe733459d7a5556bf65 to your computer and use it in GitHub Desktop.
Vodi - Rearrange Tv Show Tab and Related item position
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
add_action( 'init', 'rearrange_tv_shows_content'); | |
function rearrange_tv_shows_content() { | |
remove_action( 'masvideos_after_single_tv_show_summary', 'vodi_template_single_related_tv_shows_carousel', 20 ); | |
remove_action( 'masvideos_after_single_tv_show_summary', 'masvideos_template_single_tv_show_tabs', 30 ); | |
add_action( 'masvideos_after_single_tv_show_summary', 'vodi_template_single_related_tv_shows_carousel', 21 ); | |
add_action( 'masvideos_after_single_tv_show_summary', 'masvideos_template_single_tv_show_tabs', 20 ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please add the above code in function.php in your child theme.