Plugin Directory

Changeset 2752363


Ignore:
Timestamp:
07/06/2022 06:02:35 AM (4 years ago)
Author:
themeparrot
Message:

release 1.1.1

Location:
extra-checkout-fields-for-woocommerce/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • extra-checkout-fields-for-woocommerce/trunk/App/Controllers/Admin/Settings.php

    r2638010 r2752363  
    283283
    284284           
    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']);
    287287           
    288288            $control = sanitize_text_field($_POST['ecffw-form-builder-control']);
  • extra-checkout-fields-for-woocommerce/trunk/App/Views/Admin/SettingsPage.php

    r2638010 r2752363  
    6363                            <form method="post" action="" enctype="multipart/form-data" style="display: inline; float: right;">
    6464                                <?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');?>"/>
    6666                                <textarea id="ecffw-form-builder-json" name="ecffw-form-builder-json" style="display: none;">
    6767                                    <?php
  • extra-checkout-fields-for-woocommerce/trunk/Assets/JS/ecffw-admin.js

    r2716612 r2752363  
    1414
    1515        event_listeners: function (formBuilder) {
    16             $(document).on("click", "#publish", function () {
     16            $(document).on("click", "#ecffw-save", function () {
    1717                $("#ecffw-form-builder-json").text(formBuilder.formData);
    1818            });
  • extra-checkout-fields-for-woocommerce/trunk/config.php

    r2638010 r2752363  
    11<?php
    22    // Required PHP Version
    3     define('ECFFW_REQUIRED_PHP_VERSION', 5.6);
     3    define('ECFFW_REQUIRED_PHP_VERSION', '5.6');
    44
    55    // Required WooCommerce Version
     
    3737
    3838    // 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  
    22/**
    33 * Plugin Name: Checkout Field Editor and Manager for WooCommerce
    4  * Plugin URI: https://www.themeparrot.com/
     4 * Plugin URI: https://themeparrot.com
    55 * Description: Helps to edit WooCommerce checkout fields, add custom checkout fields and more.
    6  * Version: 1.1.0
     6 * Version: 1.1.1
    77 * Author: Themeparrot
    8  * Author URI: https://themeparrot.com/
     8 * Author URI: https://themeparrot.com
    99 * Text Domain: extra-checkout-fields-for-woocommerce
    1010 * Domain Path: /i18n/languages
     
    2626
    2727// This plugin Version
    28 defined('ECFFW_PLUGIN_VERSION') or define('ECFFW_PLUGIN_VERSION', '1.1.0');
     28defined('ECFFW_PLUGIN_VERSION') or define('ECFFW_PLUGIN_VERSION', '1.1.1');
    2929
    3030require_once 'config.php'; // For define constants
  • extra-checkout-fields-for-woocommerce/trunk/i18n/languages/extra-checkout-fields-for-woocommerce.pot

    r2716612 r2752363  
    2020
    2121#. Plugin URI of the plugin
    22 msgid "https://www.themeparrot.com/"
     22msgid "https://themeparrot.com"
    2323msgstr ""
    2424
  • extra-checkout-fields-for-woocommerce/trunk/readme.txt

    r2716612 r2752363  
    11=== Checkout Field Editor and Manager for WooCommerce ===
    22Contributors: themeparrot
    3 Donate link: https://www.themeparrot.com
     3Donate link: https://themeparrot.com
    44Tags: 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
    55Requires at least: 4.9.0
    66Requires PHP: 5.6
    7 Tested up to: 5.9
    8 Stable tag: 1.1.0
     7Tested up to: 6.0
     8Stable tag: 1.1.1
    99License: GPLv3 or later
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    151151== Changelog ==
    152152
     153= 1.1.1 - 06/07/2022 =
     154* Fix - Fields not save correctly issue in checkout fields editor
     155* Improvement - Site urls
     156
    153157= 1.1.0 - 30/04/2022 =
    154158* Improvement - Form Builder UI
    155 * Check - Compatibility with WordPress 5.9 and WooCommerce 6.2
     159* Improvement - Compatibility with WordPress and WooCommerce
    156160
    157161= 1.0.2 - 01/12/2021 =
Note: See TracChangeset for help on using the changeset viewer.