Plugin Directory

Changeset 2846497


Ignore:
Timestamp:
01/11/2023 06:03:01 AM (3 years ago)
Author:
pieforms
Message:

1.4.12

Location:
pie-forms-for-wp/trunk
Files:
3 added
9 edited

Legend:

Unmodified
Added
Removed
  • pie-forms-for-wp/trunk/assets/css/form-builder.css

    r2840829 r2846497  
    949949  padding-bottom: 4px;
    950950}
     951
     952
     953
     954
     955/* checkout field */
     956.pie-forms-field-row.pie-forms-creditcard{
     957  margin-right: 10px;
     958  width: calc(100% - 5px);
     959  display: inline-block;
     960  padding: 10px 0px;
     961}
     962
     963.pie-forms-field-row.pie-forms-creditcard > .pie-field-creditcard , .pie-forms-field-row.pie-forms-cvv > .pie-field-cvv , .pie-forms-field-row.pie-forms-exp-date > .exp-date{
     964  margin: 20px 0px;
     965}
     966
     967.pie-forms-field-row.pie-forms-creditcard > .pie-forms-sub-label , .pie-forms-field-row.pie-forms-cvv > .pie-forms-sub-label , .pie-forms-field-row.pie-forms-exp-date > .pie-forms-sub-label{
     968  font-weight: 500;
     969  font-size: 15px;
     970}
     971
     972.pie-forms-field-row.pie-forms-cvv{
     973  margin-right: 10px;
     974  width: calc(100% - 5px);
     975  display: inline-block;
     976}
     977
     978.pie-forms-field-row.pie-forms-exp-date{
     979  margin-right: 10px;
     980  width: calc(100% - 5px);
     981  display: inline-block;
     982}
     983
     984.pie-forms-field-checkout{
     985  display: grid !important;
     986}
     987
     988.pie-forms-field-row.pie-forms-exp-date > .exp-date{
     989  display: flex;
     990}
     991
     992#authorize_year , #authorize_month{
     993  background: rgba(255,255,255,.5) !important;
     994  /* border-color: rgba(220,220,222,.75) !important; */
     995  box-shadow: inset 0 1px 2px rgba(0,0,0,.04) !important;
     996  color: rgba(44,51,56,.5) !important;
     997  margin: 5px 5px 5px 0px;
     998}
     999
     1000
  • pie-forms-for-wp/trunk/assets/css/front-end-form.css

    r2744995 r2846497  
    189189    justify-content: space-between;
    190190}
     191
     192
     193
     194/* checkout field */
     195
     196.pie-forms-field-row-creditcard {
     197    margin-right: 10px;
     198    margin-bottom: 20px;
     199    width: calc(100% - 5px);
     200    /* display: inline-block; */
     201}
     202
     203.pie-forms-field-row-cvv {
     204    margin-right: 10px;
     205    margin-bottom: 20px;
     206    width: calc(100% - 5px);
     207}
     208 
     209.exp-date-main {
     210    margin-right: 10px;
     211    margin-bottom: 20px;
     212    width: calc(100% - 5px);
     213    display: inline-block;
     214}
     215
     216.pie-forms-field-checkout {
     217    display: grid !important;
     218}
     219
     220.exp-date{
     221    display: flex;
     222}
     223
     224.pie-forms-field-row-exp_month , .pie-forms-field-row-exp_year {
     225    margin: 5px 5px 5px 0px;
     226    width: calc(15% - 5px);
     227}
     228
     229.pie-forms-field-row-exp_month > select , .pie-forms-field-row-exp_year > select {
     230        background-color: #ffffff;
     231        color: #666;
     232        border: 1px solid #ccc;
     233        border-radius: 3px;
     234  }
  • pie-forms-for-wp/trunk/includes/fields/paymentmultiple.php

    r2744995 r2846497  
    6161        $is_addon_activated = get_option('pieforms_manager_addon_paypal_payment_activated');
    6262        $is_addon_activated_stripe = get_option('pieforms_manager_addon_stripe_payment_activated');
     63        $is_addon_authorize_net = get_option('pieforms_manager_addon_authorizedotnet_activated');
     64
    6365       
    64         if(!Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-paypal-payment/pie-forms-for-wp-paypal-payment.php')  && !Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-stripe/pie-forms-for-wp-stripe.php') || $is_addon_activated == "Deactivated" && $is_addon_activated_stripe == "Deactivated"){
     66        if(!Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-paypal-payment/pie-forms-for-wp-paypal-payment.php')  && !Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-stripe/pie-forms-for-wp-stripe.php') && !Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-authorize-net/pie-forms-for-wp-authorize-net.php') || $is_addon_activated == "Deactivated" && $is_addon_activated_stripe == "Deactivated" && $is_addon_authorize_net == "Deactivated"){
    6567            $this->is_addon = true;
    6668            $this->is_pro   = true;
     
    327329            $currency  = !empty($form_data['pf_payments']['stripe']['currency']) ? $form_data['pf_payments']['stripe']['currency'] : '';
    328330        }
     331        if (Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-authorize-net/pie-forms-for-wp-authorize-net.php')){
     332            $currency  = !empty($form_data['pf_payments']['authorizedotnet']['currency']) ? $form_data['pf_payments']['authorizedotnet']['currency'] : '';
     333        }
    329334        if ( ! empty( $field_submit ) && ! empty( $field['choices'] ) ) {
    330335
     
    368373        $is_addon_activated         = get_option('pieforms_manager_addon_paypal_payment_activated');
    369374        $is_addon_activated_stripe  = get_option('pieforms_manager_addon_stripe_payment_activated');
    370 
    371         if(isset($field['type']) && $field['type'] == 'payment-multiple' && (!Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-paypal-payment/pie-forms-for-wp-paypal-payment.php') || $is_addon_activated == 'Deactivated') && (!Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-stripe/pie-forms-for-wp-stripe.php') || $is_addon_activated_stripe == 'Deactivated')){
     375        $is_addon_authorize_net = get_option('pieforms_manager_addon_authorizedotnet_activated');
     376
     377        if(isset($field['type']) && $field['type'] == 'payment-multiple' && (!Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-paypal-payment/pie-forms-for-wp-paypal-payment.php') || $is_addon_activated == 'Deactivated') && (!Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-stripe/pie-forms-for-wp-stripe.php') || $is_addon_activated_stripe == 'Deactivated') && (!Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-authorize-net/pie-forms-for-wp-authorize-net.php') || $is_addon_authorize_net == 'Deactivated')){
    372378            $to_show = true;
    373379        }
  • pie-forms-for-wp/trunk/includes/fields/paymentsingle.php

    r2744995 r2846497  
    3636        $is_addon_payment_activated  = get_option('pieforms_manager_addon_paypal_payment_activated');
    3737        $is_addon_activated_stripe  = get_option('pieforms_manager_addon_stripe_payment_activated');
     38        $is_addon_activated_authorize_net   = get_option('pieforms_manager_addon_authorizedotnet_activated');
     39
    3840
    3941        if(
     
    5456                ||
    5557                $is_addon_activated_stripe == "Deactivated"
     58            )
     59            &&
     60            (
     61                !Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-authorize-net/pie-forms-for-wp-authorize-net.php')
     62                ||
     63                $is_addon_activated_authorize_net == "Deactivated"
    5664            )
    5765        ){
     
    194202            $payment_currency  = !empty($form_data['pf_payments']['stripe']['currency']) ? $form_data['pf_payments']['stripe']['currency'] : '';
    195203        }
     204        if (Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-authorize-net/pie-forms-for-wp-authorize-net.php')){
     205            $payment_currency  = !empty($form_data['pf_payments']['authorizedotnet']['currency']) ? $form_data['pf_payments']['authorizedotnet']['currency'] : '';
     206        }
    196207        $value        =  Pie_Forms()->core()->pform_format_amount( Pie_Forms()->core()->pform_sanitize_amount( $field_submit, $payment_currency ) , true, $payment_currency );
    197208
     
    233244        $is_addon_activated_pp = get_option('pieforms_manager_addon_paypal_payment_activated');
    234245        $is_addon_activated_stripe  = get_option('pieforms_manager_addon_stripe_payment_activated');
    235 
    236         if(isset($field['type']) && $field['type'] == 'payment-single' && (!Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-paypal-payment/pie-forms-for-wp-paypal-payment.php') || $is_addon_activated == 'Deactivated') && (!Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-paypal-donation/pie-forms-for-wp-paypal-donation.php') || $is_addon_activated_pp == 'Deactivated') && (!Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-stripe/pie-forms-for-wp-stripe.php') || $is_addon_activated_stripe == 'Deactivated') ){
     246        $is_addon_activated_authorize_net   = get_option('pieforms_manager_addon_authorizedotnet_activated');
     247
     248        if(isset($field['type']) && $field['type'] == 'payment-single' && (!Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-paypal-payment/pie-forms-for-wp-paypal-payment.php') || $is_addon_activated == 'Deactivated') && (!Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-paypal-donation/pie-forms-for-wp-paypal-donation.php') || $is_addon_activated_pp == 'Deactivated') && (!Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-stripe/pie-forms-for-wp-stripe.php') || $is_addon_activated_stripe == 'Deactivated')  && (!Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-authorize-net/pie-forms-for-wp-authorize-net.php') || $is_addon_activated_authorize_net == 'Deactivated') ){
    237249            $to_show = true;
    238250        }
  • pie-forms-for-wp/trunk/includes/form/task.php

    r2830410 r2846497  
    381381       
    382382        $html = apply_filters('pie_forms_quiz_result', $html);
     383        $html = apply_filters('pie_forms_authorizedotnet_msg', $html);
    383384
    384385        return $html;
  • pie-forms-for-wp/trunk/includes/settings/licence.php

    r2840829 r2846497  
    4646        $active_activecampaign = Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-activecampaign/pie-forms-for-wp-activecampaign.php') ? true : false;
    4747
     48        $active_authorizedotnet = Pie_Forms()->core()->pform_check_addon_exist('pie-forms-for-wp-authorize-net/pie-forms-for-wp-authorize-net.php') ? true : false;
     49
    4850        $settings = apply_filters(
    4951            'pie_forms_licence_settings',
     
    290292                ),
    291293                array(
     294                    'title'         => esc_html__('Authorize.Net Addon' , 'pie-forms'),
     295                    'type'          => 'addons_license',
     296                    'id'            => 'authorizedotnet',
     297                    'email_address' => array(
     298                        'placeholder'   => esc_html__( 'Email Address', 'pie-forms' ),
     299                        'desc'          => esc_html__( '', 'pie-forms' ),
     300                        'id'            => 'pieforms_addon_authorizedotnet_licence_email',
     301                        'default'       => '',
     302
     303                    ),
     304                    'license_key'   => array(
     305                        'placeholder'   => esc_html__( 'License key', 'pie-forms' ),
     306                        'desc'          => esc_html__( '', 'pie-forms' ),
     307                        'id'            => 'pieforms_addon_authorizedotnet_licence_key',
     308                        'default'       => '',
     309                    ),
     310                    'is_visible'    => $active_authorizedotnet
     311                ),
     312                array(
    292313                    'type' => 'sectionend',
    293314                    'id'   => 'licence_settings',
  • pie-forms-for-wp/trunk/includes/templates/addons.json

    r2840829 r2846497  
    8383        "plugin_src" : "https://pieforms.com/addons/activecampaign-addon/?utm_source=admindashboard&utm_medium=Addonspage&utm_campaign=freeuser",
    8484        "price" : "10.99"
     85    },
     86    "pie-forms-for-wp-authorize-net/pie-forms-for-wp-authorize-net.php" : {
     87        "icon"  : "authorize-net-addon.jpg",
     88        "name"  : "Authorize.Net Addon",
     89        "desc"  : "Take recurring payments and set payment lengths with the authorize.net addon using pie forms.",
     90        "plugin_src" : "https://pieforms.com/addons/authorize-net-payment-addon/?utm_source=admindashboard&utm_medium=Addonspage&utm_campaign=freeuser",
     91        "price" : "19.99"
    8592    }
    8693 
  • pie-forms-for-wp/trunk/pie-forms-for-wp.php

    r2840829 r2846497  
    33Plugin Name: Pie Forms - Basic
    44Description: The Intelligent and Easy WordPress Form Builder Dynamic forms, Built-in Ready to use Templates, Advanced field options, Anti-spam features, and more!
    5 Version: 1.4.11
     5Version: 1.4.12
    66Author: Pie Forms
    77Author URI: https://www.pieforms.com
     
    4141    {
    4242
    43         const VERSION = '1.4.11';
     43        const VERSION = '1.4.12';
    4444       
    4545        const DB_VERSION = '1.2';
  • pie-forms-for-wp/trunk/readme.txt

    r2840829 r2846497  
    33Tags: Contact form, form builder, custom form, email form, contact form plugin
    44Requires at least: 5.0
    5 Tested up to: 6.1
     5Tested up to: 6.1.1
    66Requires PHP: 7.0
    7 Stable tag: 1.4.11
     7Stable tag: 1.4.12
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8989Easily collect payments and donations online with our Stripe addon
    9090
     91* **[Authorize.net Add-on](https://pieforms.com/addons/authorize-net-payment-addon/)**
     92Take recurring payments and set payment lengths with the authorize.net addon using pie forms.
     93
    9194* **[Zapier Add-on](https://pieforms.com/addons/zapier-integration-addon/)**
    9295Automate your work in minutes with Pie Form's Zapier Addon
     
    112115* **[ActiveCampaign Add-on](https://pieforms.com/addons/activecampaign-addon/)**
    113116Automate your email campaigns and build an engaging customer experience with the Activecampaing add-on.
    114 THERE IS SO MUCH MORE TO EXPLORE!
    115117
    116118THERE IS SO MUCH MORE TO EXPLORE!
     
    139141* DeepL
    140142* Stripe
     143* Authorize.net
    141144* Zapier
    142145* Pabbly Connect
     
    231234
    232235== CHANGELOG ==
     236
     237### 1.4.12
     238* Added: Authorize.net Addon.
     239* Added: Checkout Payment Field.
    233240
    234241### 1.4.11
Note: See TracChangeset for help on using the changeset viewer.