Plugin Directory

Changeset 3348228


Ignore:
Timestamp:
08/21/2025 03:19:27 PM (7 months ago)
Author:
galaxyweblinks
Message:

Updated plugin

Location:
video-playlist-for-youtube
Files:
54 added
3 edited

Legend:

Unmodified
Added
Removed
  • video-playlist-for-youtube/trunk/readme.txt

    r3284630 r3348228  
    77Tested up to: 6.8
    88Requires PHP: 7.4
    9 Stable tag: 6.7
     9Stable tag: 6.7.1
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3737* Create unlimited Video playlists.
    3838
     39= Video Playlist For YouTube Pro =
     40
     41[__Video Playlist For YouTube Pro__](https://wp-plugins.galaxyweblinks.com/product/video-playlist-for-youtube-pro) is the ultimate tool for content creators, marketers, educators, and anyone looking to present their video content professionally and effectively. Elevate your website with dynamic, engaging video experiences that captivate your audience and keep them coming back for more!
     42
     43Using this feature, the user can create unlimited video playlists using embedded custom YouTube/Wistia video URLs. Users can add the title and description for each video and arrange them in any order as per their requirements. They can also set playlist width and height, enable autoplay, and display video length.
     44
     45= With the Pro version, you can now enjoy the following additional features: =
     46
     47* Create unlimited YouTube/Wistia video playlists.
     48
     49
    3950Here’s a link to the documentation for the plugin. This will help you learn more about its features and how to use it.
    4051<strong>[Demo](https://wp-plugins.galaxyweblinks.com/wp-plugins/video-playlist-for-youtube/demo)</strong> | <strong>[Documentation](https://wp-plugins.galaxyweblinks.com/wp-plugins/video-playlist-for-youtube/doc)</strong>
     52
    4153
    4254For any feedback or queries regarding this plugin, please contact our [Support team](https://wp-plugins.galaxyweblinks.com/contact/).
     
    104116== Changelog ==
    105117
     118= 6.7.1 =
     119- Stable Release
     120
    106121= 6.7 =
    107122- Stable Release
     
    151166
    152167== Upgrade Notice ==
     168
     169= 6.7.1 =
     170- Stable Release
    153171
    154172= 6.7 =
  • video-playlist-for-youtube/trunk/video-playlist-ytb-plugin.php

    r3284630 r3348228  
    44 * Plugin URI: https://wordpress.org/plugins/video-playlist-for-youtube
    55 * Description: It is a very nifty responsive video playlist for youtube that helps you display youtube channels and videos on your website. By using this plugin you can create unlimited playlist while setting up many options and arrange them in any order using drag n drop features.
    6  * Version: 6.7
     6 * Version: 6.7.1
    77 * Author: Galaxy Weblinks
    88 * Author URI: https://www.galaxyweblinks.com/
     
    5454function vpfu_vplay_add_menu()
    5555{
     56    if ( ! defined( 'VPFY_VPLAYLIST_PRO_ACTIVE' ) ) {
    5657    add_menu_page('video playlist', __('Video Playlist', 'video-playlist-for-youtube'), 'manage_options', 'edit.php?post_type=vid_playlist_ytub', NULL);
    5758    add_submenu_page('edit.php?post_type=vid_playlist_ytub', 'settings', __('Settings', 'video-playlist-for-youtube'), 'manage_options', 'vpfy_settings_menu', 'vpfy_submenu_settings_page');
    5859    add_action('admin_init', 'vpfyt_settings_api_forytub');
     60    }
    5961}
    6062/*Register setting api*/
  • video-playlist-for-youtube/trunk/vpfy-settings-pg.php

    r3213918 r3348228  
    3232
    3333        <h2 class="nav-tab-wrapper">
    34             <a href="<?php echo esc_attr($dashboard);  ?>" class="nav-tab <?php echo $_GET['tab'] == '' ? 'nav-tab-active' : ''; ?>"><?php esc_attr_e('Dashboard', 'video-playlist-for-youtube'); ?></a>
    35             <a href="<?php echo esc_attr($settings); ?>" class="nav-tab <?php echo $_GET['tab'] == 'settings' ? 'nav-tab-active' : ''; ?>"><?php esc_attr_e('General Settings', 'video-playlist-for-youtube'); ?></a>
    36             <a href="<?php echo esc_attr($api); ?>" class="nav-tab <?php echo $_GET['tab'] == 'api' ? 'nav-tab-active' : ''; ?>"><?php esc_attr_e('YouTube API', 'video-playlist-for-youtube'); ?></a>
    37             <a href="<?php echo esc_attr($help); ?>" class="nav-tab <?php echo $_GET['tab'] == 'help' ? 'nav-tab-active' : ''; ?>"><?php esc_attr_e('Help/Usage', 'video-playlist-for-youtube'); ?></a>
     34            <a href="<?php echo esc_attr($dashboard);  ?>" class="nav-tab <?php echo (!isset($_GET['tab']) || $_GET['tab'] == 'dashboard' ) ? 'nav-tab-active' : ''; ?>"><?php esc_attr_e('Dashboard', 'video-playlist-for-youtube'); ?></a>
     35            <a href="<?php echo esc_attr($settings); ?>" class="nav-tab <?php echo (isset($_GET['tab']) && $_GET['tab'] == 'settings' ) ? 'nav-tab-active' : ''; ?>"><?php esc_attr_e('General Settings', 'video-playlist-for-youtube'); ?></a>
     36            <a href="<?php echo esc_attr($api); ?>" class="nav-tab <?php echo (isset($_GET['tab']) && $_GET['tab'] == 'api' ) ? 'nav-tab-active' : ''; ?>"><?php esc_attr_e('YouTube API', 'video-playlist-for-youtube'); ?></a>
     37            <a href="<?php echo esc_attr($help); ?>" class="nav-tab <?php echo (isset($_GET['tab']) && $_GET['tab'] == 'help' ) ? 'nav-tab-active' : ''; ?>"><?php esc_attr_e('Help/Usage', 'video-playlist-for-youtube'); ?></a>
    3838        </h2>
    3939
Note: See TracChangeset for help on using the changeset viewer.