Changeset 2414010
- Timestamp:
- 11/06/2020 03:54:20 PM (5 years ago)
- Location:
- splitit-installment-payments-enabler/trunk
- Files:
-
- 3 edited
-
classes/splitit-api.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
splitit.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
splitit-installment-payments-enabler/trunk/classes/splitit-api.php
r2406714 r2414010 53 53 $params = array('UserName' => $this->_username, 54 54 'Password' => $this->_password, 55 'TouchPoint' => array("Code" => "WooCommercePlugin", "Version" => "2.4.1 0"),55 'TouchPoint' => array("Code" => "WooCommercePlugin", "Version" => "2.4.11"), 56 56 ); 57 57 -
splitit-installment-payments-enabler/trunk/readme.txt
r2406714 r2414010 4 4 Requires at least: 3.0.1 5 5 Tested up to: 5.5.0 6 Stable tag: 2.4.1 06 Stable tag: 2.4.11 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 71 71 == Changelog == 72 72 73 = 2.4.11 = 74 *Fix help me link 75 *Fix css styles of installment price section 76 73 77 = 2.4.10 = 74 78 *Fix learn more link on cart -
splitit-installment-payments-enabler/trunk/splitit.php
r2406714 r2414010 5 5 Plugin URI: http://wordpress.org/plugins/splitit/ 6 6 Description: Integrates Splitit payment method into your WooCommerce installation. 7 Version: 2.4.1 07 Version: 2.4.11 8 8 Author: Splitit 9 9 Text Domain: splitit … … 177 177 if (!class_exists('WC_Payment_Gateway')) {return;} 178 178 179 define('Splitit_VERSION', '2.4.1 0');179 define('Splitit_VERSION', '2.4.11'); 180 180 define('Splitit_logo_source_local', plugin_dir_url(__FILE__) . 'assets/images/Offical_Splitit_Logo.png'); 181 181 … … 1550 1550 if (is_product() && in_array('product', $sections)) { 1551 1551 if($this->isSplititTextVisibleOnProduct($product->get_id())){ 1552 return $price . '</p><p class="splitprice" style="margin-top: -30px;">' .$this->get_formatted_installment_price($product);1552 return $price . '</p><p class="splitprice">' .$this->get_formatted_installment_price($product); 1553 1553 } else { 1554 1554 return $price; … … 2000 2000 { 2001 2001 $apiKey = $this->get_option('splitit_api_terminal_key'); 2002 $culture = get_locale();2002 $culture = str_replace('_', '-', get_locale()); 2003 2003 $currencyCode = "USD"; 2004 2004 if (get_woocommerce_currency() != "") { … … 2007 2007 $numInstallments = self::$_maxInstallments; 2008 2008 2009 if ($this->get_option('splitit_mode_sandbox') ) {2009 if ($this->get_option('splitit_mode_sandbox') == 'yes') { 2010 2010 $url = 'https://documents.sandbox.splitit.com/LearnMore?apiKey=' . $apiKey; 2011 2011 } else {
Note: See TracChangeset
for help on using the changeset viewer.