Yusuf Ansari
Forum Replies Created
-
Forum: Plugins
In reply to: [MAS Videos] Cannot Retreive “Movie Data” In ElementorHi @mtcritics,
Thank you for trying out our plugin. MAS Videos is fully independent of the Elementor plugin. I am not sure if I understand your issue correctly. Can you please help me understand your issue with screenshots or a short video?
MAS Videos template overrides are only enabled on themes that declare MAS Videos support. If you do not declare MAS Videos support in your theme, MAS Videos will assume the theme is not designed for MAS Videos compatibility and will use shortcode-based unsupported theme.
Declaring MAS Videos support is straightforward and involves adding one function in your theme’s functions.php file.
function mytheme_add_masvideos_support() { add_theme_support( 'masvideos' ); } add_action( 'after_setup_theme', 'mytheme_add_masvideos_support' );
Regards
Forum: Plugins
In reply to: [MAS Videos] Cannot add episode to tv showHi @zirekx,
Thank you for trying out our plugin. The above issue may happen due to the TV Show exceeds the “post_max_size” of your server configuration. Please contact your hosting provider and ask to increase the “post_max_size” of your server and check.
Regards
Forum: Plugins
In reply to: [MAS Videos] Shortcode for single movieForum: Plugins
In reply to: [MAS Videos] Paginate blocksHi @earl_d,
Thank you for reaching us. Currently, there is no option for pagination on Gutenberg blocks. We will try to add in our future update, if possible.
Regards
Forum: Plugins
In reply to: [MAS Videos] Code to echo the attributes ?Hi @aplagnespaya,
Thank you for trying out our plugin.
You can fetch movie attribute using custom code like the following:
global $movie; $your_attribute = $movie->get_attribute( 'movie_your_attribute' );
Regards
Forum: Plugins
In reply to: [MAS Videos] ErrorHi @palczor,
Thank you for trying out our plugin. Sorry for the inconvenience. This error fixed in our Github repository. We will release an update as soon as possible. Till next update, you can download the updated code from here: https://github.com/madrasthemes/masvideos
Regards
Forum: Plugins
In reply to: [MAS Videos] Ability to select which video to import from TMDB ImportHi @chainofchaos,
Unfortunately, there is no option to select a particular movie on TMDB import by the “Search Movie” method. Please import a particular movie using the “Movie By ID” method.
Regards
Forum: Plugins
In reply to: [MAS Videos] Update messes up TMDB importHi @earl_d, @aplagnespaya,
We could not reproduce the above issue in our local. Can you please share your site details? If you are using the Vodi theme on your site please contact Vodi support with your WP Admin Details.
Regards
Forum: Plugins
In reply to: [MAS Videos] Layout changeHi @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
Forum: Plugins
In reply to: [MAS Videos] Improvement suggestionHi @aplagnespaya,
Thank you for trying out our plugin and also for your suggestions. We’ll try to include the above enhancements in our future plugin updates.
Thanks
Forum: Plugins
In reply to: [MAS Videos] structure data schema.org errorHi @mrpuyal,
Thank you for reaching us.
Sorry for the inconvenience. We’ll fix this issue in our next plugin update. Please add this custom PHP code to your child theme’s functions.php to fix the issue in our structured data type: https://gist.github.com/yousufansa/b33391d89f2e450352e08ac92800ccfc
Regards
Forum: Plugins
In reply to: [MAS Videos] Don’t start movieHello @ironike,
Thank you for trying out our plugin.
Sorry, we unable to understand your issue. Can you please share the site details like website URL (& issue page URL), a theme used in your site and issue screenshot/short video link?
Regards
Hi @ppinkman,
Your site is running with a third-party theme. Please contact the theme developer and make sure the theme is compatible with our plugin.
Regards
Forum: Plugins
In reply to: [MAS Videos] Disable TV and Movie BlocksThank you for trying out our plugin.
You can disable the MAS Videos post types using custom code. Here is the example custom code to disable the MAS Videos post types: https://gist.github.com/yousufansa/12657cba7ff73ed055ea908efb3cac7e
Thanks
Forum: Plugins
In reply to: [MAS Videos] Update messes up TMDB importHi @earl_d,
Thank you for trying out our plugin.?When you use TMDB import to import data. The data will be fetched from the TMDB and stored as a CSV file on your site. Then the process continues like normal CSV import. You have to map the CSV into the related fields and perform the import.
Regards