Plugin Directory

Changeset 3316959


Ignore:
Timestamp:
06/24/2025 11:57:56 AM (9 months ago)
Author:
Ecwid
Message:

Update to version 7.0.3 from GitHub

Location:
ecwid-shopping-cart
Files:
94 added
30 deleted
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ecwid-shopping-cart/tags/7.0.3/ecwid-shopping-cart.php

    r3312959 r3316959  
    66Text Domain: ecwid-shopping-cart
    77Author: Ecwid Ecommerce
    8 Version: 7.0.2
     8Version: 7.0.3
    99Author URI: https://ecwid.to/ecwid-site
    1010License: GPLv2 or later
  • ecwid-shopping-cart/tags/7.0.3/includes/gutenberg/class-ecwid-gutenberg.php

    r3223401 r3316959  
    5555
    5656    public function init_scripts() {
    57         wp_register_script( 'ecwid-gutenberg-store', ECWID_PLUGIN_URL . 'js/gutenberg/blocks.build.js', array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor' ), get_option( 'ecwid_plugin_version' ) );
     57        $asset_file = include_once ECWID_PLUGIN_DIR . 'js/gutenberg/build/index.asset.php';
     58
     59        wp_register_script(
     60            'ecwid-gutenberg-store',
     61            ECWID_PLUGIN_URL . 'js/gutenberg/build/index.js',
     62            $asset_file['dependencies'],
     63            get_option( 'ecwid_plugin_version' )
     64        );
    5865
    5966        wp_set_script_translations( 'ecwid-gutenberg-store', 'ecwid-shopping-cart', ECWID_PLUGIN_DIR . '/languages' );
     
    93100    public function enqueue_block_editor_assets() {
    94101        wp_enqueue_script( 'ecwid-gutenberg-store' );
    95         wp_enqueue_style( 'ecwid-gutenberg-block', ECWID_PLUGIN_URL . 'css/gutenberg/blocks.editor.build.css', array(), get_option( 'ecwid_plugin_version' ) );
     102        wp_enqueue_style( 'ecwid-gutenberg-block', ECWID_PLUGIN_URL . 'js/gutenberg/build/main.css', array(), get_option( 'ecwid_plugin_version' ) );
    96103
    97104        $locale_data = '';
     
    157164                'products'             => $this->_get_products_data(),
    158165                'hasCategories'        => $api->has_public_categories(),
    159                 'imagesUrl'            => ECWID_PLUGIN_URL . 'images/gutenberg/',
    160166                'isWidgetsScreen'      => get_current_screen()->id == 'widgets',
    161167                'scriptJsUrl'          => $scriptjs_url,
  • ecwid-shopping-cart/tags/7.0.3/includes/integrations/class-ecwid-integration-gutenberg.php

    r3269653 r3316959  
    6969
    7070    public function enqueue_block_editor_assets() {
    71 
    72         wp_enqueue_script( 'ecwid-gutenberg-store', ECWID_PLUGIN_URL . 'js/gutenberg/blocks.build.js', array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor' ) );
    73         wp_enqueue_style( 'ecwid-gutenberg-block', ECWID_PLUGIN_URL . 'css/gutenberg/blocks.editor.build.css' );
     71        $asset_file = include_once ECWID_PLUGIN_DIR . 'js/gutenberg/build/index.asset.php';
     72
     73        wp_register_script(
     74            'ecwid-gutenberg-store',
     75            ECWID_PLUGIN_URL . 'js/gutenberg/build/index.js',
     76            $asset_file['dependencies'],
     77            get_option( 'ecwid_plugin_version' )
     78        );
     79       
     80        wp_enqueue_style( 'ecwid-gutenberg-block', ECWID_PLUGIN_URL . 'js/gutenberg/build/main.css', array(), get_option( 'ecwid_plugin_version' ) );
    7481
    7582        $locale_data = '';
  • ecwid-shopping-cart/tags/7.0.3/readme.txt

    r3312959 r3316959  
    66Requires at least: 4.4
    77Tested up to: 6.8
    8 Stable tag: 7.0.2
     8Stable tag: 7.0.3
    99
    1010Powerful, easy to use ecommerce shopping cart for WordPress. Sell on Facebook and Instagram. iPhone & Android apps. Superb support.
     
    7676
    7777The plugin uses CDN services by AWS Cloudfront to speed up user stores. It is managed by the Ecwid Terms of Service and Privacy Policy and [AWS Customer Agreement](https://aws.amazon.com/agreement/).
    78 
    7978
    8079== Installation ==
     
    154153
    155154== Changelog ==
     155= 7.0.3 - Jun 24, 2025 =
     156- Internal improvements and minor fixes for Gutenberg ecommerce blocks.
     157
    156158= 7.0.2 - Jun 17, 2025 =
    157159- Fixed an issue where a "2" was incorrectly appended to page slugs when the "URLs without ID" feature was enabled.
  • ecwid-shopping-cart/trunk/ecwid-shopping-cart.php

    r3312959 r3316959  
    66Text Domain: ecwid-shopping-cart
    77Author: Ecwid Ecommerce
    8 Version: 7.0.2
     8Version: 7.0.3
    99Author URI: https://ecwid.to/ecwid-site
    1010License: GPLv2 or later
  • ecwid-shopping-cart/trunk/includes/gutenberg/class-ecwid-gutenberg.php

    r3223401 r3316959  
    5555
    5656    public function init_scripts() {
    57         wp_register_script( 'ecwid-gutenberg-store', ECWID_PLUGIN_URL . 'js/gutenberg/blocks.build.js', array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor' ), get_option( 'ecwid_plugin_version' ) );
     57        $asset_file = include_once ECWID_PLUGIN_DIR . 'js/gutenberg/build/index.asset.php';
     58
     59        wp_register_script(
     60            'ecwid-gutenberg-store',
     61            ECWID_PLUGIN_URL . 'js/gutenberg/build/index.js',
     62            $asset_file['dependencies'],
     63            get_option( 'ecwid_plugin_version' )
     64        );
    5865
    5966        wp_set_script_translations( 'ecwid-gutenberg-store', 'ecwid-shopping-cart', ECWID_PLUGIN_DIR . '/languages' );
     
    93100    public function enqueue_block_editor_assets() {
    94101        wp_enqueue_script( 'ecwid-gutenberg-store' );
    95         wp_enqueue_style( 'ecwid-gutenberg-block', ECWID_PLUGIN_URL . 'css/gutenberg/blocks.editor.build.css', array(), get_option( 'ecwid_plugin_version' ) );
     102        wp_enqueue_style( 'ecwid-gutenberg-block', ECWID_PLUGIN_URL . 'js/gutenberg/build/main.css', array(), get_option( 'ecwid_plugin_version' ) );
    96103
    97104        $locale_data = '';
     
    157164                'products'             => $this->_get_products_data(),
    158165                'hasCategories'        => $api->has_public_categories(),
    159                 'imagesUrl'            => ECWID_PLUGIN_URL . 'images/gutenberg/',
    160166                'isWidgetsScreen'      => get_current_screen()->id == 'widgets',
    161167                'scriptJsUrl'          => $scriptjs_url,
  • ecwid-shopping-cart/trunk/includes/integrations/class-ecwid-integration-gutenberg.php

    r3269653 r3316959  
    6969
    7070    public function enqueue_block_editor_assets() {
    71 
    72         wp_enqueue_script( 'ecwid-gutenberg-store', ECWID_PLUGIN_URL . 'js/gutenberg/blocks.build.js', array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor' ) );
    73         wp_enqueue_style( 'ecwid-gutenberg-block', ECWID_PLUGIN_URL . 'css/gutenberg/blocks.editor.build.css' );
     71        $asset_file = include_once ECWID_PLUGIN_DIR . 'js/gutenberg/build/index.asset.php';
     72
     73        wp_register_script(
     74            'ecwid-gutenberg-store',
     75            ECWID_PLUGIN_URL . 'js/gutenberg/build/index.js',
     76            $asset_file['dependencies'],
     77            get_option( 'ecwid_plugin_version' )
     78        );
     79       
     80        wp_enqueue_style( 'ecwid-gutenberg-block', ECWID_PLUGIN_URL . 'js/gutenberg/build/main.css', array(), get_option( 'ecwid_plugin_version' ) );
    7481
    7582        $locale_data = '';
  • ecwid-shopping-cart/trunk/readme.txt

    r3312959 r3316959  
    66Requires at least: 4.4
    77Tested up to: 6.8
    8 Stable tag: 7.0.2
     8Stable tag: 7.0.3
    99
    1010Powerful, easy to use ecommerce shopping cart for WordPress. Sell on Facebook and Instagram. iPhone & Android apps. Superb support.
     
    7676
    7777The plugin uses CDN services by AWS Cloudfront to speed up user stores. It is managed by the Ecwid Terms of Service and Privacy Policy and [AWS Customer Agreement](https://aws.amazon.com/agreement/).
    78 
    7978
    8079== Installation ==
     
    154153
    155154== Changelog ==
     155= 7.0.3 - Jun 24, 2025 =
     156- Internal improvements and minor fixes for Gutenberg ecommerce blocks.
     157
    156158= 7.0.2 - Jun 17, 2025 =
    157159- Fixed an issue where a "2" was incorrectly appended to page slugs when the "URLs without ID" feature was enabled.
Note: See TracChangeset for help on using the changeset viewer.