Changeset 2974604
- Timestamp:
- 10/04/2023 08:50:21 AM (2 years ago)
- Location:
- triplea-cryptocurrency-payment-gateway-for-woocommerce
- Files:
-
- 8 edited
- 1 copied
-
tags/2.0.11 (copied) (copied from triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk)
-
tags/2.0.11/includes/Reviews.php (modified) (1 diff)
-
tags/2.0.11/includes/WooCommerce/Thank_You.php (modified) (1 diff)
-
tags/2.0.11/readme.txt (modified) (3 diffs)
-
tags/2.0.11/triplea-cryptocurrency-payment-gateway-for-woocommerce.php (modified) (2 diffs)
-
trunk/includes/Reviews.php (modified) (1 diff)
-
trunk/includes/WooCommerce/Thank_You.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/triplea-cryptocurrency-payment-gateway-for-woocommerce.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
triplea-cryptocurrency-payment-gateway-for-woocommerce/tags/2.0.11/includes/Reviews.php
r2804451 r2974604 42 42 global $pagenow; 43 43 44 $exclude = [ 'themes.php', 'users.php', 'tools.php', 'options-general.php', 'options-writing.php', 'options-reading.php', 'options-discussion.php', 'options-media.php', 'options-permalink.php', 'options-privacy.php', 'edit-comments.php', 'upload.php', 'media-new.php', 'admin.php', 'import.php', 'export.php', 'site-health.php', 'export-personal-data.php', 'erase-personal-data.php' ];44 $exclude = [ 'themes.php', 'users.php', 'tools.php', 'options-general.php', 'options-writing.php', 'options-reading.php', 'options-discussion.php', 'options-media.php', 'options-permalink.php', 'options-privacy.php', 'edit-comments.php', 'upload.php', 'media-new.php', 'admin.php', 'import.php', 'export.php', 'site-health.php', 'export-personal-data.php', 'erase-personal-data.php','profile.php','user-edit.php' ]; 45 45 46 if ( ! in_array( $pagenow, $exclude ) ) {46 if ( ! in_array( $pagenow, $exclude ) && current_user_can( 'administrator' ) ) { 47 47 48 48 wp_enqueue_style( 'wctriplea-admin-style' ); -
triplea-cryptocurrency-payment-gateway-for-woocommerce/tags/2.0.11/includes/WooCommerce/Thank_You.php
r2804451 r2974604 33 33 public static function triplea_change_order_received_text( $str, $order ) { 34 34 35 if ($order->has_status( 'failed' )) { 36 $new_str = $str . '<br>' 37 .'Your order was placed. However, your payment was either insufficient or not detected.'; 38 return $new_str; 39 } 35 if (isset($order) && $order->has_status( 'failed' )) { 36 37 $new_str = $str . '<br>' 38 .'Your order was placed. However, your payment was either insufficient or not detected.'; 39 return $new_str; 40 } 40 41 41 42 return $str; -
triplea-cryptocurrency-payment-gateway-for-woocommerce/tags/2.0.11/readme.txt
r2945763 r2974604 7 7 Requires at least: 5.5 8 8 Tested up to: 6.2.2 9 Stable tag: 2.0.1 09 Stable tag: 2.0.11 10 10 Requires PHP: 7.0 11 11 License: GPLv2 or later … … 109 109 == Changelog == 110 110 111 = 2.0.11 = 112 Fixed: Review message will be displayed only for admin 113 Fixed: Validation for Thank you message for less payments 114 111 115 = 2.0.10 = 112 116 Fixed: Updated priority for checking custom validation of the checkout form … … 283 287 == Upgrade Notice == 284 288 289 = 2.0.11 = 290 Simply install the update. No further action is needed. 291 285 292 = 2.0.10 = 286 293 Simply install the update. No further action is needed. -
triplea-cryptocurrency-payment-gateway-for-woocommerce/tags/2.0.11/triplea-cryptocurrency-payment-gateway-for-woocommerce.php
r2945763 r2974604 17 17 * Plugin URI: https://wordpress.org/plugins/triplea-cryptocurrency-payment-gateway-for-woocommerce/ 18 18 * Description: Offer cryptocurrency as a payment option on your website and get access to even more clients. Receive payments in cryptocurrency or in your local currency, directly in your bank account. Enjoy an easy setup, no cryptocurrency expertise required. Powered by TripleA. 19 * Version: 2.0.1 019 * Version: 2.0.11 20 20 * Author: TripleA Team 21 21 * Author URI: https://triple-a.io … … 45 45 * $var string 46 46 */ 47 const version = '2.0.1 0';47 const version = '2.0.11'; 48 48 49 49 /* -
triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/includes/Reviews.php
r2804451 r2974604 42 42 global $pagenow; 43 43 44 $exclude = [ 'themes.php', 'users.php', 'tools.php', 'options-general.php', 'options-writing.php', 'options-reading.php', 'options-discussion.php', 'options-media.php', 'options-permalink.php', 'options-privacy.php', 'edit-comments.php', 'upload.php', 'media-new.php', 'admin.php', 'import.php', 'export.php', 'site-health.php', 'export-personal-data.php', 'erase-personal-data.php' ];44 $exclude = [ 'themes.php', 'users.php', 'tools.php', 'options-general.php', 'options-writing.php', 'options-reading.php', 'options-discussion.php', 'options-media.php', 'options-permalink.php', 'options-privacy.php', 'edit-comments.php', 'upload.php', 'media-new.php', 'admin.php', 'import.php', 'export.php', 'site-health.php', 'export-personal-data.php', 'erase-personal-data.php','profile.php','user-edit.php' ]; 45 45 46 if ( ! in_array( $pagenow, $exclude ) ) {46 if ( ! in_array( $pagenow, $exclude ) && current_user_can( 'administrator' ) ) { 47 47 48 48 wp_enqueue_style( 'wctriplea-admin-style' ); -
triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/includes/WooCommerce/Thank_You.php
r2804451 r2974604 33 33 public static function triplea_change_order_received_text( $str, $order ) { 34 34 35 if ($order->has_status( 'failed' )) { 36 $new_str = $str . '<br>' 37 .'Your order was placed. However, your payment was either insufficient or not detected.'; 38 return $new_str; 39 } 35 if (isset($order) && $order->has_status( 'failed' )) { 36 37 $new_str = $str . '<br>' 38 .'Your order was placed. However, your payment was either insufficient or not detected.'; 39 return $new_str; 40 } 40 41 41 42 return $str; -
triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/readme.txt
r2945763 r2974604 7 7 Requires at least: 5.5 8 8 Tested up to: 6.2.2 9 Stable tag: 2.0.1 09 Stable tag: 2.0.11 10 10 Requires PHP: 7.0 11 11 License: GPLv2 or later … … 109 109 == Changelog == 110 110 111 = 2.0.11 = 112 Fixed: Review message will be displayed only for admin 113 Fixed: Validation for Thank you message for less payments 114 111 115 = 2.0.10 = 112 116 Fixed: Updated priority for checking custom validation of the checkout form … … 283 287 == Upgrade Notice == 284 288 289 = 2.0.11 = 290 Simply install the update. No further action is needed. 291 285 292 = 2.0.10 = 286 293 Simply install the update. No further action is needed. -
triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/triplea-cryptocurrency-payment-gateway-for-woocommerce.php
r2945763 r2974604 17 17 * Plugin URI: https://wordpress.org/plugins/triplea-cryptocurrency-payment-gateway-for-woocommerce/ 18 18 * Description: Offer cryptocurrency as a payment option on your website and get access to even more clients. Receive payments in cryptocurrency or in your local currency, directly in your bank account. Enjoy an easy setup, no cryptocurrency expertise required. Powered by TripleA. 19 * Version: 2.0.1 019 * Version: 2.0.11 20 20 * Author: TripleA Team 21 21 * Author URI: https://triple-a.io … … 45 45 * $var string 46 46 */ 47 const version = '2.0.1 0';47 const version = '2.0.11'; 48 48 49 49 /*
Note: See TracChangeset
for help on using the changeset viewer.