Hello @earl_d
My sincere apologies that we could not respond earlier. We now have a dedicated support staff for supporting ww.wp.xz.cn forum posts. Hopefully, your future support requests are answered in due time.
The plugin itself does not have any code that would make the content disappear. It simply uses WordPress’s core custom post types to register a new post type. They’d not disappear unless the plugin is deactivated or you are using a third party plugin/custom code to disable it.
Hope this answers your question. Let us know if you have any other questions.
Thanks,
Ibrahim
Thread Starter
Earl_D
(@earl_d)
There is no content showing up on the single post (movie)
Hello there,
Like I’ve clarified earlier. The plugin itself does not have any code that would make the content disappear. It simply uses WordPress’s core custom post types to register a new post type.
Are you saying that the theme does not display the content? Please clarify.
Please make sure to declare support for MASVideos for the plugin to display content. You can do so by using this custom code in your child theme’s functions.php:
function mytheme_add_masvideos_support() {
add_theme_support( 'masvideos' );
}
add_action( 'after_setup_theme', 'mytheme_add_masvideos_support' );
Hope this helps. Let us know if you have any other questions or need further help.
Thanks,
Ibrahim
Thread Starter
Earl_D
(@earl_d)
Sorry was not very specific before the content that doesn’t not display is the movie data. None of the items in fields Movie URL cast etc show up on the single movie page
Hello again,
Here is the list of functions that are hooked to the single movie page template: https://github.com/madrasthemes/masvideos/blob/a134fef483e9fe7b0ab31f52d8e5a1c435d90065/includes/masvideos-template-hooks.php#L404-L435
As you can see from lines 427,428: The default meta information that is displayed are: movie release year and genres.
You need to write custom code on top of that to display additional information.
Hope this helps. Let us know if you have any other questions or need further help.
Thanks,
Ibrahim