Plugin Directory

Changeset 2414010


Ignore:
Timestamp:
11/06/2020 03:54:20 PM (5 years ago)
Author:
sixg
Message:

2.4.11

Location:
splitit-installment-payments-enabler/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • splitit-installment-payments-enabler/trunk/classes/splitit-api.php

    r2406714 r2414010  
    5353        $params = array('UserName' => $this->_username,
    5454            'Password' => $this->_password,
    55             'TouchPoint' => array("Code" => "WooCommercePlugin", "Version" => "2.4.10"),
     55            'TouchPoint' => array("Code" => "WooCommercePlugin", "Version" => "2.4.11"),
    5656        );
    5757
  • splitit-installment-payments-enabler/trunk/readme.txt

    r2406714 r2414010  
    44Requires at least: 3.0.1
    55Tested up to: 5.5.0
    6 Stable tag: 2.4.10
     6Stable tag: 2.4.11
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    7171== Changelog ==
    7272
     73= 2.4.11 =
     74*Fix help me link
     75*Fix css styles of installment price section
     76
    7377= 2.4.10 =
    7478*Fix learn more link on cart
  • splitit-installment-payments-enabler/trunk/splitit.php

    r2406714 r2414010  
    55Plugin URI: http://wordpress.org/plugins/splitit/
    66Description: Integrates Splitit payment method into your WooCommerce installation.
    7 Version: 2.4.10
     7Version: 2.4.11
    88Author: Splitit
    99Text Domain: splitit
     
    177177    if (!class_exists('WC_Payment_Gateway')) {return;}
    178178
    179     define('Splitit_VERSION', '2.4.10');
     179    define('Splitit_VERSION', '2.4.11');
    180180    define('Splitit_logo_source_local', plugin_dir_url(__FILE__) . 'assets/images/Offical_Splitit_Logo.png');
    181181
     
    15501550                    if (is_product() && in_array('product', $sections)) {
    15511551                        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);
    15531553                        } else {
    15541554                            return $price;
     
    20002000        {
    20012001            $apiKey = $this->get_option('splitit_api_terminal_key');
    2002             $culture = get_locale();
     2002            $culture = str_replace('_', '-', get_locale());
    20032003            $currencyCode = "USD";
    20042004            if (get_woocommerce_currency() != "") {
     
    20072007            $numInstallments = self::$_maxInstallments;
    20082008
    2009             if ($this->get_option('splitit_mode_sandbox')) {
     2009            if ($this->get_option('splitit_mode_sandbox') == 'yes') {
    20102010                $url = 'https://documents.sandbox.splitit.com/LearnMore?apiKey=' . $apiKey;
    20112011            } else {
Note: See TracChangeset for help on using the changeset viewer.