Plugin Directory

Changeset 2638545


Ignore:
Timestamp:
12/02/2021 12:21:51 PM (4 years ago)
Author:
convertize
Message:

fix cart value bug

Location:
nudgify
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • nudgify/tags/1.2.2/nudgify.php

    r2558883 r2638545  
    44Description: Install Nudgify on your WordPress website in less then 10 seconds. Integrate unique tracking code of Nudgify into every page of your website in one click.
    55Author: Nudgify
    6 Version: 1.2.1
     6Version: 1.2.2
    77Author URI: https://nudgify.com
    88License: GPLv2
     
    530530            $cart = WC()->cart;
    531531
     532            if (! $cart) {
     533                return 0;
     534            }
     535
    532536            return floatval($cart->get_cart_contents_total() + $cart->get_taxes_total());
    533537        }
  • nudgify/tags/1.2.2/readme.txt

    r2559257 r2638545  
    55Requires at least: 4.6
    66Tested up to: 5.7.1
    7 Stable tag: 1.2.1
     7Stable tag: 1.2.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • nudgify/trunk/nudgify.php

    r2558883 r2638545  
    44Description: Install Nudgify on your WordPress website in less then 10 seconds. Integrate unique tracking code of Nudgify into every page of your website in one click.
    55Author: Nudgify
    6 Version: 1.2.1
     6Version: 1.2.2
    77Author URI: https://nudgify.com
    88License: GPLv2
     
    530530            $cart = WC()->cart;
    531531
     532            if (! $cart) {
     533                return 0;
     534            }
     535
    532536            return floatval($cart->get_cart_contents_total() + $cart->get_taxes_total());
    533537        }
  • nudgify/trunk/readme.txt

    r2559257 r2638545  
    55Requires at least: 4.6
    66Tested up to: 5.7.1
    7 Stable tag: 1.2.1
     7Stable tag: 1.2.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.