Changeset 3248129
- Timestamp:
- 02/27/2025 10:41:10 PM (13 months ago)
- Location:
- routeapp/trunk
- Files:
-
- 3 edited
-
admin/class-routeapp-notice.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
routeapp.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
routeapp/trunk/admin/class-routeapp-notice.php
r2598882 r3248129 49 49 public function routeapp_attention_required() 50 50 { 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. 52 52 $this->user_attention_required(); 53 53 $this->merchant_attention_required(); … … 60 60 * @param void 61 61 */ 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 // } 76 76 77 77 /** -
routeapp/trunk/readme.txt
r3229864 r3248129 6 6 Requires at least: 4.0 7 7 Tested up to: 6.7.1 8 Stable tag: 2.2.2 48 Stable tag: 2.2.25 9 9 Requires PHP: 5.6 10 10 License: GPLv2 or later … … 106 106 107 107 == Changelog == 108 = 2.2.25 = 109 * Remove billing alert 110 108 111 = 2.2.24 = 109 112 * Update Route Order Status for admin orders without Route Fee -
routeapp/trunk/routeapp.php
r3229864 r3248129 10 10 * Plugin URI: https://route.com/for-merchants/ 11 11 * 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.2 412 * Version: 2.2.25 13 13 * Author: Route 14 14 * Author URI: https://route.com/ … … 26 26 * Currently plugin version. 27 27 */ 28 define( 'ROUTEAPP_VERSION', '2.2.2 4' );28 define( 'ROUTEAPP_VERSION', '2.2.25' ); 29 29 30 30 /**
Note: See TracChangeset
for help on using the changeset viewer.