Plugin Directory

Changeset 2406714


Ignore:
Timestamp:
10/26/2020 11:42:03 AM (5 years ago)
Author:
sixg
Message:

version update 2.4.10

Location:
splitit-installment-payments-enabler
Files:
43 added
3 edited

Legend:

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

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

    r2395597 r2406714  
    44Requires at least: 3.0.1
    55Tested up to: 5.5.0
    6 Stable tag: 2.4.9
     6Stable tag: 2.4.10
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    7171== Changelog ==
    7272
     73= 2.4.10 =
     74*Fix learn more link on cart
     75
    7376= 2.4.9 =
    7477*Fix Splitit payment method title for checkout, admin and invoice - remove html from admin and invoice
  • splitit-installment-payments-enabler/trunk/splitit.php

    r2395597 r2406714  
    55Plugin URI: http://wordpress.org/plugins/splitit/
    66Description: Integrates Splitit payment method into your WooCommerce installation.
    7 Version: 2.4.9
     7Version: 2.4.10
    88Author: Splitit
    99Text Domain: splitit
     
    177177    if (!class_exists('WC_Payment_Gateway')) {return;}
    178178
    179     define('Splitit_VERSION', '2.4.9');
     179    define('Splitit_VERSION', '2.4.10');
    180180    define('Splitit_logo_source_local', plugin_dir_url(__FILE__) . 'assets/images/Offical_Splitit_Logo.png');
    181181
     
    16091609                    if (isset($this->settings['splitit_logo_src_local']) && $this->settings['splitit_logo_src_local']) {
    16101610                        //echo $this->settings['splitit_help_title_link_local'];die;
    1611                         $replace = "<a id='tell-me-more' href='" . $this->getHelpMeLink($price) . "' class='no-lightbox' target='_blank'><img  class='logoWidthSrc' src='" . $this->settings['splitit_logo_src_local'] . "' alt='SPLITIT'/></a>";
     1611                        $replace = "<a id='tell-me-more' href='" . $this->getHelpMeLink($woocommerce->cart->total) . "' class='no-lightbox' target='_blank'><img  class='logoWidthSrc' src='" . $this->settings['splitit_logo_src_local'] . "' alt='SPLITIT'/></a>";
    16121612                        /*$textToDisplay = str_replace('SPLITIT', $replace, $this->settings['splitit_without_interest']);*/
    16131613                    }
    16141614                    $learnmoreImage = '<span class="tell-me-more-image-wrapper"><img class="tell-me-more-image" src="' . plugin_dir_url(__FILE__) . 'assets/images/learn_more.png"></span>';
    1615                     $learnmore = " <a id='tell-me-more' href='" . $this->getHelpMeLink($price) . "' class='no-lightbox' target='_blank'>" . $learnmoreImage . "</a>";
     1615                    $learnmore = " <a id='tell-me-more' href='" . $this->getHelpMeLink($woocommerce->cart->total) . "' class='no-lightbox' target='_blank'>" . $learnmoreImage . "</a>";
    16161616                    //$prodData = $product->get_data();
    16171617                    //$split_price = round($prodData['price'] / self::$_maxInstallments, 3);
Note: See TracChangeset for help on using the changeset viewer.