Hello @angel2002,
Thank you for trying out our plugin. We have grid view only by default. You need to override this template https://github.com/madrasthemes/masvideos/blob/master/templates/archive-movie.php to child theme and customize code for add grid/list in movies archive.
Regards
Hi Farook!
What I mean is: in grid view you have a list of movies with thumbnail and under it release date, genre and under this movie title.
What I need to do is exchange release date for movie duration.
Hope it’s more clear than my previous message.
https://pasteboard.co/Ji2hFVp6.jpg
-
This reply was modified 5 years, 9 months ago by
angel2002.
Have the same question – how to change year to duration.
Hi @angel2002 & @geminixxx,
Thank you for reaching us.
You can remove movie release year and display movie duration on movie meta using following custom code.
remove_action( 'masvideos_single_movie_meta', 'masvideos_template_single_movie_release_year', 10 );
add_action( 'masvideos_single_movie_meta', 'masvideos_template_single_movie_duration', 10 );
Regards