Changeset 2752363
- Timestamp:
- 07/06/2022 06:02:35 AM (4 years ago)
- Location:
- extra-checkout-fields-for-woocommerce/trunk
- Files:
-
- 7 edited
-
App/Controllers/Admin/Settings.php (modified) (1 diff)
-
App/Views/Admin/SettingsPage.php (modified) (1 diff)
-
Assets/JS/ecffw-admin.js (modified) (1 diff)
-
config.php (modified) (2 diffs)
-
extra-checkout-fields-for-woocommerce.php (modified) (2 diffs)
-
i18n/languages/extra-checkout-fields-for-woocommerce.pot (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
extra-checkout-fields-for-woocommerce/trunk/App/Controllers/Admin/Settings.php
r2638010 r2752363 283 283 284 284 285 $settings['form_builder_editonadd'] = isset($_POST['ecffw-form-builder-editonadd']) ? true : false;286 $settings['form_builder_warning'] = isset($_POST['ecffw-form-builder-warning']) ? true : false;285 $settings['form_builder_editonadd'] = isset($_POST['ecffw-form-builder-editonadd']); 286 $settings['form_builder_warning'] = isset($_POST['ecffw-form-builder-warning']); 287 287 288 288 $control = sanitize_text_field($_POST['ecffw-form-builder-control']); -
extra-checkout-fields-for-woocommerce/trunk/App/Views/Admin/SettingsPage.php
r2638010 r2752363 63 63 <form method="post" action="" enctype="multipart/form-data" style="display: inline; float: right;"> 64 64 <?php wp_nonce_field(ECFFW_SETTINGS_KEY, 'ecffw_settings_nonce');?> 65 <input id=" save" name="save" class="button-primary" type="submit" value="<?php _e('Save Changes', 'extra-checkout-fields-for-woocommerce');?>"/>65 <input id="ecffw-save" name="save" class="button-primary" type="submit" value="<?php _e('Save Changes', 'extra-checkout-fields-for-woocommerce');?>"/> 66 66 <textarea id="ecffw-form-builder-json" name="ecffw-form-builder-json" style="display: none;"> 67 67 <?php -
extra-checkout-fields-for-woocommerce/trunk/Assets/JS/ecffw-admin.js
r2716612 r2752363 14 14 15 15 event_listeners: function (formBuilder) { 16 $(document).on("click", "# publish", function () {16 $(document).on("click", "#ecffw-save", function () { 17 17 $("#ecffw-form-builder-json").text(formBuilder.formData); 18 18 }); -
extra-checkout-fields-for-woocommerce/trunk/config.php
r2638010 r2752363 1 1 <?php 2 2 // Required PHP Version 3 define('ECFFW_REQUIRED_PHP_VERSION', 5.6);3 define('ECFFW_REQUIRED_PHP_VERSION', '5.6'); 4 4 5 5 // Required WooCommerce Version … … 37 37 38 38 // Pro plugin Url 39 define('ECFFW_PRO_PLUGIN_URL', 'https://themeparrot.com/ downloads/extra-checkout-field-editor-and-checkout-manager-for-woocommerce');39 define('ECFFW_PRO_PLUGIN_URL', 'https://themeparrot.com/checkout-field-editor-manager-for-woocommerce'); -
extra-checkout-fields-for-woocommerce/trunk/extra-checkout-fields-for-woocommerce.php
r2716618 r2752363 2 2 /** 3 3 * Plugin Name: Checkout Field Editor and Manager for WooCommerce 4 * Plugin URI: https:// www.themeparrot.com/4 * Plugin URI: https://themeparrot.com 5 5 * Description: Helps to edit WooCommerce checkout fields, add custom checkout fields and more. 6 * Version: 1.1. 06 * Version: 1.1.1 7 7 * Author: Themeparrot 8 * Author URI: https://themeparrot.com /8 * Author URI: https://themeparrot.com 9 9 * Text Domain: extra-checkout-fields-for-woocommerce 10 10 * Domain Path: /i18n/languages … … 26 26 27 27 // This plugin Version 28 defined('ECFFW_PLUGIN_VERSION') or define('ECFFW_PLUGIN_VERSION', '1.1. 0');28 defined('ECFFW_PLUGIN_VERSION') or define('ECFFW_PLUGIN_VERSION', '1.1.1'); 29 29 30 30 require_once 'config.php'; // For define constants -
extra-checkout-fields-for-woocommerce/trunk/i18n/languages/extra-checkout-fields-for-woocommerce.pot
r2716612 r2752363 20 20 21 21 #. Plugin URI of the plugin 22 msgid "https:// www.themeparrot.com/"22 msgid "https://themeparrot.com" 23 23 msgstr "" 24 24 -
extra-checkout-fields-for-woocommerce/trunk/readme.txt
r2716612 r2752363 1 1 === Checkout Field Editor and Manager for WooCommerce === 2 2 Contributors: themeparrot 3 Donate link: https:// www.themeparrot.com3 Donate link: https://themeparrot.com 4 4 Tags: woocommerce checkout field editor, woocommerce checkout manager, checkout field customizer, custom checkout field editor, custom woocommerce checkout fields editor, woocommerce easy checkout field editor, checkout field editor and manager for woocommerce, checkout page customizer, checkout fields customizer, checkout page builder, checkout form editor, checkout form builder 5 5 Requires at least: 4.9.0 6 6 Requires PHP: 5.6 7 Tested up to: 5.98 Stable tag: 1.1. 07 Tested up to: 6.0 8 Stable tag: 1.1.1 9 9 License: GPLv3 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 151 151 == Changelog == 152 152 153 = 1.1.1 - 06/07/2022 = 154 * Fix - Fields not save correctly issue in checkout fields editor 155 * Improvement - Site urls 156 153 157 = 1.1.0 - 30/04/2022 = 154 158 * Improvement - Form Builder UI 155 * Check - Compatibility with WordPress 5.9 and WooCommerce 6.2159 * Improvement - Compatibility with WordPress and WooCommerce 156 160 157 161 = 1.0.2 - 01/12/2021 =
Note: See TracChangeset
for help on using the changeset viewer.