Changeset 3106287
- Timestamp:
- 06/23/2024 06:44:35 PM (9 months ago)
- Location:
- integration-of-pathao-for-woocommerce/trunk
- Files:
-
- 1 added
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
integration-of-pathao-for-woocommerce/trunk/assets/js/admin.js
r3057517 r3106287 270 270 $('.pathao-shipping-spinner').removeClass('is-active'); 271 271 const errors = res.errors; 272 if (!errors && res.message) { 273 $.toast({ 274 position: 'bottom-center', 275 text: res.message, 276 icon: 'error', 277 hideAfter: 6000, 278 }); 279 } 272 280 $.each(errors, function (key, value) { 273 281 $.toast({ -
integration-of-pathao-for-woocommerce/trunk/includes/Admin/Order.php
r3057517 r3106287 47 47 : 'shop_order'; 48 48 49 add_meta_box( 50 'pathao_order_wc', 51 __( 'Pathao Shipping', 'sdevs_pathao' ), 52 array( $this, 'pathao_shipping' ), 53 $screen, 54 'side', 55 'default' 56 ); 49 // phpcs:ignore 50 if ( isset( $_GET['action'] ) && 'edit' === $_GET['action']) { 51 add_meta_box( 52 'pathao_order_wc', 53 __( 'Pathao Shipping', 'sdevs_pathao' ), 54 array( $this, 'pathao_shipping' ), 55 $screen, 56 'side', 57 'default' 58 ); 59 } 57 60 } 58 61 -
integration-of-pathao-for-woocommerce/trunk/includes/Illuminate/class-pathao-method.php
r3057517 r3106287 148 148 'type' => 'number', 149 149 'custom_attributes' => array( 150 'step s' => 'any',150 'step' => '0.1', 151 151 'min' => '0.1', 152 152 'max' => '200.0', -
integration-of-pathao-for-woocommerce/trunk/readme.txt
r3080049 r3106287 5 5 Requires at least: 4.0 6 6 Tested up to: 6.5 7 Stable tag: 1.0. 77 Stable tag: 1.0.8 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 73 73 == Changelog == 74 74 75 = 1.0.8 = 76 77 * Error message doesn't display when success is false. 78 * Ready for v1.3 pro version. 79 75 80 = 1.0.7 = 76 81 -
integration-of-pathao-for-woocommerce/trunk/vendor/composer/installed.php
r3057517 r3106287 4 4 'pretty_version' => 'dev-next', 5 5 'version' => 'dev-next', 6 'reference' => ' 9f933bcefa1824cb85523df43c0384be2f005459',6 'reference' => '51fa5f2bb910a3db9484c498d2169fed5c80cf58', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-next', 15 15 'version' => 'dev-next', 16 'reference' => ' 9f933bcefa1824cb85523df43c0384be2f005459',16 'reference' => '51fa5f2bb910a3db9484c498d2169fed5c80cf58', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.