Plugin Directory

Changeset 2482539


Ignore:
Timestamp:
02/27/2021 04:34:38 AM (5 years ago)
Author:
jyotsnasingh520
Message:

subtotal bug fix

Location:
advanced-free-flat-shipping-woocommerce/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • advanced-free-flat-shipping-woocommerce/trunk/admin/css/extended-flat-rate-shipping-woocommerce-admin.css

    r2449315 r2482539  
    2525    width:30%;
    2626}
     27
     28.bootstrap-wrapper select option:disabled{
     29    background-color:#fff;
     30}
  • advanced-free-flat-shipping-woocommerce/trunk/admin/selection_rules/rules/cart-subtotal-before-discount.php

    r2218131 r2482539  
    7979       
    8080                    $or_result = false;
    81                     $cart_subtotal = (float)WC()->cart->subtotal;
     81                    $cart_subtotal = (float)WC()->cart->get_displayed_subtotal();
    8282                    $rule_cart_subtotal = (float)$values[0];
    8383                    switch ($logic){
  • advanced-free-flat-shipping-woocommerce/trunk/extended-flat-rate-shipping-woocommerce.php

    r2478016 r2482539  
    1010 *
    1111 * @link              piwebsolution.com
    12  * @since             1.4.9
     12 * @since             1.6.0
    1313 * @package           Extended_Flat_Rate_Shipping_Woocommerce
    1414 *
     
    1717 * Plugin URI:        piwebsolution.com/advanced-free-flat-shipping-woocommerce
    1818 * Description:       WooCommerce conditional shipping & WooCommerce Advanced Flat rate shipping plugin to Create Advanced Flat rate shipping or Free shipping method, with different advanced criteria to apply this shipping method
    19  * Version:           1.4.9
     19 * Version:           1.6.0
    2020 * Author:            PI Websolution
    2121 * Author URI:        piwebsolution.com
     
    6161/**
    6262 * Currently plugin version.
    63  * Start at version 1.4.9 and use SemVer - https://semver.org
     63 * Start at version 1.6.0 and use SemVer - https://semver.org
    6464 * Rename this for your plugin and update it as you release new versions.
    6565 */
    66 define( 'EXTENDED_FLAT_RATE_SHIPPING_WOOCOMMERCE_VERSION', '1.4.9' );
     66define( 'EXTENDED_FLAT_RATE_SHIPPING_WOOCOMMERCE_VERSION', '1.6.0' );
    6767define('PI_EFRS_BUY_URL', 'https://www.piwebsolution.com/cart/?add-to-cart=2804&variation_id=2810');
    6868define('PI_EFRS_PRICE', '$25');
     
    127127 * not affect the page life cycle.
    128128 *
    129  * @since    1.4.9
     129 * @since    1.6.0
    130130 */
    131131function run_extended_flat_rate_shipping_woocommerce() {
Note: See TracChangeset for help on using the changeset viewer.