Farook Ibrahim
Forum Replies Created
-
Forum: Plugins
In reply to: [MAS Videos] masvideos Widegets not wrokingHello @rightheme,
Thank you for trying out our plugin. 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] Drop-down double usernameHello @fesothe,
Thank you for trying out our plugin. Please update your “Display name” in My account page Account details section.
Regards
Forum: Plugins
In reply to: [MAS Videos] My Account / Videos | Messed Up.Hello @fesothe,
Thank you for trying out our plugin. We cannot able to reproduce this issue. Can you please share your error log ? If you purchased Vodi theme please reach our theme support.
Regards
Forum: Plugins
In reply to: [MAS Videos] The last update broke the websiteHello @craveiroraul,
Thank you for trying out our plugin. We cannot able to reproduce this issue. Your website url is not working. Can you please share your error log ?
Regards
- This reply was modified 4 years, 3 months ago by Farook Ibrahim.
Forum: Plugins
In reply to: [MAS Videos] Description/details not appearing after importHello @noddy159,
We fixed importer issues since v1.2.0. Please check now and let us know if you have any other questions.
Regards
Forum: Plugins
In reply to: [MAS Videos] Playlists in columnsHello @earl_d,
The issue is with double quote of above code. Can you please try below shortcode ?
[mas_movie_playlists columns="4"]
Regards
Forum: Plugins
In reply to: [MAS Videos] Profile formHello @vdominik19,
Thank you for trying out our plugin. To customize profile form you need to override form-edit-account.php file to child theme(yourtheme/masvideos/myaccount/form-edit-account.php). You can find this file at /plugins/masvideos/templates/myaccount/ directory.
Regards
Forum: Plugins
In reply to: [MAS Videos] How To Filter By Category?Hello @tacraw88,
Thank you for trying out our plugin. We have option to filter videos from specific categories in Videos Block. Please check here : https://drive.google.com/file/d/1cEdCmXq_E10_e09ep2IZMX-hCZ6Xokpy/view
Regards
Forum: Plugins
In reply to: [MAS Videos] Button playlist missingHello @legstle,
The above link is for single post however the playlist will only work for Custom Post Type video or movie.
Regards
Forum: Plugins
In reply to: [MAS Videos] Layout changeHello @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
Forum: Plugins
In reply to: [MAS Videos] Button playlist missingHello @legstle,
Thank you for trying out our plugin. The above page link is not working now. Can you please check ?
Regards
Forum: Plugins
In reply to: [MAS Videos] Description/details not appearing after importHello @noddy159,
Thank you for trying out our plugin.
1. Can you please explain which theme you are using ? Also please share screenshot of your movie edit page.
2. Sorry we does not have any option to import only hollywood or bollywood movies.
Regards
Forum: Plugins
In reply to: [MAS Videos] replace the registration and log in / log outHello @rafaelmazza,
Thank you for trying out our plugin. By default the newly registered user role as “contributor” in our plugin however you can use below code to change user role to “subscriber”. You can also change to any user role.
if ( ! function_exists( 'vodi_child_modify_new_user_data' ) ) { function vodi_child_modify_new_user_data( $args ) { $args['role'] = 'subscriber'; return $args; } } add_filter( 'masvideos_new_user_data', 'vodi_child_modify_new_user_data', 10 );
Regards
Forum: Plugins
In reply to: [MAS Videos] Playlists in columnsHello @earl_d,
Thank you for trying out our plugin. We cannot able to reproduce any issues with columns in “mas_movie_playlists” shortcode. Ref : https://drive.google.com/file/d/1WT6mXvL0WsLO331sIKYxAwevK1udOBlI/view
Regards
Forum: Plugins
In reply to: [MAS Videos] How do you sort by likes?Hello @jonathansingel,
Thank you for trying out our plugin. Our plugin does not have likes feature by default. You can use any third party likes plugin.
To add likes in sorting you can use below code.
if( ! function_exists( 'your_theme_child_custom_movies_catalog_ordering_args' ) ) { function your_theme_child_custom_movies_catalog_ordering_args( $args, $orderby, $order ) { if( $orderby == 'likes' ) { $args['meta_key'] = '_liked'; // @codingStandardsIgnoreLine $args['orderby'] = array( 'meta_value_num' => 'DESC', 'ID' => 'ASC', ); return $args; } return $args; } } add_filter( 'masvideos_get_movies_catalog_ordering_args', 'your_theme_child_custom_movies_catalog_ordering_args', 10, 3 ); if ( ! function_exists( 'your_theme_child_set_movies_catalog_orderby_options' ) ) { function your_theme_child_set_movies_catalog_orderby_options( $options ) { $options['likes'] = esc_html__( 'Likes', 'textdomain' ); return $options; } } add_filter( 'masvideos_default_movies_catalog_orderby_options', 'your_theme_child_set_movies_catalog_orderby_options', 10 );
Regards