Changeset 3148563
- Timestamp:
- 09/09/2024 09:57:16 AM (18 months ago)
- Location:
- solpress-payment-gateway/trunk
- Files:
-
- 3 edited
-
includes/class-wc-solpress-solana.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
solpress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
solpress-payment-gateway/trunk/includes/class-wc-solpress-solana.php
r3028991 r3148563 114 114 115 115 if (strlen($this->get_option('custom_spl_symbol')) > 0 && strlen($this->get_option('custom_spl_name')) > 0) { 116 $this->addCustomTokenCurrency(); 116 try { 117 if (empty(WP_ALLOW_MULTISITE)) { 118 // $this->addCustomTokenCurrency(); 119 } 120 } catch (Exception $e) { 121 echo 'Caught exception: ', $e->getMessage(), "\n"; 122 } 117 123 118 124 add_action( 'woocommerce_settings_pricing_options', array( $this, 'my_custom_pricing_options_description') ); -
solpress-payment-gateway/trunk/readme.txt
r3029098 r3148563 4 4 Tags: solana pay, woocommerce, crypto payment, payment gateway, solana, crypto, phantom, phantom wallet, crypto woocommerce, payment crypto 5 5 Requires at least: 4.7 6 Tested up to: 6. 47 Stable tag: 2.0.3 16 Tested up to: 6.6 7 Stable tag: 2.0.34 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later -
solpress-payment-gateway/trunk/solpress.php
r3028991 r3148563 17 17 * Plugin URI: https://solpress.dev 18 18 * Description: A payment gateway using Solana Pay for your WooCommerce store. 19 * Version: 2.0.3 119 * Version: 2.0.34 20 20 * Author: Solpress 21 21 * Author URI: https://profiles.wordpress.org/solpressplugins/ … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'SOLPRESS_VERSION', '2.0.3 1' );38 define( 'SOLPRESS_VERSION', '2.0.34' ); 39 39 define( 'SOLPRESS_ROOT', plugin_dir_path( __FILE__ ) ); 40 40 define( 'SOLPRESS_ASSETS', SOLPRESS_ROOT . '/assets/' );
Note: See TracChangeset
for help on using the changeset viewer.