Changeset 2534770
- Timestamp:
- 05/20/2021 11:11:05 AM (5 years ago)
- Location:
- change-payment-description-for-woocommerce
- Files:
-
- 6 added
- 2 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/LICENSE (added)
-
tags/1.0.1/README.txt (added)
-
tags/1.0.1/change-payment-description.php (added)
-
tags/1.0.1/languages (added)
-
tags/1.0.1/languages/change-payment-description-for-woocommerce.pot (added)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/change-payment-description.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
change-payment-description-for-woocommerce/trunk/README.txt
r2530724 r2534770 3 3 Tags: WooCommerce, Payment Description, Stripe, Stripe Backend 4 4 Requires at least: 4.8 5 Tested up to: 5.7. 16 Stable tag: 1.0. 05 Tested up to: 5.7.2 6 Stable tag: 1.0.1 7 7 License: GPLv2 8 8 … … 48 48 Yes, it is available for free. 49 49 50 = Does Change Stripe Payment Description for Woocommerce share any of my data? (GDPR) =50 = Does Change Payment Description for WooCommerce share any of my data? (GDPR) = 51 51 52 52 No, it keeps all your data inside your own WordPress & WooCommerce install. There is no data transmitted to us or a third party service. … … 61 61 = 1.0.0 = 62 62 * First release. 63 64 = 1.0.1 65 * Improvement: Added string text-domain (translation) -
change-payment-description-for-woocommerce/trunk/change-payment-description.php
r2530724 r2534770 5 5 * Plugin URI: https://poly-res.com/plugins/change-payment-desciption-for-woocommerce/ 6 6 * Description: Change Payment Description 7 * Version: 1.0. 07 * Version: 1.0.1 8 8 * Author: polyres 9 9 * Author URI: https://poly-res.com/ … … 14 14 * Requires WP: 4.8 15 15 * Requires PHP: 5.3 16 * Tested up to: 5.7. 116 * Tested up to: 5.7.2 17 17 * WC requires at least: 3.4.0 18 * WC tested up to: 5. 2.218 * WC tested up to: 5.3.0 19 19 * 20 20 * @link https://poly-res.com … … 181 181 $payment_description = get_option( 'cpd_payment_description' ); 182 182 if ( !empty( $payment_description ) ) { 183 $post_data['description'] = sprintf( __( '%1$s - Order %2$s' ), $payment_description, $order->get_order_number() );183 $post_data['description'] = sprintf( __( '%1$s - Order %2$s', 'change-payment-description-for-woocommerce' ), $payment_description, $order->get_order_number() ); 184 184 } 185 185 return $post_data;
Note: See TracChangeset
for help on using the changeset viewer.