Changeset 2465865
- Timestamp:
- 01/31/2021 10:56:17 AM (5 years ago)
- Location:
- decentralized-bitcoin-cryptodec-payment-gateway-for-woocommerce/trunk
- Files:
-
- 1 added
- 3 edited
-
admin/options.php (modified) (1 diff)
-
assets/images/btc-logo-3.png (added)
-
inc/itls-btc-wp-class.php (modified) (1 diff)
-
inc/itls-crypto-dec-payment-gateway-class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
decentralized-bitcoin-cryptodec-payment-gateway-for-woocommerce/trunk/admin/options.php
r2465341 r2465865 12 12 13 13 /* 14 ' ITLS_crypto_btc_enabled' => array(14 'itls_crypto_btc_enabled' => array( 15 15 16 'name' => ' ITLS_crypto_btc_enabled',16 'name' => 'itls_crypto_btc_enabled', 17 17 'type' => 'check', 18 18 'print' => __(''), -
decentralized-bitcoin-cryptodec-payment-gateway-for-woocommerce/trunk/inc/itls-btc-wp-class.php
r2465341 r2465865 17 17 $oName = $itls_wc_pay_gw_x1x_data['options_name']; 18 18 $options = get_option($oName); 19 $btcArray = $options[' ITLS_crypto_btc'];19 $btcArray = $options['itls_crypto_btc']; 20 20 21 21 if ($itls_wp_helper->checkUserData()) { -
decentralized-bitcoin-cryptodec-payment-gateway-for-woocommerce/trunk/inc/itls-crypto-dec-payment-gateway-class.php
r2465341 r2465865 6 6 global $itls_btc_wp; 7 7 $this->id = 'cryptodec_gateway'; // payment gateway plugin ID 8 $this->icon = plugin_dir_url(__FILE__) . '../assets/images/ logo-gw.png'; // URL of the icon that will be displayed on checkout page near your gateway name8 $this->icon = plugin_dir_url(__FILE__) . '../assets/images/btc-logo-3.png'; // URL of the icon that will be displayed on checkout page near your gateway name 9 9 $this->has_fields = true; // txid form 10 10 $this->method_title = 'Decentralized Crypto Payments';
Note: See TracChangeset
for help on using the changeset viewer.