Page 43 of 58 FirstFirst ... 33414243444553 ... LastLast
Results 421 to 430 of 574
  1. #421
    Join Date
    May 2010
    Location
    Texas
    Posts
    491
    Plugin Contributions
    0

    red flag Re: Stripe payment module - PAYPAL IMPAIRED

    Zen: 1.5.7c
    PHP 7.4

    I installed the stripe payment module and now PayPal Express has been impaired
    on the 3rd/final checkout page, no sub total, shipping, sales tax, and Total is shown for PayPal.


    The issue is the /includes/templates/template_default/templates/tpl_checkout_confirmation_default.php file
    It has a section of original code commented out.
    If I remove the comments, the sub total, shipping, sales tax, and Total return for PayPal

    The issue is this command at line 164 is commented out and needed for PayPal:
    PHP Code:
    $order_totals $order_total_modules->process(); 
    If it is put back, it fixes PayPal, but causes Stripe to print the sub total, shipping, sales tax, and Total twice.


    ANYONE?

  2. #422
    Join Date
    Jul 2021
    Location
    Fukuoka Japan
    Posts
    125
    Plugin Contributions
    2

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by split63 View Post
    Zen: 1.5.7c
    PHP 7.4

    I installed the stripe payment module and now PayPal Express has been impaired
    on the 3rd/final checkout page, no sub total, shipping, sales tax, and Total is shown for PayPal.


    The issue is the /includes/templates/template_default/templates/tpl_checkout_confirmation_default.php file
    It has a section of original code commented out.
    If I remove the comments, the sub total, shipping, sales tax, and Total return for PayPal

    The issue is this command at line 164 is commented out and needed for PayPal:
    PHP Code:
    $order_totals $order_total_modules->process(); 
    If it is put back, it fixes PayPal, but causes Stripe to print the sub total, shipping, sales tax, and Total twice.


    ANYONE?

    The reason is the low order fee.
    Normally, for payments such as Paypal, customer information and payment price are sent after pressing the "confirmation order" button in checkout confirmation.
    This Stripe module sends customer information and payment price when customer press the "continue" button in Checkout payment.
    Therefore, Low order fee will not be added to $order->info['total'] at checkout payment.
    \www\includes\modules\payment\stripe.php Lines 150-154 Checkout payment screen"Your Total" used for the payment price.
    By executing lines 150-154, Sub-total, Per Item, and Total will be displayed twice on the checkout confirmation screen, so I prevent them from being displayed twice on checkout_confirmation.
    If you do not use Low order fee, the solution is simple, just modify the code below.

    \www\includes\modules\payment\stripe.php 150-154
    PHP Code:
          if (MODULE_ORDER_TOTAL_INSTALLED) {
             
    $order_totals $order_total_modules->process();
             
    $c count($order_totals);
             
    $c -= 1;
             
    $order_value $order_totals[$c]['value'];
            } else{
             
    $order_value $order->info['total'];
            } 
    to
    PHP Code:
    $order_value $order->info['total']; 
    www\includes\templates\YOUR_TEMPLATE\templates\tpl_checkout_confirmation_default .php 158-165

    PHP Code:
    /*
      if (MODULE_ORDER_TOTAL_INSTALLED) {
        $order_totals = $order_total_modules->process();

    ?>
    <?php
      
    }
    */
    to

    PHP Code:
      if (MODULE_ORDER_TOTAL_INSTALLED) {
        $order_totals = $order_total_modules->process();
    ?>
    <div id="orderTotals"><?php $order_total_modules->output(); ?></div>
    <?php
      
    }
    **If anyone has any other ideas, please let me know.**


    Nihon Yokane corporation
    Last edited by Gozzandes; 17 Dec 2024 at 03:45 AM.

  3. #423
    Join Date
    May 2010
    Location
    Texas
    Posts
    491
    Plugin Contributions
    0

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    What is the "Low order fee"?

    Isn't that last change duplicated at line 173?...which is apparently why it was commented out (162-169)
    Last edited by split63; 17 Dec 2024 at 04:35 AM.

  4. #424
    Join Date
    Jul 2021
    Location
    Fukuoka Japan
    Posts
    125
    Plugin Contributions
    2

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by split63 View Post
    What is the "Low order fee"?

    Isn't that last change duplicated at line 173?...which is apparently why it was commented out (162-169)
    You can set Low Order Fee at
    Admin=>Modules=>Order total=>Low Order Fee

    In the case of php, if it is enclosed in /* and */, it will not be executed, so there is no duplication.

  5. #425
    Join Date
    Jul 2021
    Location
    Fukuoka Japan
    Posts
    125
    Plugin Contributions
    2

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by split63 View Post
    What is the "Low order fee"?

    Isn't that last change duplicated at line 173?...which is apparently why it was commented out (162-169)
    Sorry, you are right.
    following code is duplicated. Please erase the code.
    <div id="orderTotals"><?php $order_total_modules->output(); ?></div>


    and This statement is also incorrect.
    \www\includes\modules\payment\stripe.php 150-154
    PHP Code:
          if (MODULE_ORDER_TOTAL_INSTALLED) {
             
    $order_totals $order_total_modules->process();
             
    $c count($order_totals);
             
    $c -= 1;
             
    $order_value $order_totals[$c]['value'];
            } else{
             
    $order_value $order->info['total'];
            } 
    Correct statement is as follows
    This code can support low order fees.
    PHP Code:
          if (MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS == 'true' && MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER >= $order->info['total']) {
             
    $order_value $order->info['total'] + MODULE_ORDER_TOTAL_LOWORDERFEE_FEE ;
            } else{
             
    $order_value $order->info['total'];
            } 

    It will be reflected in the next update.

  6. #426
    Join Date
    May 2010
    Location
    Texas
    Posts
    491
    Plugin Contributions
    0

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by Gozzandes View Post
    Sorry, you are right.
    following code is duplicated. Please erase the code.
    <div id="orderTotals"><?php $order_total_modules->output(); ?></div> ..........

    It will be reflected in the next update.
    I'm a little confused about what to keep and what to delete, can you attach your updated stripe.php file here?

  7. #427
    Join Date
    Jul 2021
    Location
    Fukuoka Japan
    Posts
    125
    Plugin Contributions
    2

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by split63 View Post
    I'm a little confused about what to keep and what to delete, can you attach your updated stripe.php file here?

    includes\modules\payment\stripe.php

    PHP Code:
    <?php
    /**
     *
     * @copyright Copyright 2003-2022 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: brittainmark 2022 Sep 10 Modified in v1.5.8 $
     */
      
    class stripe extends base {

          
    /**
         * $_check is used to check the configuration key set up
         * @var int
         */
        
    protected $_check;
        
    /**
         * $code determines the internal 'code' name used to designate "this" payment module
         * @var string
         */
        
    public $code;
        
    /**
         * $description is a soft name for this payment method
         * @var string 
         */
        
    public $description;
        
    /**
         * $email_footer is the text to me placed in the footer of the email
         * @var string
         */
        
    public $email_footer;
        
    /**
         * $enabled determines whether this module shows or not... during checkout.
         * @var boolean
         */
        
    public $enabled;
        
    /**
         * $order_status is the order status to set after processing the payment
         * @var int
         */
        
    public $order_status;
        
    /**
         * $title is the displayed name for this order total method
         * @var string
         */
        
    public $title;
        
    /**
         * $sort_order is the order priority of this payment module when displayed
         * @var int
         */
        
    public $sort_order;

    // class constructor
    function __construct() {
      global 
    $order;

      
    $this->code 'stripe';
      
    $this->title MODULE_PAYMENT_STRIPE_TEXT_TITLE;
      
    $this->description MODULE_PAYMENT_STRIPE_TEXT_DESCRIPTION;
      
    $this->sort_order defined('MODULE_PAYMENT_STRIPE_SORT_ORDER') ? MODULE_PAYMENT_STRIPE_SORT_ORDER null;
      
    $this->enabled = (defined('MODULE_PAYMENT_STRIPE_STATUS') && MODULE_PAYMENT_STRIPE_STATUS == 'True');

      if (
    null === $this->sort_order) return false;

      if (
    IS_ADMIN_FLAG === true && (MODULE_PAYMENT_STRIPE_PUBLISHABLE_KEY == '' || MODULE_PAYMENT_STRIPE_SECRET_KEY == '' || MODULE_PAYMENT_STRIPE_PUBLISHABLE_TEST_KEY == '' || MODULE_PAYMENT_STRIPE_SECRET_TEST_KEY == '' )) $this->title .= '<span class="alert"> (not configured - stripe publishable key and secret key)</span>';

      if (
    IS_ADMIN_FLAG === true && (MODULE_PAYMENT_STRIPE_TEST_MODE == 'True')) $this->title .= '<span class="alert"> (Stripe is in testing mode)</span>';

      if (
    IS_ADMIN_FLAG === true && (strpos(MODULE_PAYMENT_STRIPE_PUBLISHABLE_KEY,'_test_') !== false ) == true || (strpos(MODULE_PAYMENT_STRIPE_SECRET_KEY,'_test_') !== false ) == true$this->title .= '<span class="alert"> (Test key entered in API publishable key or secret key )</span>';

      if (
    IS_ADMIN_FLAG === true && (strpos(MODULE_PAYMENT_STRIPE_PUBLISHABLE_TEST_KEY,'_test_') !== false ) == false || (strpos(MODULE_PAYMENT_STRIPE_SECRET_TEST_KEY,'_test_') !== false ) == false$this->title .= '<span class="alert"> (Test key not entered in the test mode field)</span>';

      if ((int)
    MODULE_PAYMENT_STRIPE_STATUS_ID 0) {
        
    $this->order_status MODULE_PAYMENT_STRIPE_STATUS_ID;
      
      }

      if (
    is_object($order)) $this->update_status();
      }

    // class methods
    function update_status() {
      global 
    $order$db,$amount,$payment_currency;

      if (
    $this->enabled && (int)MODULE_PAYMENT_STRIPE_ZONE && isset($order->billing['country']['id'])) {
        
    $check_flag false;
        
    $check $db->Execute("select zone_id from " TABLE_ZONES_TO_GEO_ZONES " where geo_zone_id = '" MODULE_PAYMENT_STRIPE_ZONE "' and zone_country_id = '" . (int)$order->billing['country']['id'] . "' order by zone_id");
        while (!
    $check->EOF) {
          if (
    $check->fields['zone_id'] < 1) {
            
    $check_flag true;
            break;
          } elseif (
    $check->fields['zone_id'] == $order->billing['zone_id']) {
            
    $check_flag true;
            break;
          }
          
    $check->MoveNext();
        }

        if (
    $check_flag == false) {
          
    $this->enabled false;
        }
      }

      
    // other status checks?
      
    if ($this->enabled) {
        
    // other checks here
      
    }
    }

    function 
    javascript_validation() {
      return 
    false;
    }

    function 
    selection() {
      return array(
    'id' => $this->code,
                   
    'module' => $this->title);
    }

    function 
    pre_confirmation_check() {
      global 
    $order$db,$stripeCustomerID,$user_id,$stripe_select,$order_total_modules;
       
    $stripe_select 'True';
      if (
    MODULE_PAYMENT_STRIPE_TEST_MODE === 'True') {
          
    $publishable_key MODULE_PAYMENT_STRIPE_PUBLISHABLE_TEST_KEY;
          
    $secret_key MODULE_PAYMENT_STRIPE_SECRET_TEST_KEY;
          
    $test_mode true;
        }else{
          
    $publishable_key MODULE_PAYMENT_STRIPE_PUBLISHABLE_KEY;
          
    $secret_key MODULE_PAYMENT_STRIPE_SECRET_KEY;
          
    $test_mode false;
        }

      
    $payment_currency $order->info['currency'];
      
    $Xi_currency = ['BIF','CLP','DJF','GNF','JPY','KMF','KRW','MGA','PYG','RWF','UGX','VND','VUV','XAF','XOF','XPF'];
      
    $Xiooo_currency = ['BHD','JOD','KWD','OMR','TND'];

      if (
    in_array($payment_currency,$Xi_currency) == true ) {
          
    $multiplied_by 1;
          
    $decimal_places 0;
        } elseif (
    in_array($payment_currency,$Xiooo_currency) == true ) {
          
    $multiplied_by 1000;
          
    $decimal_places 2;
        }else{
          
    $multiplied_by 100;
          
    $decimal_places 2;
        }

      if ( isset(
    $_SESSION['opc_saved_order_total'])) {
         
    $order_value $_SESSION['opc_saved_order_total'];
        }else{

          if (
    MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS == 'true' && MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER >= $order->info['total']) {
             
    $order_value $order->info['total'] + MODULE_ORDER_TOTAL_LOWORDERFEE_FEE ;
            } else{
             
    $order_value $order->info['total'];
            }  

        }
      
    $amount_total=round($order_value $order->info['currency_value'],$decimal_places)*$multiplied_by;
      
      
    $fullname $order->billing['firstname'].= $order->billing['lastname'];
      
    $email $order->customer['email_address'];
      
    $user_id $_SESSION['customer_id'];
      
    $registered_customer false;
      
    $stripe_customer $db->Execute("SELECT stripe_customers_id FROM " TABLE_STRIPE " WHERE customers_id = '" .$_SESSION['customer_id'] . "' order by id DESC LIMIT 1");
      if (
    $stripe_customer->RecordCount() > 0) {
      
    $registered_customer true;
    }
      require_once 
    'stripepay/create.php' ;

    }

    function 
    confirmation() {
      return 
    false;
    }

    function 
    process_button() {
      return 
    false;
    }

    function 
    before_process() {
      global 
    $order;
        
    $order_comment $_SESSION['order_add_comment']."\n Stripe ID:";
        
    $order_comment $order_comment $_SESSION['paymentIntent'];
         
    $order->info['comments'] = $order_comment;
    }

    function 
    after_process() {
         unset(
    $_SESSION['order_add_comment']);
         unset(
    $_SESSION['paymentIntent']);
        }

    function 
    get_error() {
      return 
    false;
    }

    function 
    check() {
      global 
    $db;

      if (!isset(
    $this->_check)) {
        
    $check_query $db->Execute("select configuration_value from " TABLE_CONFIGURATION " where configuration_key = 'MODULE_PAYMENT_STRIPE_STATUS'");
        
    $this->_check $check_query->RecordCount();
      }
      return 
    $this->_check;
    }

    function 
    install() {
      global 
    $db$messageStack;
      if (
    defined('MODULE_PAYMENT_STRIPE_STATUS')) {
        
    $messageStack->add_session('StMoneyOrder module already installed.''error');
        
    zen_redirect(zen_href_link(FILENAME_MODULES'set=payment&module=stripe''NONSSL'));
        return 
    'failed';
      }

      
    $db-> execute("DROP TABLE IF EXISTS " DB_PREFIX  "stripe ;");  
      
    $db-> execute("CREATE TABLE  " DB_PREFIX  "stripe(id INT(11) AUTO_INCREMENT PRIMARY KEY,customers_id INT(11),Stripe_Customers_id VARCHAR(32))");

      
    $db->Execute("insert into " TABLE_CONFIGURATION " (`configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`, `val_function`) VALUES('Enable Stripe Secure Payment Module', 'MODULE_PAYMENT_STRIPE_STATUS', 'True', 'Do you want to accept Stripe Secure Payment?', 6, 1, NULL, now(), NULL, 'zen_cfg_select_option(array(\'True\', \'False\'), ', NULL)");

      
    $db->Execute("insert into " TABLE_CONFIGURATION " (`configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`, `val_function`) VALUES
      ('API Publishable Key:', 'MODULE_PAYMENT_STRIPE_PUBLISHABLE_KEY', '', 'Enter API Publishable Key provided by stripe', 6, 1, NULL, now(), NULL, NULL, NULL)"
    );

      
    $db->Execute("insert into " TABLE_CONFIGURATION " (`configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`, `val_function`) VALUES      
      ('Sort order of display.', 'MODULE_PAYMENT_STRIPE_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', 6, 1, NULL, now(), NULL, NULL, NULL)"
    );

      
    $db->Execute("insert into " TABLE_CONFIGURATION " (`configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`, `val_function`) VALUES
      ('Payment Zone', 'MODULE_PAYMENT_STRIPE_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', 6, 1, NULL, now(), 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes(', NULL)"
    );

      
    $db->Execute("insert into " TABLE_CONFIGURATION " (`configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`, `val_function`) VALUES      
      ('Set Order Status', 'MODULE_PAYMENT_STRIPE_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', 6, 1, NULL, now(), 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses(', NULL)"
    );

      
    $db->Execute("insert into " TABLE_CONFIGURATION " (`configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`, `val_function`) VALUES
      ('API Secret Key:', 'MODULE_PAYMENT_STRIPE_SECRET_KEY', '', 'Enter API Secret Key provided by stripe', 6, 1, NULL, now(), 'zen_cfg_password_display', NULL, NULL)"
    );

      
    $db->Execute("insert into " TABLE_CONFIGURATION " (`configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`, `val_function`) VALUES      
      ('Test Mode - API Publishable Test Key:', 'MODULE_PAYMENT_STRIPE_PUBLISHABLE_TEST_KEY', '', 'Enter API Publishable Test Key provided by stripe', 6, 1, NULL, now(), NULL, NULL, NULL)"
    );

      
    $db->Execute("insert into " TABLE_CONFIGURATION " (`configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`, `val_function`) VALUES
      ('Test Mode - API Secret Test Key:', 'MODULE_PAYMENT_STRIPE_SECRET_TEST_KEY', '', 'Enter API Secret Test Key provided by stripe', 6, 1, NULL, now(), 'zen_cfg_password_display', NULL, NULL)"
    );

      
    $db->Execute("insert into " TABLE_CONFIGURATION " (`configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`, `val_function`) VALUES      
      ('Test Mode Stripe Secure Payment Module', 'MODULE_PAYMENT_STRIPE_TEST_MODE', 'True', 'Enter your Stripe API test publishable key and secret key.\r\nNote: Don\'t forget to set it to False after testing.', 6, 1, NULL, now(), NULL, 'zen_cfg_select_option(array(\'True\', \'False\'), ', NULL)"
    );
      
    }

    function 
    remove() {
      global 
    $db;
      
    $db->Execute("delete from " TABLE_CONFIGURATION " where configuration_key in ('" implode("', '"$this->keys()) . "')");
    }

    function 
    keys() {

      return array(
    'MODULE_PAYMENT_STRIPE_STATUS''MODULE_PAYMENT_STRIPE_TEST_MODE','MODULE_PAYMENT_STRIPE_ZONE''MODULE_PAYMENT_STRIPE_STATUS_ID''MODULE_PAYMENT_STRIPE_SORT_ORDER''MODULE_PAYMENT_STRIPE_PUBLISHABLE_KEY','MODULE_PAYMENT_STRIPE_SECRET_KEY','MODULE_PAYMENT_STRIPE_PUBLISHABLE_TEST_KEY','MODULE_PAYMENT_STRIPE_SECRET_TEST_KEY');
    }
    }

  8. #428
    Join Date
    Jul 2021
    Location
    Fukuoka Japan
    Posts
    125
    Plugin Contributions
    2

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    includes\templates\YOUR_TEMPLATE\templates\tpl_checkout_confirmation_default.php

    PHP Code:
    <?php
    /**
     * Page Template
     *
     * Loaded automatically by index.php?main_page=checkout_confirmation.
     * Displays final checkout details, cart, payment and shipping info details.
     *
     * @copyright Copyright 2003-2023 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: Steve 2023 Feb 23 Modified in v1.5.8a $
     */
    ?>
    <div class="centerColumn" id="checkoutConfirmDefault">

    <h1 id="checkoutConfirmDefaultHeading"><?php echo HEADING_TITLE?></h1>

    <?php if ($messageStack->size('redemptions') > 0) echo $messageStack->output('redemptions'); ?>
    <?php 
    if ($messageStack->size('checkout_confirmation') > 0) echo $messageStack->output('checkout_confirmation'); ?>
    <?php 
    if ($messageStack->size('checkout') > 0) echo $messageStack->output('checkout'); ?>

    <div id="checkoutBillto" class="back">
    <h2 id="checkoutConfirmDefaultBillingAddress"><?php echo HEADING_BILLING_ADDRESS?></h2>
    <?php if (!$flagDisablePaymentAddressChange) { ?>
    <div class="buttonRow forward"><?php echo '<a href="' zen_href_link(FILENAME_CHECKOUT_PAYMENT'''SSL') . '">' zen_image_button(BUTTON_IMAGE_EDIT_SMALLBUTTON_EDIT_SMALL_ALT) . '</a>'?></div>
    <?php ?>

    <address><?php echo zen_address_format($order->billing['format_id'], $order->billing1' ''<br>'); ?></address>

    <h3 id="checkoutConfirmDefaultPayment"><?php echo HEADING_PAYMENT_METHOD?></h3>
    <h4 id="checkoutConfirmDefaultPaymentTitle"><?php echo $payment_title?></h4>

    <?php
      
    if ($credit_covers === false && is_array($payment_modules->modules)) {
        if (
    $confirmation $payment_modules->confirmation()) {
    ?>
    <div class="important"><?php echo $confirmation['title']; ?></div>
    <?php
        
    }
    ?>
    <div class="important">
    <?php
          
    for ($i=0$n=sizeof($confirmation['fields']); $i<$n$i++) {
    ?>
    <div class="back"><?php echo $confirmation['fields'][$i]['title']; ?></div>
    <div ><?php echo $confirmation['fields'][$i]['field']; ?></div>
    <?php
         
    }
    ?>
          </div>
    <?php
      
    }
    ?>

    <br class="clearBoth">
    </div>

    <?php
      
    if ($_SESSION['sendto'] != false) {
    ?>
    <div id="checkoutShipto" class="forward">
    <h2 id="checkoutConfirmDefaultShippingAddress"><?php echo HEADING_DELIVERY_ADDRESS?></h2>
    <div class="buttonRow forward"><?php echo '<a href="' $editShippingButtonLink '">' zen_image_button(BUTTON_IMAGE_EDIT_SMALLBUTTON_EDIT_SMALL_ALT) . '</a>'?></div>

    <address><?php echo zen_address_format($order->delivery['format_id'], $order->delivery1' ''<br>'); ?></address>

    <?php
        
    if ($order->info['shipping_method']) {
    ?>
    <h3 id="checkoutConfirmDefaultShipment"><?php echo HEADING_SHIPPING_METHOD?></h3>
    <h4 id="checkoutConfirmDefaultShipmentTitle"><?php echo $order->info['shipping_method']; ?></h4>

    <?php
        
    }
    ?>
    </div>
    <?php
      
    }
    ?>
    <br class="clearBoth">
    <hr>

    <h2 id="checkoutConfirmDefaultHeadingComments"><?php echo HEADING_ORDER_COMMENTS?></h2>
    <div class="buttonRow forward"><?php echo  '<a href="' zen_href_link(FILENAME_CHECKOUT_PAYMENT'''SSL') . '">' zen_image_button(BUTTON_IMAGE_EDIT_SMALLBUTTON_EDIT_SMALL_ALT) . '</a>'?></div>
    <div><?php echo (empty($order->info['comments']) ? NO_COMMENTS_TEXT nl2br(zen_output_string_protected($order->info['comments'])) . zen_draw_hidden_field('comments'$order->info['comments'])); ?></div>
    <br class="clearBoth">
    <hr>

    <h2 id="checkoutConfirmDefaultHeadingCart"><?php echo HEADING_PRODUCTS?></h2>

    <div class="buttonRow forward"><?php echo '<a href="' zen_href_link(FILENAME_SHOPPING_CART'''SSL') . '">' zen_image_button(BUTTON_IMAGE_EDIT_SMALLBUTTON_EDIT_SMALL_ALT) . '</a>'?></div>
    <br class="clearBoth">

    <?php  if ($flagAnyOutOfStock) { ?>
    <?php    
    if (STOCK_ALLOW_CHECKOUT == 'true') {  ?>
    <div class="messageStackError"><?php echo OUT_OF_STOCK_CAN_CHECKOUT?></div>
    <?php    } else { ?>
    <div class="messageStackError"><?php echo OUT_OF_STOCK_CANT_CHECKOUT?></div>
    <?php    //endif STOCK_ALLOW_CHECKOUT ?>
    <?php  
    //endif flagAnyOutOfStock ?>


          <table id="cartContentsDisplay">
            <tr class="cartTableHeading">
            <th scope="col" id="ccQuantityHeading"><?php echo TABLE_HEADING_QUANTITY?></th>
            <th scope="col" id="ccProductsHeading"><?php echo TABLE_HEADING_PRODUCTS?></th>
    <?php
      
    // If there are tax groups, display the tax columns for price breakdown
      
    if (sizeof($order->info['tax_groups']) > 1) {
    ?>
              <th scope="col" id="ccTaxHeading"><?php echo HEADING_TAX?></th>
    <?php
      
    }
    ?>
              <th scope="col" id="ccTotalHeading"><?php echo TABLE_HEADING_TOTAL?></th>
            </tr>
    <?php // now loop thru all products to display quantity and price ?>
    <?php 
    for ($i=0$n=sizeof($order->products); $i<$n$i++) { ?>
            <tr class="<?php echo $order->products[$i]['rowClass']; ?>">
              <td  class="cartQuantity"><?php echo $order->products[$i]['qty']; ?>&nbsp;x</td>
              <td class="cartProductDisplay"><?php echo $order->products[$i]['name']; ?>

              <?php  if (!empty($stock_check[$i])) echo $stock_check[$i]; ?>

    <?php // if there are attributes, loop thru them and display one per line
        
    if (isset($order->products[$i]['attributes']) && sizeof($order->products[$i]['attributes']) > ) {
        echo 
    '<ul class="cartAttribsList">';
          for (
    $j=0$n2=sizeof($order->products[$i]['attributes']); $j<$n2$j++) {
    ?>
          <li>
              <?php
              
    echo $order->products[$i]['attributes'][$j]['option'] . ': ' nl2br(zen_output_string_protected($order->products[$i]['attributes'][$j]['value']));
              
    ?>
          </li>
    <?php
          
    // end loop
          
    echo '</ul>';
        } 
    // endif attribute-info
    ?>
            </td>

    <?php // display tax info if exists ?>
    <?php 
    if (sizeof($order->info['tax_groups']) > 1)  { ?>
            <td class="cartTotalDisplay">
              <?php echo zen_display_tax_value($order->products[$i]['tax']); ?>%</td>
    <?php    }  // endif tax info display  ?>
            <td class="cartTotalDisplay">
              <?php echo $currencies->display_price($order->products[$i]['final_price'], $order->products[$i]['tax'], $order->products[$i]['qty']);
              if (
    $order->products[$i]['onetime_charges'] != ) echo '<br> ' $currencies->display_price($order->products[$i]['onetime_charges'], $order->products[$i]['tax'], 1);
    ?>
            </td>
          </tr>
    <?php  }  // end for loopthru all products ?>
          </table>
          <hr>

    <?php
      
    if (MODULE_ORDER_TOTAL_INSTALLED) {
        
    $order_totals $order_total_modules->process();
    ?>
    <div id="orderTotals"><?php $order_total_modules->output(); ?></div>
    <?php
      
    }
    ?>

    <!--------stripe-------->
    <!-- Display a payment form -->
        <form id="payment-form">
        <div id="payment-head" style="color: #2254dd;  font-size: 24px;  font-weight: bold; margin:24px 0 12px;">Stripe</div>    
        <div id="payment-element">
            <!--Stripe.js injects the Payment Element-->
          </div>
          <div id="payment-message" class="hidden"></div>
          <button id="submit">
          <div class="spinner hidden" id="spinner"></div>
            <span id="button-text"><?php echo BUTTON_CONFIRM_ORDER_ALT?></span>
          </button>
          </form>   
    <!--------end-stripe-------->

    <?php
      
    echo zen_draw_form('checkout_confirmation'$form_action_url'post''id="checkout_confirmation" onsubmit="submitonce();"');

      if (
    $credit_covers === false && is_array($payment_modules->modules)) {
        echo 
    $payment_modules->process_button();
      }
    ?>
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CONFIRM_ORDERBUTTON_CONFIRM_ORDER_ALT'name="btn_submit" id="btn_submit"') ;?></div>
    </form>
    <div class="buttonRow back"><?php echo '<strong>' TITLE_CONTINUE_CHECKOUT_PROCEDURE '</strong>' '<br>' TEXT_CONTINUE_CHECKOUT_PROCEDURE?></div>

    </div>

    <!--------stripe-------->
    <script>

    if (typeof clientS === 'undefined') {

        document.getElementById('btn_submit').display ="block";
        document.getElementById('checkout_confirmation').display ="block";
        document.getElementById('payment-form','submit').style.display ="none";
      }else{
        document.getElementById('btn_submit').style.display ="none";
        document.getElementById('checkout_confirmation').style.display ="none";
        document.getElementById('payment-form','submit').display ="block";

      }
    </script>
    <!--------end-stripe-------->

  9. #429
    Join Date
    May 2010
    Location
    Texas
    Posts
    491
    Plugin Contributions
    0

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by Gozzandes View Post
    includes\templates\YOUR_TEMPLATE\templates\tpl_checkout_confirmation_default.php
    The source of that file appears to be the 1.5.8 stripe version. Will that also work for 1.5.7c?

  10. #430
    Join Date
    Jul 2021
    Location
    Fukuoka Japan
    Posts
    125
    Plugin Contributions
    2

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by split63 View Post
    The source of that file appears to be the 1.5.8 stripe version. Will that also work for 1.5.7c?
    Paste following code from line 169
    PHP Code:
    <!--------stripe-------->
    <!-- Display a payment form -->
        <form id="payment-form">
        <div id="payment-head" style="color: #2254dd;  font-size: 24px;  font-weight: bold; margin:24px 0 12px;">Stripe</div>    
        <div id="payment-element">
            <!--Stripe.js injects the Payment Element-->
          </div>
          <div id="payment-message" class="hidden"></div>
          <button id="submit">
          <div class="spinner hidden" id="spinner"></div>
            <span id="button-text"><?php echo BUTTON_CONFIRM_ORDER_ALT?></span>
          </button>
          </form>   
    <!--------end-stripe-------->

    Paste this code below the last line.
    PHP Code:
    <!--------stripe-------->
    <
    script>
    if (
    typeof clientS === 'undefined') {

        
    document.getElementById('btn_submit').display ="block";
        
    document.getElementById('checkout_confirmation').display ="block";
        
    document.getElementById('payment-form','submit').style.display ="none";
      }else{
        
    document.getElementById('btn_submit').style.display ="none";
        
    document.getElementById('checkout_confirmation').style.display ="none";
        
    document.getElementById('payment-form','submit').display ="block";

      }
    </script>
    <!--------end-stripe--------> 

 

 
Page 43 of 58 FirstFirst ... 33414243444553 ... LastLast

Similar Threads

  1. pay2check.com payment module?
    By sunrise99 in forum Addon Payment Modules
    Replies: 0
    Last Post: 1 Nov 2011, 03:55 AM
  2. klikandpay.com payment module
    By rulest in forum Addon Payment Modules
    Replies: 0
    Last Post: 24 Sep 2010, 06:06 PM
  3. AlertPay Payment Module Integration Help Please!
    By etorf9751 in forum Addon Payment Modules
    Replies: 8
    Last Post: 16 Aug 2010, 05:06 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR