Changeset 2563613
- Timestamp:
- 07/13/2021 01:44:55 PM (5 years ago)
- Location:
- ksher-payment
- Files:
-
- 4 edited
-
tags/1.0.1/ksher.php (modified) (1 diff)
-
tags/1.0.1/payment/set-payment.php (modified) (2 diffs)
-
trunk/ksher.php (modified) (1 diff)
-
trunk/payment/set-payment.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ksher-payment/tags/1.0.1/ksher.php
r2563223 r2563613 4 4 * Plugin URI: https://www.ksher.com 5 5 * Description: Ksher Gateway Plugin is a WordPress plugin designed specifically for WooCommerce. The plugin adds support for Ksher Payment Gateway payment method to WooCommerce. 6 * Version: 1.0. 16 * Version: 1.0.2 7 7 * Author: Ksher 8 8 * Text Domain: ksher -
ksher-payment/tags/1.0.1/payment/set-payment.php
r2563247 r2563613 217 217 } 218 218 219 if (strlen($product) > 30) {220 $product = substr($product, 30);219 if (strlen($product) > 50) { 220 $product = substr($product, 0, 50); 221 221 } 222 222 … … 304 304 $data['color'] = get_option('ksher_color'); 305 305 } 306 306 307 if ( get_option('ksher_logo') && is_string(get_option('ksher_logo'))) { 307 308 $data['logo'] = get_option('ksher_logo'); -
ksher-payment/trunk/ksher.php
r2563223 r2563613 4 4 * Plugin URI: https://www.ksher.com 5 5 * Description: Ksher Gateway Plugin is a WordPress plugin designed specifically for WooCommerce. The plugin adds support for Ksher Payment Gateway payment method to WooCommerce. 6 * Version: 1.0. 16 * Version: 1.0.2 7 7 * Author: Ksher 8 8 * Text Domain: ksher -
ksher-payment/trunk/payment/set-payment.php
r2563247 r2563613 217 217 } 218 218 219 if (strlen($product) > 30) {220 $product = substr($product, 30);219 if (strlen($product) > 50) { 220 $product = substr($product, 0, 50); 221 221 } 222 222 … … 304 304 $data['color'] = get_option('ksher_color'); 305 305 } 306 306 307 if ( get_option('ksher_logo') && is_string(get_option('ksher_logo'))) { 307 308 $data['logo'] = get_option('ksher_logo');
Note: See TracChangeset
for help on using the changeset viewer.