Plugin Directory

Changeset 3233143


Ignore:
Timestamp:
02/01/2025 03:21:52 PM (6 weeks ago)
Author:
lushkant
Message:

Update to version 0.25.0 from GitHub

Location:
really-simple-featured-video
Files:
12 added
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • really-simple-featured-video/tags/0.25.0/includes/Compatibility/Themes/ThirdParty/Flatsome/class-compatibility.php

    r3232844 r3233143  
    8585            );
    8686        }
     87
     88        add_filter( 'woocommerce_locate_template', array( $this, 'override_woocommerce_template_part' ), 10, 3 );
     89    }
     90
     91    /**
     92     * Overrides Woo templates with available ones.
     93     *
     94     * @param string $template Template path absolute url.
     95     * @param string $template_name Template name.
     96     * @param string $template_path Template path.
     97     * @return string
     98     */
     99    public function override_woocommerce_template_part( $template, $template_name, $template_path ) {
     100        $template_directory = untrailingslashit( plugin_dir_path( __FILE__ ) ) . '/templates/';
     101        $path               = $template_directory . $template_name;
     102        return file_exists( $path ) ? $path : $template;
    87103    }
    88104}
  • really-simple-featured-video/tags/0.25.0/includes/Compatibility/class-theme-provider.php

    r3232844 r3233143  
    130130                    'file_source' => RSFV_PLUGIN_DIR . 'includes/Compatibility/Themes/ThirdParty/Flatsome/class-compatibility.php',
    131131                    'class'       => 'RSFV\Compatibility\Themes\ThirdParty\Flatsome\Compatibility',
     132                ),
     133                'dt-the7'           => array(
     134                    'title'       => __( 'The7', 'rsfv' ),
     135                    'file_source' => RSFV_PLUGIN_DIR . 'includes/Compatibility/Themes/ThirdParty/The7/class-compatibility.php',
     136                    'class'       => 'RSFV\Compatibility\Themes\ThirdParty\The7\Compatibility',
    132137                ),
    133138            )
  • really-simple-featured-video/tags/0.25.0/languages/rsfv.pot

    r3232852 r3233143  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Really Simple Featured Video 0.23.0\n"
     5"Project-Id-Version: Really Simple Featured Video 0.25.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/really-simple-featured-video\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-01-31T18:19:21+00:00\n"
     12"POT-Creation-Date: 2025-02-01T15:19:36+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
     
    181181msgstr ""
    182182
    183 #: includes/Compatibility/class-theme-provider.php:176
     183#: includes/Compatibility/class-theme-provider.php:134
     184msgid "The7"
     185msgstr ""
     186
     187#: includes/Compatibility/class-theme-provider.php:181
    184188msgid "Failed at registration"
    185189msgstr ""
    186190
    187 #: includes/Compatibility/class-theme-provider.php:177
     191#: includes/Compatibility/class-theme-provider.php:182
    188192msgid "Unregistered"
    189193msgstr ""
    190194
    191 #: includes/Compatibility/class-theme-provider.php:213
     195#: includes/Compatibility/class-theme-provider.php:218
    192196msgid "Disabled (Legacy)"
    193197msgstr ""
    194198
    195 #: includes/Compatibility/class-theme-provider.php:214
     199#: includes/Compatibility/class-theme-provider.php:219
    196200msgid "Auto (Do it for me)"
    197201msgstr ""
    198202
    199 #: includes/Compatibility/class-theme-provider.php:243
     203#: includes/Compatibility/class-theme-provider.php:248
    200204msgid "OceanWP (PRO)"
    201205msgstr ""
    202206
    203 #: includes/Compatibility/class-theme-provider.php:244
     207#: includes/Compatibility/class-theme-provider.php:249
    204208msgid "Jupiter X (PRO)"
    205209msgstr ""
    206210
    207 #: includes/Compatibility/class-theme-provider.php:245
     211#: includes/Compatibility/class-theme-provider.php:250
    208212msgid "Flatsome (PRO)"
    209213msgstr ""
    210214
    211 #: includes/Compatibility/class-theme-provider.php:246
     215#: includes/Compatibility/class-theme-provider.php:251
    212216msgid "Wellco (PRO)"
    213217msgstr ""
    214218
    215 #: includes/Compatibility/class-theme-provider.php:247
     219#: includes/Compatibility/class-theme-provider.php:252
    216220msgid "Avanam (PRO)"
    217221msgstr ""
    218222
    219 #: includes/Compatibility/class-theme-provider.php:248
     223#: includes/Compatibility/class-theme-provider.php:253
    220224msgid "Divi Builder (PRO)"
    221225msgstr ""
    222226
    223 #: includes/Compatibility/class-theme-provider.php:249
     227#: includes/Compatibility/class-theme-provider.php:254
    224228msgid "Avada (PRO)"
    225229msgstr ""
    226230
    227 #: includes/Compatibility/class-theme-provider.php:250
     231#: includes/Compatibility/class-theme-provider.php:255
    228232msgid "Konte (PRO)"
    229233msgstr ""
    230234
    231 #: includes/Compatibility/class-theme-provider.php:251
     235#: includes/Compatibility/class-theme-provider.php:256
    232236msgid "Lay (PRO)"
    233237msgstr ""
  • really-simple-featured-video/tags/0.25.0/readme.txt

    r3232852 r3233143  
    44Requires PHP: 8.0
    55Tested up to: 6.7.1
    6 Stable tag: 0.24.0
     6Stable tag: 0.25.0
    77Tags: video, featured video, woocommerce, product video, video embed
    88License: GPLv2
     
    113113
    114114== Changelog ==
     115
     116= 0.25.0 =
     117- New: Added support for The7 and respective theme compatibility engine
     118- Fix: Flatsome theme compatibility issues at Woo Single Product Gallery
     119- Improvement: Updated translation files
     120- Improvement: Other minor changes
    115121
    116122= 0.24.0 =
  • really-simple-featured-video/tags/0.25.0/really-simple-featured-video.php

    r3232852 r3233143  
    44 * Plugin URI:  https://jetixwp.com/plugins/really-simple-featured-video
    55 * Description: Adds support for Featured Video to WordPress posts, pages & WooCommerce products.
    6  * Version:     0.24.0
     6 * Version:     0.25.0
    77 * Author:      JetixWP Plugins
    88 * Author URI:  https://jetixwp.com
     
    1919defined( 'ABSPATH' ) || exit;
    2020
    21 define( 'RSFV_VERSION', '0.24.0' );
     21define( 'RSFV_VERSION', '0.25.0' );
    2222define( 'RSFV_PLUGIN_FILE', __FILE__ );
    2323define( 'RSFV_PLUGIN_URL', plugin_dir_url( RSFV_PLUGIN_FILE ) );
  • really-simple-featured-video/trunk/includes/Compatibility/Themes/ThirdParty/Flatsome/class-compatibility.php

    r3232844 r3233143  
    8585            );
    8686        }
     87
     88        add_filter( 'woocommerce_locate_template', array( $this, 'override_woocommerce_template_part' ), 10, 3 );
     89    }
     90
     91    /**
     92     * Overrides Woo templates with available ones.
     93     *
     94     * @param string $template Template path absolute url.
     95     * @param string $template_name Template name.
     96     * @param string $template_path Template path.
     97     * @return string
     98     */
     99    public function override_woocommerce_template_part( $template, $template_name, $template_path ) {
     100        $template_directory = untrailingslashit( plugin_dir_path( __FILE__ ) ) . '/templates/';
     101        $path               = $template_directory . $template_name;
     102        return file_exists( $path ) ? $path : $template;
    87103    }
    88104}
  • really-simple-featured-video/trunk/includes/Compatibility/class-theme-provider.php

    r3232844 r3233143  
    130130                    'file_source' => RSFV_PLUGIN_DIR . 'includes/Compatibility/Themes/ThirdParty/Flatsome/class-compatibility.php',
    131131                    'class'       => 'RSFV\Compatibility\Themes\ThirdParty\Flatsome\Compatibility',
     132                ),
     133                'dt-the7'           => array(
     134                    'title'       => __( 'The7', 'rsfv' ),
     135                    'file_source' => RSFV_PLUGIN_DIR . 'includes/Compatibility/Themes/ThirdParty/The7/class-compatibility.php',
     136                    'class'       => 'RSFV\Compatibility\Themes\ThirdParty\The7\Compatibility',
    132137                ),
    133138            )
  • really-simple-featured-video/trunk/languages/rsfv.pot

    r3232852 r3233143  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Really Simple Featured Video 0.23.0\n"
     5"Project-Id-Version: Really Simple Featured Video 0.25.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/really-simple-featured-video\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-01-31T18:19:21+00:00\n"
     12"POT-Creation-Date: 2025-02-01T15:19:36+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
     
    181181msgstr ""
    182182
    183 #: includes/Compatibility/class-theme-provider.php:176
     183#: includes/Compatibility/class-theme-provider.php:134
     184msgid "The7"
     185msgstr ""
     186
     187#: includes/Compatibility/class-theme-provider.php:181
    184188msgid "Failed at registration"
    185189msgstr ""
    186190
    187 #: includes/Compatibility/class-theme-provider.php:177
     191#: includes/Compatibility/class-theme-provider.php:182
    188192msgid "Unregistered"
    189193msgstr ""
    190194
    191 #: includes/Compatibility/class-theme-provider.php:213
     195#: includes/Compatibility/class-theme-provider.php:218
    192196msgid "Disabled (Legacy)"
    193197msgstr ""
    194198
    195 #: includes/Compatibility/class-theme-provider.php:214
     199#: includes/Compatibility/class-theme-provider.php:219
    196200msgid "Auto (Do it for me)"
    197201msgstr ""
    198202
    199 #: includes/Compatibility/class-theme-provider.php:243
     203#: includes/Compatibility/class-theme-provider.php:248
    200204msgid "OceanWP (PRO)"
    201205msgstr ""
    202206
    203 #: includes/Compatibility/class-theme-provider.php:244
     207#: includes/Compatibility/class-theme-provider.php:249
    204208msgid "Jupiter X (PRO)"
    205209msgstr ""
    206210
    207 #: includes/Compatibility/class-theme-provider.php:245
     211#: includes/Compatibility/class-theme-provider.php:250
    208212msgid "Flatsome (PRO)"
    209213msgstr ""
    210214
    211 #: includes/Compatibility/class-theme-provider.php:246
     215#: includes/Compatibility/class-theme-provider.php:251
    212216msgid "Wellco (PRO)"
    213217msgstr ""
    214218
    215 #: includes/Compatibility/class-theme-provider.php:247
     219#: includes/Compatibility/class-theme-provider.php:252
    216220msgid "Avanam (PRO)"
    217221msgstr ""
    218222
    219 #: includes/Compatibility/class-theme-provider.php:248
     223#: includes/Compatibility/class-theme-provider.php:253
    220224msgid "Divi Builder (PRO)"
    221225msgstr ""
    222226
    223 #: includes/Compatibility/class-theme-provider.php:249
     227#: includes/Compatibility/class-theme-provider.php:254
    224228msgid "Avada (PRO)"
    225229msgstr ""
    226230
    227 #: includes/Compatibility/class-theme-provider.php:250
     231#: includes/Compatibility/class-theme-provider.php:255
    228232msgid "Konte (PRO)"
    229233msgstr ""
    230234
    231 #: includes/Compatibility/class-theme-provider.php:251
     235#: includes/Compatibility/class-theme-provider.php:256
    232236msgid "Lay (PRO)"
    233237msgstr ""
  • really-simple-featured-video/trunk/readme.txt

    r3232852 r3233143  
    44Requires PHP: 8.0
    55Tested up to: 6.7.1
    6 Stable tag: 0.24.0
     6Stable tag: 0.25.0
    77Tags: video, featured video, woocommerce, product video, video embed
    88License: GPLv2
     
    113113
    114114== Changelog ==
     115
     116= 0.25.0 =
     117- New: Added support for The7 and respective theme compatibility engine
     118- Fix: Flatsome theme compatibility issues at Woo Single Product Gallery
     119- Improvement: Updated translation files
     120- Improvement: Other minor changes
    115121
    116122= 0.24.0 =
  • really-simple-featured-video/trunk/really-simple-featured-video.php

    r3232852 r3233143  
    44 * Plugin URI:  https://jetixwp.com/plugins/really-simple-featured-video
    55 * Description: Adds support for Featured Video to WordPress posts, pages & WooCommerce products.
    6  * Version:     0.24.0
     6 * Version:     0.25.0
    77 * Author:      JetixWP Plugins
    88 * Author URI:  https://jetixwp.com
     
    1919defined( 'ABSPATH' ) || exit;
    2020
    21 define( 'RSFV_VERSION', '0.24.0' );
     21define( 'RSFV_VERSION', '0.25.0' );
    2222define( 'RSFV_PLUGIN_FILE', __FILE__ );
    2323define( 'RSFV_PLUGIN_URL', plugin_dir_url( RSFV_PLUGIN_FILE ) );
Note: See TracChangeset for help on using the changeset viewer.