Farook Ibrahim
Forum Replies Created
-
Forum: Plugins
In reply to: [MAS Videos] Edit upload page formHello @rafaelmazza,
Thank you for trying our plugin. To override upload video page fields. Please use “masvideos_upload_video_fields” filter.
if( ! function_exists( 'your_theme_child_masvideos_upload_video_fields' ) ) { function your_theme_child_masvideos_upload_video_fields( $fields ) { // Override Fields here return $fields; } } add_filter( 'masvideos_upload_video_fields', 'your_theme_child_masvideos_upload_video_fields' );
Ref : https://github.com/madrasthemes/masvideos/blob/master/includes/masvideos-account-functions.php#L351
Regards
Forum: Plugins
In reply to: [MAS Videos] Upload video optionsForum: Plugins
In reply to: [MAS Companies For WP Job Manager] An issue with listing companiesForum: Plugins
In reply to: [MAS Videos] Video playlistHello @rafaelakio,
We tested plugin however we cannot reproduce this issue. Please email to our Vodi theme support regarding this issue.
Regards
Forum: Plugins
In reply to: [MAS Videos] Which theme will be best suitable for WAS VideosHello @packychu2008,
Thank you for trying out our plugin. Our plugin is compatible with default theme Twenty Twenty. If you are looking any premium theme, You can check our Vodi theme.
Regards
Forum: Plugins
In reply to: [MAS Videos] Upload video optionsHello @earl_d,
You can try below code to disable “Upload Video” option from video choice.
if( ! function_exists( 'your_theme_child_masvideos_upload_video_fields' ) ) { function your_theme_child_masvideos_upload_video_fields( $fields ) { if( isset( $fields['video_choice'] ) ) { $fields['video_choice'] = array( 'type' => 'select', 'options' => array( 'video_embed' => __( 'Embed Video', 'masvideos' ), 'video_url' => __( 'Video URL', 'masvideos' ), ), 'label' => __( 'Video Method', 'masvideos' ), 'required' => false, 'class' => array( 'form-row-video_choice' ), 'priority' => 60, ); if( isset( $fields['video_attachment_id'] ) ) { unset( $fields['video_attachment_id'] ); } } return $fields; } } add_filter( 'masvideos_upload_video_fields', 'your_theme_child_masvideos_upload_video_fields' );
Regards
Forum: Plugins
In reply to: [MAS Videos] Shortcode paginateHello @earl_d,
We are now working on this issue. We will fix this issue soon and release a new update of plugin.
Regards
Forum: Plugins
In reply to: [MAS Videos] TMDB API SETUPHello @stig4321,
To use TMDB importer, please follow below steps.
1. Add API key from Appearence > Customize > MAS Videos > General.
2. Navigate to Tools Import > MAS Videos TMDB Import.
Ref: https://drive.google.com/file/d/100o9dicUeOFesncext4KNFc2QfJvcHB4/view
Regards
Forum: Plugins
In reply to: [MAS Videos] TMDb import to existing movieHello @earl_d,
Thank you for trying out our plugin. We have CSV importer in our plugin. You can use this to migrate your existing movie data. Please check documentation here : https://docs.madrasthemes.com/masvideos/topics/getting-started/set-up-movies/movie-csv-importer-and-exporter/
We also have TMDB importer in our plugin.
Regards
Forum: Plugins
In reply to: [MAS Videos] MAS Video Pages do not workHello @iambatmanyourdad,
Can you please explain which theme you are using ? Please activate default theme Twenty Twenty and check.
Regards
Forum: Plugins
In reply to: [MAS Videos] MAS Video Pages do not workHello @iambatmanyourdad,
Please make sure you assigned created movies page at Appearance > Customize > MAS Videos > Movies > Movies Page.
You can check our documentation here : https://docs.madrasthemes.com/masvideos/
Regards
Forum: Plugins
In reply to: [MAS Videos] MAS Video Pages do not workHello @iambatmanyourdad,
Thank you for trying out our plugin. 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] TMDB API SETUPHello @amined,
Thank you for reaching us. You can add API key from Appearence > Customize > MAS Videos > General.
Regards
Forum: Plugins
In reply to: [MAS Videos] Image disappear when hoverHello @rafaelakio,
Thank you for reaching us. There is JS errors in your site which caused the issue during image hover. The image hover feature uses jQuery. Can you fix this issue and test ?
Ref : https://drive.google.com/file/d/1w_GRd5NVOyoVFAAZtF8EJNlKxKGeXUXC/view
Regards
Forum: Plugins
In reply to: [MAS Videos] Video playlistHello @rafaelakio,
Thank you for reaching us. We will check this issue and get back to you as soon as possible.
Regards