Plugin Directory

Changeset 3343231


Ignore:
Timestamp:
08/12/2025 02:15:21 AM (7 months ago)
Author:
michaelbourne
Message:

Version 1.5.4

Location:
wp-commerce7/trunk
Files:
1 deleted
16 edited

Legend:

Unmodified
Added
Removed
  • wp-commerce7/trunk/README.txt

    r3314041 r3343231  
    44Tags: commerce7
    55Requires at least: 6.0
    6 Tested up to: 6.8.1
    7 Stable tag: 1.5.3
     6Tested up to: 6.8
     7Stable tag: 1.5.4
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
     
    7272
    7373== Changelog ==
     74
     75= 1.5.4 =
     76* Fix: Gutenberg block settings for old beta frontend
     77* Fix: Login widget redirect path on V2 frontend
     78* Fix: Club Selector block conflict with Oxygen page builder front end edit mode
    7479
    7580= 1.5.3 =
  • wp-commerce7/trunk/commerce7-for-wordpress.php

    r3314041 r3343231  
    1212 * Plugin Name: Commerce7 for WordPress
    1313 * Description: Integrate Commerce7 functionality into your WordPress site easily
    14  * Version: 1.5.3
     14 * Version: 1.5.4
    1515 * Author: URSA6 & 5forests
    1616 * Author URI: https://5forests.com
     
    1818 * Requires at least: 6.0
    1919 * Tested up to: 6.8
    20  * Stable tag: 1.5.3
     20 * Stable tag: 1.5.4
    2121 * Requires PHP: 7.4
    2222 * License: GPL3
     
    2828 * Author: Michael Bourne
    2929 * -----
    30  * Last Modified: Wednesday, June 18th 2025, 11:25:35 am
     30 * Last Modified: Tuesday, August 5th 2025, 9:23:42 pm
    3131 * Modified By: Michael Bourne
    3232 * -----
     
    4848defined( 'C7WP_ROOT' ) || define( 'C7WP_ROOT', __DIR__ );
    4949defined( 'C7WP_URI' ) || define( 'C7WP_URI', plugin_dir_url( __FILE__ ) );
    50 defined( 'C7WP_VERSION' ) || define( 'C7WP_VERSION', '1.5.3' );
     50defined( 'C7WP_VERSION' ) || define( 'C7WP_VERSION', '1.5.4' );
    5151if ( ! defined( 'C7WP_NOTICES_URL' ) || C7WP_NOTICES_URL !== 'https://c7wp.com/notices.json' ) {
    5252    define( 'C7WP_NOTICES_URL', 'https://c7wp.com/notices.json' );
  • wp-commerce7/trunk/includes/gutenberg/blocks-v2/form/c7wp-form.js

    r3167363 r3343231  
    1313    registerBlockType( 'c7wp/form', {
    1414        title: __( 'Custom Form' ), // The title of block in editor.
    15         description: __( 'Displays a Commerce7 custom form. These can be built in the Marketing tab of the Commerce7 CRM.' ),
     15        description: __( 'Displays a Commerce7 custom form. These can be built in the Website tab of the Commerce7 CRM.' ),
    1616        icon: iconEl,
    1717        category: 'commerce7', // The category of block in editor.
    18         keywords: [ 'commerce7', 'form', 'contact' ],
     18        keywords: [ 'commerce7', 'form', 'custom', 'custom form','contact' ],
    1919        example: {},
    2020        attributes: {
  • wp-commerce7/trunk/includes/gutenberg/blocks-v2/loginform/c7wp-loginform.js

    r3009702 r3343231  
    2929        edit: function( props ) {
    3030
    31             function updateData( event ) {
    32                 props.setAttributes( { data: event.target.value } );
     31            function updateData( value ) {
     32                props.setAttributes( { data: value } );
    3333            }
    3434
  • wp-commerce7/trunk/includes/gutenberg/blocks-v2/personalization/c7wp-personalization.js

    r3167363 r3343231  
    1313    registerBlockType( 'c7wp/personalization', {
    1414        title: __( 'Personalization Block' ), // The title of block in editor.
    15         description: __( 'Displays a Commerce7 personalization block. These are created in the Developer section inside Commerce7 and can be edited in the Marketing tab.' ),
     15        description: __( 'Displays a Commerce7 personalization block. These are created in the Developer section inside Commerce7 and can be edited in the Website tab.' ),
    1616        icon: iconEl,
    1717        category: 'commerce7', // The category of block in editor.
  • wp-commerce7/trunk/includes/gutenberg/blocks/buy/c7wp-buy.js

    r2377463 r3343231  
    2525        edit: function( props ) {
    2626
    27             function updateData( event ) {
    28                 props.setAttributes( { data: event.target.value } );
     27            function updateData( value ) {
     28                props.setAttributes( { data: value } );
    2929            }
    3030
  • wp-commerce7/trunk/includes/gutenberg/blocks/buyslug/c7wp-buyslug.js

    r2459276 r3343231  
    2525        edit: function( props ) {
    2626
    27             function updateData( event ) {
    28                 props.setAttributes( { data: event.target.value } );
     27            function updateData( value ) {
     28                props.setAttributes( { data: value } );
    2929            }
    3030
  • wp-commerce7/trunk/includes/gutenberg/blocks/collection/c7wp-collection.js

    r2377463 r3343231  
    2525        edit: function( props ) {
    2626
    27             function updateData( event ) {
    28                 props.setAttributes( { data: event.target.value } );
     27            function updateData( value ) {
     28                props.setAttributes( { data: value } );
    2929            }
    3030
  • wp-commerce7/trunk/includes/gutenberg/blocks/createaccount/c7wp-createaccount.js

    r2377463 r3343231  
    2626        edit: function( props ) {
    2727
    28             function updateData( event ) {
    29                 props.setAttributes( { data: event.target.value } );
     28            function updateData( value ) {
     29                props.setAttributes( { data: value } );
    3030            }
    3131
  • wp-commerce7/trunk/includes/gutenberg/blocks/form/c7wp-form.js

    r2377463 r3343231  
    2525        edit: function( props ) {
    2626
    27             function updateData( event ) {
    28                 props.setAttributes( { data: event.target.value } );
     27            function updateData( value ) {
     28                props.setAttributes( { data: value } );
    2929            }
    3030
  • wp-commerce7/trunk/includes/gutenberg/blocks/joinnow/c7wp-joinnow.js

    r2377463 r3343231  
    2525        edit: function( props ) {
    2626
    27             function updateData( event ) {
    28                 props.setAttributes( { data: event.target.value } );
     27            function updateData( value ) {
     28                props.setAttributes( { data: value } );
    2929            }
    3030
  • wp-commerce7/trunk/includes/gutenberg/blocks/loginform/c7wp-loginform.js

    r2377463 r3343231  
    2626        edit: function( props ) {
    2727
    28             function updateData( event ) {
    29                 props.setAttributes( { data: event.target.value } );
     28            function updateData( value ) {
     29                props.setAttributes( { data: value } );
    3030            }
    3131
  • wp-commerce7/trunk/includes/gutenberg/blocks/personalization/c7wp-personalization.js

    r2377463 r3343231  
    2525        edit: function( props ) {
    2626
    27             function updateData( event ) {
    28                 props.setAttributes( { data: event.target.value } );
     27            function updateData( value ) {
     28                props.setAttributes( { data: value } );
    2929            }
    3030
  • wp-commerce7/trunk/includes/gutenberg/blocks/quickshop/c7wp-quickshop.js

    r2377463 r3343231  
    2525        edit: function( props ) {
    2626
    27             function updateData( event ) {
    28                 props.setAttributes( { data: event.target.value } );
     27            function updateData( value ) {
     28                props.setAttributes( { data: value } );
    2929            }
    3030
  • wp-commerce7/trunk/includes/gutenberg/blocks/reservation/c7wp-reservation.js

    r2377463 r3343231  
    2525        edit: function( props ) {
    2626
    27             function updateData( event ) {
    28                 props.setAttributes( { data: event.target.value } );
     27            function updateData( value ) {
     28                props.setAttributes( { data: value } );
    2929            }
    3030
  • wp-commerce7/trunk/includes/gutenberg/load.php

    r3313519 r3343231  
    66 * Author: Michael Bourne
    77 * -----
    8  * Last Modified: Wednesday, June 4th 2025, 4:19:48 pm
     8 * Last Modified: Thursday, August 7th 2025, 9:42:01 pm
    99 * Modified By: Michael Bourne
    1010 * -----
     
    8787
    8888    // Register and enqueue frontend script if it exists
    89     if ( file_exists( C7WP_ROOT . '/includes/gutenberg/' . $frontend_js_path ) ) {
     89    if ( file_exists( C7WP_ROOT . '/includes/gutenberg/' . $frontend_js_path ) && empty( $_GET['ct_builder'] ) ) {
    9090        $frontend_script_handle = 'c7wp-' . $element . '-frontend';
    9191        wp_register_script(
Note: See TracChangeset for help on using the changeset viewer.