Changeset 3343231
- Timestamp:
- 08/12/2025 02:15:21 AM (7 months ago)
- Location:
- wp-commerce7/trunk
- Files:
-
- 1 deleted
- 16 edited
-
README.txt (modified) (2 diffs)
-
commerce7-for-wordpress.php (modified) (4 diffs)
-
includes/beaverbuilder/collectionlist/default.php (deleted)
-
includes/gutenberg/blocks-v2/form/c7wp-form.js (modified) (1 diff)
-
includes/gutenberg/blocks-v2/loginform/c7wp-loginform.js (modified) (1 diff)
-
includes/gutenberg/blocks-v2/personalization/c7wp-personalization.js (modified) (1 diff)
-
includes/gutenberg/blocks/buy/c7wp-buy.js (modified) (1 diff)
-
includes/gutenberg/blocks/buyslug/c7wp-buyslug.js (modified) (1 diff)
-
includes/gutenberg/blocks/collection/c7wp-collection.js (modified) (1 diff)
-
includes/gutenberg/blocks/createaccount/c7wp-createaccount.js (modified) (1 diff)
-
includes/gutenberg/blocks/form/c7wp-form.js (modified) (1 diff)
-
includes/gutenberg/blocks/joinnow/c7wp-joinnow.js (modified) (1 diff)
-
includes/gutenberg/blocks/loginform/c7wp-loginform.js (modified) (1 diff)
-
includes/gutenberg/blocks/personalization/c7wp-personalization.js (modified) (1 diff)
-
includes/gutenberg/blocks/quickshop/c7wp-quickshop.js (modified) (1 diff)
-
includes/gutenberg/blocks/reservation/c7wp-reservation.js (modified) (1 diff)
-
includes/gutenberg/load.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-commerce7/trunk/README.txt
r3314041 r3343231 4 4 Tags: commerce7 5 5 Requires at least: 6.0 6 Tested up to: 6.8 .17 Stable tag: 1.5. 36 Tested up to: 6.8 7 Stable tag: 1.5.4 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html … … 72 72 73 73 == 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 74 79 75 80 = 1.5.3 = -
wp-commerce7/trunk/commerce7-for-wordpress.php
r3314041 r3343231 12 12 * Plugin Name: Commerce7 for WordPress 13 13 * Description: Integrate Commerce7 functionality into your WordPress site easily 14 * Version: 1.5. 314 * Version: 1.5.4 15 15 * Author: URSA6 & 5forests 16 16 * Author URI: https://5forests.com … … 18 18 * Requires at least: 6.0 19 19 * Tested up to: 6.8 20 * Stable tag: 1.5. 320 * Stable tag: 1.5.4 21 21 * Requires PHP: 7.4 22 22 * License: GPL3 … … 28 28 * Author: Michael Bourne 29 29 * ----- 30 * Last Modified: Wednesday, June 18th 2025, 11:25:35 am30 * Last Modified: Tuesday, August 5th 2025, 9:23:42 pm 31 31 * Modified By: Michael Bourne 32 32 * ----- … … 48 48 defined( 'C7WP_ROOT' ) || define( 'C7WP_ROOT', __DIR__ ); 49 49 defined( 'C7WP_URI' ) || define( 'C7WP_URI', plugin_dir_url( __FILE__ ) ); 50 defined( 'C7WP_VERSION' ) || define( 'C7WP_VERSION', '1.5. 3' );50 defined( 'C7WP_VERSION' ) || define( 'C7WP_VERSION', '1.5.4' ); 51 51 if ( ! defined( 'C7WP_NOTICES_URL' ) || C7WP_NOTICES_URL !== 'https://c7wp.com/notices.json' ) { 52 52 define( 'C7WP_NOTICES_URL', 'https://c7wp.com/notices.json' ); -
wp-commerce7/trunk/includes/gutenberg/blocks-v2/form/c7wp-form.js
r3167363 r3343231 13 13 registerBlockType( 'c7wp/form', { 14 14 title: __( 'Custom Form' ), // The title of block in editor. 15 description: __( 'Displays a Commerce7 custom form. These can be built in the Marketingtab of the Commerce7 CRM.' ),15 description: __( 'Displays a Commerce7 custom form. These can be built in the Website tab of the Commerce7 CRM.' ), 16 16 icon: iconEl, 17 17 category: 'commerce7', // The category of block in editor. 18 keywords: [ 'commerce7', 'form', 'c ontact' ],18 keywords: [ 'commerce7', 'form', 'custom', 'custom form','contact' ], 19 19 example: {}, 20 20 attributes: { -
wp-commerce7/trunk/includes/gutenberg/blocks-v2/loginform/c7wp-loginform.js
r3009702 r3343231 29 29 edit: function( props ) { 30 30 31 function updateData( event) {32 props.setAttributes( { data: event.target.value } );31 function updateData( value ) { 32 props.setAttributes( { data: value } ); 33 33 } 34 34 -
wp-commerce7/trunk/includes/gutenberg/blocks-v2/personalization/c7wp-personalization.js
r3167363 r3343231 13 13 registerBlockType( 'c7wp/personalization', { 14 14 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 Marketingtab.' ),15 description: __( 'Displays a Commerce7 personalization block. These are created in the Developer section inside Commerce7 and can be edited in the Website tab.' ), 16 16 icon: iconEl, 17 17 category: 'commerce7', // The category of block in editor. -
wp-commerce7/trunk/includes/gutenberg/blocks/buy/c7wp-buy.js
r2377463 r3343231 25 25 edit: function( props ) { 26 26 27 function updateData( event) {28 props.setAttributes( { data: event.target.value } );27 function updateData( value ) { 28 props.setAttributes( { data: value } ); 29 29 } 30 30 -
wp-commerce7/trunk/includes/gutenberg/blocks/buyslug/c7wp-buyslug.js
r2459276 r3343231 25 25 edit: function( props ) { 26 26 27 function updateData( event) {28 props.setAttributes( { data: event.target.value } );27 function updateData( value ) { 28 props.setAttributes( { data: value } ); 29 29 } 30 30 -
wp-commerce7/trunk/includes/gutenberg/blocks/collection/c7wp-collection.js
r2377463 r3343231 25 25 edit: function( props ) { 26 26 27 function updateData( event) {28 props.setAttributes( { data: event.target.value } );27 function updateData( value ) { 28 props.setAttributes( { data: value } ); 29 29 } 30 30 -
wp-commerce7/trunk/includes/gutenberg/blocks/createaccount/c7wp-createaccount.js
r2377463 r3343231 26 26 edit: function( props ) { 27 27 28 function updateData( event) {29 props.setAttributes( { data: event.target.value } );28 function updateData( value ) { 29 props.setAttributes( { data: value } ); 30 30 } 31 31 -
wp-commerce7/trunk/includes/gutenberg/blocks/form/c7wp-form.js
r2377463 r3343231 25 25 edit: function( props ) { 26 26 27 function updateData( event) {28 props.setAttributes( { data: event.target.value } );27 function updateData( value ) { 28 props.setAttributes( { data: value } ); 29 29 } 30 30 -
wp-commerce7/trunk/includes/gutenberg/blocks/joinnow/c7wp-joinnow.js
r2377463 r3343231 25 25 edit: function( props ) { 26 26 27 function updateData( event) {28 props.setAttributes( { data: event.target.value } );27 function updateData( value ) { 28 props.setAttributes( { data: value } ); 29 29 } 30 30 -
wp-commerce7/trunk/includes/gutenberg/blocks/loginform/c7wp-loginform.js
r2377463 r3343231 26 26 edit: function( props ) { 27 27 28 function updateData( event) {29 props.setAttributes( { data: event.target.value } );28 function updateData( value ) { 29 props.setAttributes( { data: value } ); 30 30 } 31 31 -
wp-commerce7/trunk/includes/gutenberg/blocks/personalization/c7wp-personalization.js
r2377463 r3343231 25 25 edit: function( props ) { 26 26 27 function updateData( event) {28 props.setAttributes( { data: event.target.value } );27 function updateData( value ) { 28 props.setAttributes( { data: value } ); 29 29 } 30 30 -
wp-commerce7/trunk/includes/gutenberg/blocks/quickshop/c7wp-quickshop.js
r2377463 r3343231 25 25 edit: function( props ) { 26 26 27 function updateData( event) {28 props.setAttributes( { data: event.target.value } );27 function updateData( value ) { 28 props.setAttributes( { data: value } ); 29 29 } 30 30 -
wp-commerce7/trunk/includes/gutenberg/blocks/reservation/c7wp-reservation.js
r2377463 r3343231 25 25 edit: function( props ) { 26 26 27 function updateData( event) {28 props.setAttributes( { data: event.target.value } );27 function updateData( value ) { 28 props.setAttributes( { data: value } ); 29 29 } 30 30 -
wp-commerce7/trunk/includes/gutenberg/load.php
r3313519 r3343231 6 6 * Author: Michael Bourne 7 7 * ----- 8 * Last Modified: Wednesday, June 4th 2025, 4:19:48pm8 * Last Modified: Thursday, August 7th 2025, 9:42:01 pm 9 9 * Modified By: Michael Bourne 10 10 * ----- … … 87 87 88 88 // 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'] ) ) { 90 90 $frontend_script_handle = 'c7wp-' . $element . '-frontend'; 91 91 wp_register_script(
Note: See TracChangeset
for help on using the changeset viewer.