Changeset 2441489
- Timestamp:
- 12/17/2020 12:49:51 PM (5 years ago)
- Location:
- quentn-wp/trunk
- Files:
-
- 1 added
- 5 edited
-
admin/js/quentn-elementor-integration-5.6.js (added)
-
admin/js/quentn-elementor-integration.js (modified) (2 diffs)
-
includes/class-quentn-wp-elementor-field-mapping.php (modified) (1 diff)
-
includes/class-quentn-wp.php (modified) (1 diff)
-
quentn-wp.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quentn-wp/trunk/admin/js/quentn-elementor-integration.js
r2437421 r2441489 1 jQuery( window ).on( 'elementor/frontend/init',function ( e, ep, fields, $ ) {1 (function ( e, ep, fields, $ ) { 2 2 var QuentnIntegration = { 3 3 fields: fields, … … 204 204 e.addControlView( 'Qntn_fields_map', QntnFieldsMap ); 205 205 206 } ( elementor, elementorPro, QntnMappableFields.fields, jQuery ));206 })( elementor, elementorPro, QntnMappableFields.fields, jQuery ); -
quentn-wp/trunk/includes/class-quentn-wp-elementor-field-mapping.php
r2327486 r2441489 44 44 public function enqueue() 45 45 { 46 wp_register_script( 'quentn.elementor.integration.js', QUENTN_WP_PLUGIN_URL . 'admin/js/quentn-elementor-integration.js', array(), '', true ); 47 wp_enqueue_script( 'quentn.elementor.integration.js' ); 46 $wp_version = get_bloginfo( 'version' ); 47 //Add different file for elementor integration for wordpress version equal or greater than 5.6 48 if ( version_compare( $wp_version, '5.6', '>=' ) ) { 49 wp_register_script( 'quentn.elementor.integration.js', QUENTN_WP_PLUGIN_URL . 'admin/js/quentn-elementor-integration-5.6.js', array(), '', true ); 50 wp_enqueue_script( 'quentn.elementor.integration.js' ); 51 } else { 52 wp_register_script( 'quentn.elementor.integration.js', QUENTN_WP_PLUGIN_URL . 'admin/js/quentn-elementor-integration.js', array(), '', true ); 53 wp_enqueue_script( 'quentn.elementor.integration.js' ); 54 } 48 55 49 56 $mappable_fields = $this->get_mappable_fields(); -
quentn-wp/trunk/includes/class-quentn-wp.php
r2437421 r2441489 75 75 $this->version = QUENTN_WP_VERSION; 76 76 } else { 77 $this->version = '1.1. 3';77 $this->version = '1.1.4'; 78 78 } 79 79 $this->plugin_name = 'quentn-wp'; -
quentn-wp/trunk/quentn-wp.php
r2437421 r2441489 17 17 * Plugin URI: https://docs.quentn.com/de/beta-quentn-wordpress-plugin/installieren-und-verbinden 18 18 * Description: This plugin allows you to restrict access to specific pages, create custom access links and create dynamic page countdowns. Optionally, you can connect your Quentn account to your WordPress installation to share contacts and manage access restrictions through Quentn. 19 * Version: 1.1. 319 * Version: 1.1.4 20 20 * Author: Quentn.com GmbH 21 21 * Author URI: https://quentn.com/ … … 35 35 define( "TABLE_QUENTN_RESTRICTIONS", 'qntn_restrictions' ); 36 36 define( "TABLE_QUENTN_USER_DATA", 'qntn_user_data' ); 37 define( 'QUENTN_WP_VERSION', '1.1. 3' );37 define( 'QUENTN_WP_VERSION', '1.1.4' ); 38 38 39 39 /** -
quentn-wp/trunk/readme.txt
r2437421 r2441489 3 3 Tags: Quentn, countdown, page restriction, email, elementor integration, email marketing tool, integration, email automation, marketing automation 4 4 Requires at least: 4.6.0 5 Tested up to: 5. 4.26 Stable tag: 1.1. 35 Tested up to: 5.6 6 Stable tag: 1.1.4 7 7 Requires PHP: 5.6.0 8 8 License: GPLv2 or later … … 66 66 67 67 == Changelog == 68 = 1.1.4 = 69 * Fix: Elementor integration for WordPress version 5.6. 70 68 71 = 1.1.3 = 69 * Fix: Load element integration file after elementor instance has been initiated.72 * Fix: Load elementor integration file after elementor instance has been initiated. 70 73 71 74 = 1.1.2 = … … 116 119 == Upgrade Notice == 117 120 121 = 1.1.4 = 122 Thanks for using Quentn Plugin! Please update the plugin to fix elementor integration for WordPress version 5.6. 123 118 124 = 1.1.3 = 119 125 Thanks for using Quentn Plugin! Please update the plugin to fix issue with load elementor PRO forms integration file.
Note: See TracChangeset
for help on using the changeset viewer.