Plugin Directory

Changeset 3248129


Ignore:
Timestamp:
02/27/2025 10:41:10 PM (13 months ago)
Author:
routedev
Message:

bugfix

Location:
routeapp/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • routeapp/trunk/admin/class-routeapp-notice.php

    r2598882 r3248129  
    4949    public function routeapp_attention_required()
    5050    {
    51         $this->billing_attention_required();
     51        //$this->billing_attention_required(); //MSS-5023: disabling this alert until we get a new FR to check the billing info.
    5252        $this->user_attention_required();
    5353        $this->merchant_attention_required();
     
    6060     * @param  void
    6161     */
    62     public function billing_attention_required()
    63     {
    64         $billingResponse = Routeapp_API_Client::getInstance()->get_billing();
    65 
    66         if (!is_wp_error($billingResponse)) {
    67             $body = json_decode($billingResponse['body']);
    68 
    69             if (isset($body) && is_countable($body)) {
    70                if (count($body) === 0) {
    71                   $this->add_notice("Route: You haven't yet completed the Billing Info step. Click <a href='http://dashboard.route.com/admin/preferences' target='_blank'>here</a> to complete.", "warning");
    72                }
    73             }
    74         }
    75     }
     62//    public function billing_attention_required() //MSS-5023: commented this alert until we get a new FR to check the billing info.
     63//    {
     64//        $billingResponse = Routeapp_API_Client::getInstance()->get_billing();
     65//
     66//        if (!is_wp_error($billingResponse)) {
     67//            $body = json_decode($billingResponse['body']);
     68//
     69//            if (isset($body) && is_countable($body)) {
     70//               if (count($body) === 0) {
     71//                  $this->add_notice("Route: You haven't yet completed the Billing Info step. Click <a href='http://dashboard.route.com/admin/preferences' target='_blank'>here</a> to complete.", "warning");
     72//               }
     73//            }
     74//        }
     75//    }
    7676
    7777    /**
  • routeapp/trunk/readme.txt

    r3229864 r3248129  
    66Requires at least: 4.0
    77Tested up to: 6.7.1
    8 Stable tag: 2.2.24
     8Stable tag: 2.2.25
    99Requires PHP: 5.6
    1010License: GPLv2 or later
     
    106106
    107107== Changelog ==
     108= 2.2.25 =
     109* Remove billing alert
     110
    108111= 2.2.24 =
    109112* Update Route Order Status for admin orders without Route Fee
  • routeapp/trunk/routeapp.php

    r3229864 r3248129  
    1010 * Plugin URI:        https://route.com/for-merchants/
    1111 * Description:       Route allows shoppers to insure their orders with one-click during checkout, adding a layer of 3rd party trust while improving the customer shopping experience.
    12  * Version:           2.2.24
     12 * Version:           2.2.25
    1313 * Author:            Route
    1414 * Author URI:        https://route.com/
     
    2626 * Currently plugin version.
    2727 */
    28 define( 'ROUTEAPP_VERSION', '2.2.24' );
     28define( 'ROUTEAPP_VERSION', '2.2.25' );
    2929
    3030/**
Note: See TracChangeset for help on using the changeset viewer.