Zen Cart Logo
Forums / All Other Contributions/Addons / One-Page Checkout [Support Thread]

One-Page Checkout [Support Thread]

Views: 629,018

Results 281 to 300 of 3,073
27 Dec 2016, 12:27 PM
#281
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

One-Page Checkout [Support Thread]

There's the issue:

jQuery version: 1.4.2  index.php:259:13

One-Page Checkout requires a minimum of 1.8.0 (or was it 1.7.0?) ... anyway, 1.4.2 isn't going to cut it.

You'll need to review your store's files (do you use Zen Lightbox, by chance?) to see where that version of jQuery is being loaded, remove it and (in your template's html_header.php file) load a more recent version of jQuery (like 1.11.0) for the One-Page Checkout (or any other plugin that uses an AJAX interface) to operate properly. You can use the admin Tools->Developers Tool Kit and search for 1.4.2.

28 Dec 2016, 8:07 AM
#282
nicksab avatar

nicksab

Totally Zenned

Join Date:
Apr 2011
Posts:
592
Plugin Contributions:
0

Re: One-Page Checkout [Support Thread]

lat9:

There's the issue:

jQuery version: 1.4.2 index.php:259:13

> One-Page Checkout requires a minimum of 1.8.0 (or was it 1.7.0?) ... anyway, 1.4.2 isn't going to cut it.  
> 
> You'll need to review your store's files (do you use Zen Lightbox, by chance?) to see where that version of jQuery is being loaded, remove it and (in your template's html_header.php file) load a more recent version of jQuery (like 1.11.0) for the One-Page Checkout (or any other plugin that uses an AJAX interface) to operate properly.  You can use the admin Tools->Developers Tool Kit and search for **1.4.2**.

Nothing comes up when I do a search for 1.4.2.

I am not using zen_lightbox but I am using zen_colorbox.

When I do a search for jquery, I am getting the following result:

C:/xampp/htdocs/store/includes/classes/zen_colorbox/autoload_default.php

Line #12 : jQuery(function($) {

C:/xampp/htdocs/store/includes/classes/zen_colorbox/jquery_colorbox.php

Line # 9 : * @version $Id: jquery_colorbox.php 2012-04-30 niestudio $

Line #11 : echo '<script type="text/javascript" src="' . $template->get_template_dir('.js', DIR_WS_TEMPLATE, $current_page_base, 'jscript') . '/jquery.colorbox-min.js"></script>';

C:/xampp/htdocs/store/includes/languages/english/html_includes/royal_fleur/define_gallery.php

Line # 11 : <script type="text/javascript" src="engine1/jquery.js"></script>

C:/xampp/htdocs/store/includes/languages/modules/pages/checkout_one/jscript_main.php

Line # 13 : return jQuery(":input[name=" + fields[0] + "]").val() + jQuery(":input[name=" + fields[1] + "]").val();

Line #134 : var str = jQuery('form[name="checkout_payment"]').serializeArray();

Line #140 : jQuery('#checkoutPayment').hide();

Line #141 : jQuery('#navBreadCrumb').html(response.breadCrumbHtml);

Line #142 : jQuery('#checkoutPayment').before(response.confirmationHtml);

Line #143 : jQuery(document).attr('title', response.pageTitle);

Line #144 : jQuery(document).scrollTop( 0 );

Line #148 : jQuery('form[name="checkout_payment"]')[0].submit();

Line #157 : if (jQuery('#'+paymentValue+'_collects_onsite').val()) {

Line #158 : if (jQuery('#pmt-'+paymentValue).is(':checked')) {

Line #169 : var str = jQuery('form[name="checkout_payment"]').serializeArray();

Line #176 : jQuery('#checkoutPayment').hide();

Line #177 : jQuery('#navBreadCrumb').html(response.breadCrumbHtml);

Line #178 : jQuery('#checkoutPayment').before(response.confirmationHtml);

Line #179 : jQuery(document).attr('title', response.pageTitle);

Line #180 : jQuery(document).scrollTop( 0 );

Line #188 : jQuery('#confirm-the-order').val( value );

Line #192 : jQuery(document).ready(function(){

Line #194 : if (jQuery( 'form[name="checkout_payment"]' ).length == 0) {

Line #198 : if (jQuery( '#orderTotalDivs' ).length == 0) {

Line #202 : if (jQuery( '#current-order-total' ).length == 0) {

Line #209 : if (jQuery( '#otshipping' ).length == 0) {

Line #221 : jQuery( '#checkoutOneShippingFlag' ).show();

Line #223 : zcLog2Console ( 'jQuery version: '+jQuery().jquery );

Line #231 : var scrollPos = jQuery( "#checkoutShippingMethod" ).offset().top;

Line #232 : jQuery(window).scrollTop( scrollPos );

Line #237 : var shippingSelected = jQuery( 'input[name=shipping]' );

Line #239 : shippingSelected = jQuery( 'input[name=shipping]:checked' );

Line #251 : // shipping-module has required inputs that should accompany the post, format the necessary jQuery to gather those inputs.

Line #260 : var <?php echo $variable_name; ?> = jQuery( "input[name=<?php echo $current_input_name; ?>]<?php echo ($selection_required) ? ':checked' : ''; ?>" ).val();

Line #296 : jQuery( '#orderTotalDivs' ).html(response.orderTotalHtml);

Line #299 : jQuery( '#otshipping, #otshipping+br' ).show ();

Line #303 : jQuery(location).attr( 'href', timeoutUrl );

Line #308 : jQuery( '#checkoutShippingMethod input[name=shipping]' ).prop( 'checked', false );

Line #309 : jQuery( '#checkoutShippingChoices' ).html( response.shippingHtml );

Line #310 : jQuery( '#checkoutShippingChoices' ).on( 'click', 'input[name=shipping]', function ( event ) {

Line #313 : jQuery( '#otshipping, #otshipping+br' ).hide ();

Line #330 : jQuery( '#confirm-order' ).attr( 'disabled', true );

Line #338 : jQuery( 'form[name="checkout_payment"]' ).unbind( 'submit' ).submit();

Line #341 : jQuery( '#confirm-order' ).attr('disabled', false);

Line #353 : jQuery( '#checkoutShippingMethod input[name=shipping]' ).click(function( event ) {

Line #357 : jQuery( 'form[name="checkout_payment"]' ).submit(function( event ) {

C:/xampp/htdocs/store/includes/languages/modules/pages/checkout_one_confirmation/jscript_main.php

Line #35 : // jQuery. This should happen **only if ** the active payment method doesn't require the confirmation page

Line #40 : jQuery(document).ready(function(){

Line #41 : jQuery('body', 'html').css({

Line #46 : jQuery('#navBreadCrumb, #bannerSix, #bannerOne, #checkoutOneConfirmationButtons').hide();

Line #47 : jQuery('#checkoutOneConfirmationLoading').show();

Line #48 : jQuery('form[name="checkout_confirmation"]').submit();

C:/xampp/htdocs/store/includes/languages/templates/royal_fleur/jscript/jscript_framework.php

Line # 16 : var deferred = jQuery.Deferred(function (d) {

Line # 24 : data: jQuery.extend(true,{

Line # 28 : settings = jQuery.extend(true, {}, defaults, options);

Line # 36 : var jqXHRSettings = jQuery.extend(true, {}, settings, {

Line # 50 : jQuery.ajax(jqXHRSettings);

Line # 93 : settings = jQuery.extend(true, {}, defaults, options);

C:/xampp/htdocs/store/includes/languages/templates/template_default/jscript/jscript_framework.php

Line # 16 : var deferred = jQuery.Deferred(function (d) {

Line # 24 : data: jQuery.extend(true,{

Line # 28 : settings = jQuery.extend(true, {}, defaults, options);

Line # 36 : var jqXHRSettings = jQuery.extend(true, {}, settings, {

Line # 50 : jQuery.ajax(jqXHRSettings);

Line # 93 : settings = jQuery.extend(true, {}, defaults, options);

C:/xampp/htdocs/store/includes/modules/pages/checkout_one/jscript_main.php

Line # 13 : return jQuery(":input[name=" + fields[0] + "]").val() + jQuery(":input[name=" + fields[1] + "]").val();

Line #134 : var str = jQuery('form[name="checkout_payment"]').serializeArray();

Line #140 : jQuery('#checkoutPayment').hide();

Line #141 : jQuery('#navBreadCrumb').html(response.breadCrumbHtml);

Line #142 : jQuery('#checkoutPayment').before(response.confirmationHtml);

Line #143 : jQuery(document).attr('title', response.pageTitle);

Line #144 : jQuery(document).scrollTop( 0 );

Line #148 : jQuery('form[name="checkout_payment"]')[0].submit();

Line #157 : if (jQuery('#'+paymentValue+'_collects_onsite').val()) {

Line #158 : if (jQuery('#pmt-'+paymentValue).is(':checked')) {

Line #169 : var str = jQuery('form[name="checkout_payment"]').serializeArray();

Line #176 : jQuery('#checkoutPayment').hide();

Line #177 : jQuery('#navBreadCrumb').html(response.breadCrumbHtml);

Line #178 : jQuery('#checkoutPayment').before(response.confirmationHtml);

Line #179 : jQuery(document).attr('title', response.pageTitle);

Line #180 : jQuery(document).scrollTop( 0 );

Line #188 : jQuery('#confirm-the-order').val( value );

Line #192 : jQuery(document).ready(function(){

Line #194 : if (jQuery( 'form[name="checkout_payment"]' ).length == 0) {

Line #198 : if (jQuery( '#orderTotalDivs' ).length == 0) {

Line #202 : if (jQuery( '#current-order-total' ).length == 0) {

Line #209 : if (jQuery( '#otshipping' ).length == 0) {

Line #221 : jQuery( '#checkoutOneShippingFlag' ).show();

Line #223 : zcLog2Console ( 'jQuery version: '+jQuery().jquery );

Line #231 : var scrollPos = jQuery( "#checkoutShippingMethod" ).offset().top;

Line #232 : jQuery(window).scrollTop( scrollPos );

Line #237 : var shippingSelected = jQuery( 'input[name=shipping]' );

Line #239 : shippingSelected = jQuery( 'input[name=shipping]:checked' );

Line #251 : // shipping-module has required inputs that should accompany the post, format the necessary jQuery to gather those inputs.

Line #260 : var <?php echo $variable_name; ?> = jQuery( "input[name=<?php echo $current_input_name; ?>]<?php echo ($selection_required) ? ':checked' : ''; ?>" ).val();

Line #296 : jQuery( '#orderTotalDivs' ).html(response.orderTotalHtml);

Line #299 : jQuery( '#otshipping, #otshipping+br' ).show ();

Line #303 : jQuery(location).attr( 'href', timeoutUrl );

Line #308 : jQuery( '#checkoutShippingMethod input[name=shipping]' ).prop( 'checked', false );

Line #309 : jQuery( '#checkoutShippingChoices' ).html( response.shippingHtml );

Line #310 : jQuery( '#checkoutShippingChoices' ).on( 'click', 'input[name=shipping]', function ( event ) {

Line #313 : jQuery( '#otshipping, #otshipping+br' ).hide ();

Line #330 : jQuery( '#confirm-order' ).attr( 'disabled', true );

Line #338 : jQuery( 'form[name="checkout_payment"]' ).unbind( 'submit' ).submit();

Line #341 : jQuery( '#confirm-order' ).attr('disabled', false);

Line #353 : jQuery( '#checkoutShippingMethod input[name=shipping]' ).click(function( event ) {

Line #357 : jQuery( 'form[name="checkout_payment"]' ).submit(function( event ) {

C:/xampp/htdocs/store/includes/modules/pages/checkout_one_confirmation/jscript_main.php

Line #35 : // jQuery. This should happen **only if ** the active payment method doesn't require the confirmation page

Line #40 : jQuery(document).ready(function(){

Line #41 : jQuery('body', 'html').css({

Line #46 : jQuery('#navBreadCrumb, #bannerSix, #bannerOne, #checkoutOneConfirmationButtons').hide();

Line #47 : jQuery('#checkoutOneConfirmationLoading').show();

Line #48 : jQuery('form[name="checkout_confirmation"]').submit();

C:/xampp/htdocs/store/includes/modules/pages/checkout_payment/jscript_payeezy.php

Line #186 : jQuery(function($) {

C:/xampp/htdocs/store/includes/modules/pages/document_general_info/jscript_zen_colorbox.php

Line #13 : require_once(DIR_FS_CATALOG . DIR_WS_CLASSES . 'zen_colorbox/jquery_colorbox.php');

C:/xampp/htdocs/store/includes/modules/pages/document_product_info/jscript_zen_colorbox.php

Line #13 : require_once(DIR_FS_CATALOG . DIR_WS_CLASSES . 'zen_colorbox/jquery_colorbox.php');

C:/xampp/htdocs/store/includes/modules/pages/page/jscript_zen_colorbox.php

Line #13 : require_once(DIR_FS_CATALOG . DIR_WS_CLASSES . 'zen_colorbox/jquery_colorbox.php');

Line #16 : jQuery(function($) {

C:/xampp/htdocs/store/includes/modules/pages/product_free_shipping_info/jscript_zen_colorbox.php

Line #13 : require_once(DIR_FS_CATALOG . DIR_WS_CLASSES . 'zen_colorbox/jquery_colorbox.php');

C:/xampp/htdocs/store/includes/modules/pages/product_info/jscript_zen_colorbox.php

Line #13 : require_once(DIR_FS_CATALOG . DIR_WS_CLASSES . 'zen_colorbox/jquery_colorbox.php');

C:/xampp/htdocs/store/includes/modules/pages/product_music_info/jscript_zen_colorbox.php

Line #13 : require_once(DIR_FS_CATALOG . DIR_WS_CLASSES . 'zen_colorbox/jquery_colorbox.php');

C:/xampp/htdocs/store/includes/modules/pages/product_reviews/jscript_zen_colorbox.php

Line #13 : require_once(DIR_FS_CATALOG . DIR_WS_CLASSES . 'zen_colorbox/jquery_colorbox.php');

C:/xampp/htdocs/store/includes/modules/pages/product_reviews_info/jscript_zen_colorbox.php

Line #13 : require_once(DIR_FS_CATALOG . DIR_WS_CLASSES . 'zen_colorbox/jquery_colorbox.php');

C:/xampp/htdocs/store/includes/modules/pages/product_reviews_write/jscript_zen_colorbox.php

Line #13 : require_once(DIR_FS_CATALOG . DIR_WS_CLASSES . 'zen_colorbox/jquery_colorbox.php');

C:/xampp/htdocs/store/includes/templates/responsive_classic/common/html_header.php

Line #134 : /** CDN for jQuery core **/

Line #137 : <script type="text/javascript">window.jQuery || document.write(unescape('%3Cscript type="text/javascript" src="//code.jquery.com/jquery-1.12.0.min.js"%3E%3C/script%3E'));</script>

Line #138 : <script type="text/javascript">window.jQuery || document.write(unescape('%3Cscript type="text/javascript" src="<?php echo $template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript'); ?>/jquery.min.js"%3E%3C/script%3E'));</script>

Line #184 : $responsive_mobile = '<link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . 'responsive_mobile.css' . '" /><link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . 'jquery.mmenu.all.css' . '" />';

Line #185 : $responsive_tablet = '<link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . 'responsive_tablet.css' . '" /><link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . 'jquery.mmenu.all.css' . '" />';

C:/xampp/htdocs/store/includes/templates/responsive_classic/jscript/jscript_responsive_framework.php

Line #143 : }) (jQuery);

C:/xampp/htdocs/store/includes/templates/responsive_classic/template_info.php

Line #17 : $template_description = 'This HTML5 template is mobile friendly and uses contemporary Responsive CSS to allow sharing of a single template across multiple device types. It uses PHP Mobile Detect to serve up the optimized layout based on device. It allows the designer to implement device-specific php, jquery, javascript or ajax.';

C:/xampp/htdocs/store/includes/templates/responsive_classic/templates/tpl_modules_mobile_menu.php

Line #144 : <script src="<?php echo $template->get_template_dir('jquery.mmenu.min.all.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.mmenu.min.all.js' ?>" type="text/javascript"></script>

Line #145 : <script src="<?php echo $template->get_template_dir('jquery.mmenu.fixedelements.min.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.mmenu.fixedelements.min.js' ?>" type="text/javascript"></script>

C:/xampp/htdocs/store/includes/templates/royal_fleur/jscript/jscript_framework.php

Line # 16 : var deferred = jQuery.Deferred(function (d) {

Line # 24 : data: jQuery.extend(true,{

Line # 28 : settings = jQuery.extend(true, {}, defaults, options);

Line # 36 : var jqXHRSettings = jQuery.extend(true, {}, settings, {

Line # 50 : jQuery.ajax(jqXHRSettings);

Line # 93 : settings = jQuery.extend(true, {}, defaults, options);

C:/xampp/htdocs/store/includes/templates/royal_fleur/jscript/jscript_jquery.min.php

Line #2 : if (typeof jQuery == 'undefined') {

Line #3 : document.write(unescape("%3Cscript src='//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js' type='text/javascript'%3E%3C/script%3E"));

C:/xampp/htdocs/store/includes/templates/royal_fleur/templates/zx_slideshow.php

Line # 1 : <script language="javascript" type="text/javascript" src="<?php echo($template->get_template_dir('jquery.nivo.slider.pack.js',DIR_WS_TEMPLATE, $current_page_base,'jscript'). '/jquery.nivo.slider.pack.js'); ?>"></script>

Line # 4 : jQuery(window).load(function() {

Line # 5 : jQuery('#slider').nivoSlider({

C:/xampp/htdocs/store/includes/templates/template_default/common/html_header.php

Line #120 : /** CDN for jQuery core **/

Line #123 : <script type="text/javascript">window.jQuery || document.write(unescape('%3Cscript type="text/javascript" src="//code.jquery.com/jquery-1.12.0.min.js"%3E%3C/script%3E'));</script>

Line #124 : <script type="text/javascript">window.jQuery || document.write(unescape('%3Cscript type="text/javascript" src="<?php echo $template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript'); ?>/jquery.min.js"%3E%3C/script%3E'));</script>

C:/xampp/htdocs/store/includes/templates/template_default/jscript/jscript_framework.php

Line # 16 : var deferred = jQuery.Deferred(function (d) {

Line # 24 : data: jQuery.extend(true,{

Line # 28 : settings = jQuery.extend(true, {}, defaults, options);

Line # 36 : var jqXHRSettings = jQuery.extend(true, {}, settings, {

Line # 50 : jQuery.ajax(jqXHRSettings);

Line # 93 : settings = jQuery.extend(true, {}, defaults, options);

C:\xampp\htdocs\store\royal/includes/ckeditor.php

Line #20 : <script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>

Line #21 : <script>window.jQuery || document.write('<script src="includes/javascript/jquery-1.12.1.min.js"></script>');</script>

C:\xampp\htdocs\store\royal/includes/header.php

Line #198 : <!-- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.1/jquery.min.js"></script> -->

Line #201 : <script src="includes/javascript/jquery-1.12.1.min.js"></script>

C:\xampp\htdocs\store\royal/product_sorter.php

Line # 60 : <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">

Line # 76 : <script src="//code.jquery.com/jquery-1.10.2.js"></script>

Line # 77 : <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

C:\xampp\htdocs\store\royal/stats_inventory_report.php

Line #150 : <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>

Line #151 : <script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>


And the only jquery I could find is in the template royal_fleur in the jquery/scripts file named jquery-1.7.1.min.js

I am getting really confused with this. I understand that it is not calling the right jquery but I cannot figure out what s calling it.
28 Dec 2016, 12:12 PM
#283
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: One-Page Checkout [Support Thread]

@nicksab, is this site publically available? If so, you could PM the site's link to me.

If not, then my best guess on where the jQuery 1.4.2 is coming from is either the colorbox or nivo-slider javascript files.

29 Dec 2016, 5:36 PM
#284
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: One-Page Checkout [Support Thread]

lat9:

@nicksab, is this site publically available? If so, you could PM the site's link to me.

If not, then my best guess on where the jQuery 1.4.2 is coming from is either the colorbox or nivo-slider javascript files.
You could also try using your admin's Tools->Developers Tool Kit to search for 1.4.2 in .js files (the default is to look only in .php files).

29 Dec 2016, 6:01 PM
#285
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: One-Page Checkout [Support Thread]

I've just submitted v1.0.11 to the Zen Cart plugins. This version corrects the following issues (the numbers reflect an issue number on the plugin's GitHub repository):

#66: Correct checkout "loop" when "Free Shipping Over" is set
#67: Correct checkout "loop" when shipping is taxed.
#68: Force the page back-to-top when the payment-method "collectsCardDataOnsite".
#69: Correct interoperation with the Ceon Manual Card payment method.

2 Jan 2017, 7:47 PM
#286
tmpinsnty avatar

tmpinsnty

New Zenner

Join Date:
Jun 2016
Location:
Minneapolis, MN
Posts:
37
Plugin Contributions:
0

Re: One-Page Checkout [Support Thread]

The details out of the way:
Fresh install of 1.5.5d. I have two plugins installed payeezy.js and the github version of COWOA.
For the record I love this plugin, my issues seems to be between COWOA, OPC, and Payeezy. With the above two installed, I can complete the order. But if I also have OPC installed it breaks the payeezy. Now according to Dr.Byte this is probably due to some .js issues. I would love to have all three plugins installed and playing nicely together. What is the best way to help the three developers?

2 Jan 2017, 8:10 PM
#287
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: One-Page Checkout [Support Thread]

@tmpinsnty, see post #265 in this support thread for instructions regarding how to check your browser's console log. If you could copy that information and paste it (using the "CODE" tags, the big # in the menu bar when you're writing your response), I can certainly help.

3 Jan 2017, 6:30 PM
#288
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: One-Page Checkout [Support Thread]

lat9:

I've just submitted v1.0.11 to the Zen Cart plugins. This version corrects the following issues (the numbers reflect an issue number on the plugin's GitHub repository):

#66: Correct checkout "loop" when "Free Shipping Over" is set
#67: Correct checkout "loop" when shipping is taxed.
#68: Force the page back-to-top when the payment-method "collectsCardDataOnsite".
#69: Correct interoperation with the Ceon Manual Card payment method.
v1.0.11 is now available for download ...

4 Jan 2017, 6:20 PM
#289
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: One-Page Checkout [Support Thread]

lat9:

@tmpinsnty, see post #265 in this support thread for instructions regarding how to check your browser's console log. If you could copy that information and paste it (using the "CODE" tags, the big # in the menu bar when you're writing your response), I can certainly help.
@tmpinsnty, Did you copy the file /includes/modules/pages/checkout_payment/jscript_payeezy.php to /includes/modules/pages/checkout_one?

I've just downloaded the payment module and it looks like that might be the missing bit.

5 Jan 2017, 10:41 AM
#290
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: One-Page Checkout [Support Thread]

Checkout Loop...

I have updated the files to 1.11 but my customers keep getting redirected back to checkout with the following alert:

Your order's details have changed. Please review the current values and re-submit.

Do you need details of my shipping settings?

One-page checkout is therefore currently "off" - and transactions now go through on traditional checkout system.

5 Jan 2017, 11:52 AM
#291
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: One-Page Checkout [Support Thread]

schoolboy:

Checkout Loop...

I have updated the files to 1.11 but my customers keep getting redirected back to checkout with the following alert:

Your order's details have changed. Please review the current values and re-submit.

Do you need details of my shipping settings?

One-page checkout is therefore currently "off" - and transactions now go through on traditional checkout system.

Problem goes away after rolling back to OPC ver 1.10 :huh:

5 Jan 2017, 12:32 PM
#292
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: One-Page Checkout [Support Thread]

Darnit. @schoolboy, would you generate me a log (I think the instructions on in post #265 or there-a-abouts) and check the console-log? I'll PM you an email address.

5 Jan 2017, 1:59 PM
#293
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: One-Page Checkout [Support Thread]

lat9:

Darnit. @schoolboy, would you generate me a log (I think the instructions on in post #265 or there-a-abouts) and check the console-log? I'll PM you an email address.
One thing to consider, too: Have you made any template-override changes into the tpl_checkout_one_default.php? The v1.0.10 -> 1.0.11 update introduced some required changes into the template_default version.

5 Jan 2017, 2:44 PM
#294
allmart avatar

allmart

Zen Follower

Join Date:
Feb 2016
Location:
Canada
Posts:
192
Plugin Contributions:
0

Re: One-Page Checkout [Support Thread]

I am hoping I can get some help with this great!!! plugin. I am using the Lambda Shipping Tables module and set up to have both retail and wholesale customers. My retail customers pay a flat fee for delivery locally, no issues with one page checkout. My wholesale customers pay 1% shipping if there order is less than $500. If there order is more than $500 they pay 2% shipping of there total order. At initial checkout the shipping rate under the Shipping Method heading matches the value at the bottom of Shopping Cart Contents. If changes are then made to the shopping cart and updated, the shipping value at the bottom of remains unchanged and does not match the new correct value under the Shipping Method Heading. My live site is running OPC 1.0.9 but have had to disable it because of this. I have tried 1.11 on my test site but nothing changes. Using ZC 1.55a.

Attachment 16869

5 Jan 2017, 4:29 PM
#295
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: One-Page Checkout [Support Thread]

@allmart, I've recreated your issue on my local testbed and hope to have a solution RSN (real soon now).

5 Jan 2017, 5:16 PM
#296
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: One-Page Checkout [Support Thread]

@allmart, I've found the issue and the correction is available on GitHub and will be part of One-Page Checkout's 1.0.12 release.

Would you download the updated version of /includes/modules/pages/checkout_one/header_php.php from that repository and let me know if that corrects the issue for you?

Essentially, when a shipping-method is selected, that method (and associated cost) are recorded into the customer's browser session. Leaving the OPC page and changing the cart's contents didn't change the shipping-method but did change the cost. The OPC issue was that the previous shipping cost was not being updated when the OPC processing was re-entered.

That value will now be properly updated on re-entry to the OPC's primary page.

5 Jan 2017, 5:31 PM
#297
allmart avatar

allmart

Zen Follower

Join Date:
Feb 2016
Location:
Canada
Posts:
192
Plugin Contributions:
0

Re: One-Page Checkout [Support Thread]

lat9,

Your fix worked like a charm. Thank you so much for your prompt response and resolution. I am sure that most of us will agree that this is one of Zen Cart's most valuable plugins.

Happy New Year!!!

5 Jan 2017, 5:49 PM
#298
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: One-Page Checkout [Support Thread]

@allmart, thanks for the update that the change has corrected your issue! With the community's help, One-Page Checkout just keeps getting better!

5 Jan 2017, 10:32 PM
#299
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: One-Page Checkout [Support Thread]

lat9:

One thing to consider, too: Have you made any template-override changes into the tpl_checkout_one_default.php? The v1.0.10 -> 1.0.11 update introduced some required changes into the template_default version.

I've answered your PM, but relative to the above... No override changes were made to this file.

9 Jan 2017, 10:51 PM
#300
designguy avatar

designguy

New Zenner

Join Date:
Jun 2013
Location:
Utah
Posts:
6
Plugin Contributions:
0

Re: One-Page Checkout [Support Thread]

I am having the similar trouble to Nicksab except I am running the following:

Checkout One version 1.0.11
ZenCart v1.5.5
Jquery is 2.1.4
Template is Furniture Black by 12leaves
Using the Gateway Processing Services Module (3-step redirect) for payment (gps.php), CEON module works fine. I'm assuming it just doesn't work with this payment module.

Clicking Confirm Order just reloads the same page. The gateway gets record of the transaction as processing, but it doesn't capture the payment. Never get to the confirmation page.

Debug shows this:

[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index:  in /home/mcas/public_html/includes/classes/order.php on line 354
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Trying to get property of non-object in /home/mcas/public_html/includes/classes/order.php on line 354
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index:  in /home/mcas/public_html/includes/classes/order.php on line 355
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Trying to get property of non-object in /home/mcas/public_html/includes/classes/order.php on line 355
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined variable: coupon_code in /home/mcas/public_html/includes/classes/order.php on line 356
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Trying to get property of non-object in /home/mcas/public_html/includes/classes/order.php on line 356
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: shipping in /home/mcas/public_html/includes/classes/order.php on line 363
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined variable: pass in /home/mcas/public_html/includes/modules/pages/checkout_one/header_php.php on line 210
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: freeshipper in /home/mcas/public_html/includes/classes/shipping.php on line 187
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Trying to get property of non-object in /home/mcas/public_html/includes/classes/shipping.php on line 187
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Constant FREE_SHIPPING_TITLE already defined in /home/mcas/public_html/includes/languages/english/modules/order_total/ot_shipping.php on line 26
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Constant FREE_SHIPPING_DESCRIPTION already defined in /home/mcas/public_html/includes/languages/english/modules/order_total/ot_shipping.php on line 27
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Constant MODULE_ORDER_TOTAL_COUPON_HEADER already defined in /home/mcas/public_html/includes/languages/english/modules/order_total/ot_coupon.php on line 14
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Constant SHIPPING_NOT_INCLUDED already defined in /home/mcas/public_html/includes/languages/english/modules/order_total/ot_gv.php on line 13
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Constant TAX_NOT_INCLUDED already defined in /home/mcas/public_html/includes/languages/english/modules/order_total/ot_gv.php on line 14
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Use of undefined constant MODULE_ORDER_TOTAL_GV_REDEEM_BOX - assumed 'MODULE_ORDER_TOTAL_GV_REDEEM_BOX' in /home/mcas/public_html/includes/modules/order_total/ot_gv.php on line 46
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: cot_gv in /home/mcas/public_html/includes/modules/order_total/ot_gv.php on line 48
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined property: ot_subtotal::$credit_class in /home/mcas/public_html/includes/classes/order_total.php on line 165
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined property: ot_shipping::$credit_class in /home/mcas/public_html/includes/classes/order_total.php on line 165
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: cot_coupon in /home/mcas/public_html/includes/classes/order_total.php on line 167
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: cot_group_pricing in /home/mcas/public_html/includes/classes/order_total.php on line 167
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined property: ot_tax::$credit_class in /home/mcas/public_html/includes/classes/order_total.php on line 165
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined property: ot_loworderfee::$credit_class in /home/mcas/public_html/includes/classes/order_total.php on line 165
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: cot_gv in /home/mcas/public_html/includes/classes/order_total.php on line 167
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: gv_redeem_code in /home/mcas/public_html/includes/modules/order_total/ot_gv.php on line 238
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: submit_redeem_x in /home/mcas/public_html/includes/modules/order_total/ot_gv.php on line 284
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined property: ot_total::$credit_class in /home/mcas/public_html/includes/classes/order_total.php on line 165
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: cc_id in /home/mcas/public_html/includes/modules/order_total/ot_coupon.php on line 391
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: total in /home/mcas/public_html/includes/modules/order_total/ot_group_pricing.php on line 32
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: total in /home/mcas/public_html/includes/modules/order_total/ot_group_pricing.php on line 33
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: cc_issue in /home/mcas/public_html/includes/modules/payment/ceon_manual_card.php on line 2933
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: gps in /home/mcas/public_html/includes/classes/payment.php on line 175
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Trying to get property of non-object in /home/mcas/public_html/includes/classes/payment.php on line 175
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: ResCookie in /home/mcas/public_html/includes/templates/frn_black/common/html_header.php on line 37
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: ResCookie in /home/mcas/public_html/includes/templates/frn_black/common/html_header.php on line 147
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: ResCookie in /home/mcas/public_html/includes/templates/frn_black/common/tpl_main_page.php on line 45
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined variable: active in /home/mcas/public_html/includes/templates/frn_black/common/tpl_header_top_section.php on line 22
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined variable: active in /home/mcas/public_html/includes/templates/frn_black/common/tpl_header_top_section.php on line 41
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined variable: active in /home/mcas/public_html/includes/templates/frn_black/common/tpl_header.php on line 93
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: gps in /home/mcas/public_html/includes/classes/payment.php on line 175
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Trying to get property of non-object in /home/mcas/public_html/includes/classes/payment.php on line 175
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: gps in /home/mcas/public_html/includes/classes/payment.php on line 145
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Trying to get property of non-object in /home/mcas/public_html/includes/classes/payment.php on line 145
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: gps in /home/mcas/public_html/includes/classes/payment.php on line 175
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Trying to get property of non-object in /home/mcas/public_html/includes/classes/payment.php on line 175
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: gps in /home/mcas/public_html/includes/classes/payment.php on line 198
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Trying to get property of non-object in /home/mcas/public_html/includes/classes/payment.php on line 198
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Use of undefined constant CSS_BUTTON_POPUPS_IS_ARRAY - assumed 'CSS_BUTTON_POPUPS_IS_ARRAY' in /home/mcas/public_html/includes/functions/html_output.php on line 322
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Use of undefined constant CSS_BUTTON_POPUPS_IS_ARRAY - assumed 'CSS_BUTTON_POPUPS_IS_ARRAY' in /home/mcas/public_html/includes/functions/html_output.php on line 322
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined property: ot_subtotal::$credit_class in /home/mcas/public_html/includes/classes/order_total.php on line 125
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined property: ot_shipping::$credit_class in /home/mcas/public_html/includes/classes/order_total.php on line 125
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Trying to get property of non-object in /home/mcas/public_html/includes/modules/order_total/ot_coupon.php on line 135
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Trying to get property of non-object in /home/mcas/public_html/includes/modules/order_total/ot_coupon.php on line 135
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined variable: selection in /home/mcas/public_html/includes/modules/order_total/ot_group_pricing.php on line 141
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined property: ot_tax::$credit_class in /home/mcas/public_html/includes/classes/order_total.php on line 125
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined property: ot_loworderfee::$credit_class in /home/mcas/public_html/includes/classes/order_total.php on line 125
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined variable: output_string in /home/mcas/public_html/includes/modules/order_total/ot_gv.php on line 139
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined variable: selection in /home/mcas/public_html/includes/modules/order_total/ot_gv.php on line 201
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined property: ot_total::$credit_class in /home/mcas/public_html/includes/classes/order_total.php on line 125
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: checkbox in /home/mcas/public_html/includes/templates/template_default/templates/tpl_checkout_one_default.php on line 95
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Use of undefined constant CSS_BUTTON_POPUPS_IS_ARRAY - assumed 'CSS_BUTTON_POPUPS_IS_ARRAY' in /home/mcas/public_html/includes/functions/html_output.php on line 322
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: tax in /home/mcas/public_html/includes/templates/template_default/templates/tpl_modules_checkout_one_shipping.php on line 34
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: gps in /home/mcas/public_html/includes/classes/payment.php on line 198
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Trying to get property of non-object in /home/mcas/public_html/includes/classes/payment.php on line 198
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: cc_id in /home/mcas/public_html/includes/modules/order_total/ot_coupon.php on line 391
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: total in /home/mcas/public_html/includes/modules/order_total/ot_group_pricing.php on line 32
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: total in /home/mcas/public_html/includes/modules/order_total/ot_group_pricing.php on line 33
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Use of undefined constant CSS_BUTTON_POPUPS_IS_ARRAY - assumed 'CSS_BUTTON_POPUPS_IS_ARRAY' in /home/mcas/public_html/includes/functions/html_output.php on line 322
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: ResCookie in /home/mcas/public_html/includes/templates/frn_black/common/tpl_footer.php on line 65
[09-Jan-2017 10:56:06 America/New_York] PHP Notice:  Undefined index: ResCookie in /home/mcas/public_html/includes/templates/frn_black/common/tpl_footer.php on line 79

From the checkout one log:

2017-01-09 10:44:52 checkout_one: CHECKOUT_ONE_ENTRY, version (1.0.11 (2016-12-29)), Zen Cart version (1.5.5), template (frn_black)
2017-01-09 10:44:52 checkout_one: CHECKOUT_ONE_AFTER_SHIPPING_CALCULATIONS, pass (), free_shipping (), array (
  'id' => 'flat_flat',
  'title' => 'Flat Rate (Best Way)',
  'cost' => '10.00',
)
2017-01-09 10:44:52 checkout_one: CHECKOUT_ONE_SHIPPING_CHECK (flat_flat)
Array
(
    [0] => Array
        (
            [id] => flat
            [module] => Flat Rate
            [methods] => Array
                (
                    [0] => Array
                        (
                            [id] => flat
                            [title] => Best Way
                            [cost] => 10.00
                        )

                )

        )

)

Array
(
    [0] => flat_flat
)

2017-01-09 10:44:52 checkout_one: CHECKOUT_ONE_AFTER_SHIPPING_QUOTES
array (
  'id' => 'flat_flat',
  'title' => 'Flat Rate (Best Way)',
  'cost' => '10.00',
)order Object
(
    [info] => Array
        (
            [order_status] => 1
            [currency] => USD
            [currency_value] => 1.00000000
            [payment_method] => 
            [payment_module_code] => 
            [coupon_code] => 
            [shipping_method] => Flat Rate (Best Way)
            [shipping_module_code] => flat_flat
            [shipping_cost] => 10.00
            [subtotal] => 1
            [shipping_tax] => 0
            [tax] => 0
            [total] => 11
            [tax_groups] => Array
                (
                    [0] => 0
                )

            [comments] => 
            [ip_address] => 107.77.203.150 - 107.77.203.150
        )

    [totals] => Array
        (
        )

    [products] => Array
        (
            [0] => Array
                (
                    [qty] => 1
                    [name] => Aqua-Clo <b></b>
                    [model] => 
                    [tax_groups] => Array
                        (
                            [0] => Sales Tax
                        )

                    [tax_description] => Sales Tax
                    [price] => 1.0000
                    [final_price] => 1
                    [onetime_charges] => 0
                    [weight] => 0
                    [products_priced_by_attribute] => 0
                    [product_is_free] => 0
                    [products_discount_type] => 0
                    [products_discount_type_from] => 0
                    [id] => 40
                    [rowClass] => rowEven
                    [tax] => 0
                )

        )

    [customer] => Array
        (
            [firstname] => Bob
            [lastname] => Hess
            [company] => 
            [street_address] => 2306 greenwood st
            [suburb] => 
            [city] => Lindenwold
            [postcode] => 98002
            [state] => Oregon
            [zone_id] => 41
            [country] => Array
                (
                    [id] => 223
                    [title] => United States
                    [iso_code_2] => US
                    [iso_code_3] => USA
                )

            [format_id] => 2
            [telephone] => 8002939183
            [email_address] => [email protected]
        )

    [delivery] => Array
        (
            [firstname] => Bob
            [lastname] => Hess
            [company] => 
            [street_address] => 2306 greenwood st
            [suburb] => 
            [city] => Lindenwold
            [postcode] => 98002
            [state] => Oregon
            [zone_id] => 41
            [country] => Array
                (
                    [id] => 223
                    [title] => United States
                    [iso_code_2] => US
                    [iso_code_3] => USA
                )

            [country_id] => 223
            [format_id] => 2
        )

    [content_type] => physical
    [email_low_stock] => 
    [products_ordered_attributes] => 
    [products_ordered] => 
    [products_ordered_email] => 
    [attachArray] => 
    [billing] => Array
        (
            [firstname] => Bob
            [lastname] => Hess
            [company] => 
            [street_address] => 2306 greenwood st
            [suburb] => 
            [city] => Lindenwold
            [postcode] => 98002
            [state] => Oregon
            [zone_id] => 41
            [country] => Array
                (
                    [id] => 223
                    [title] => United States
                    [iso_code_2] => US
                    [iso_code_3] => USA
                )

            [country_id] => 223
            [format_id] => 2
        )

    [use_external_tax_handler_only] => 
)
messageStack Object
(
    [messages] => Array
        (
        )

)
Array
(
    [0] => Array
        (
            [id] => flat
            [module] => Flat Rate
            [methods] => Array
                (
                    [0] => Array
                        (
                            [id] => flat
                            [title] => Best Way
                            [cost] => 10.00
                        )

                )

        )

)

2017-01-09 10:44:52 checkout_one: CHECKOUT_ONE_AFTER_ORDER_TOTAL_PROCESSING
order_total Object
(
    [modules] => Array
        (
            [0] => ot_subtotal.php
            [1] => ot_shipping.php
            [2] => ot_coupon.php
            [3] => ot_group_pricing.php
            [4] => ot_tax.php
            [5] => ot_loworderfee.php
            [6] => ot_gv.php
            [7] => ot_total.php
        )

)
order Object
(
    [info] => Array
        (
            [order_status] => 1
            [currency] => USD
            [currency_value] => 1.00000000
            [payment_method] => 
            [payment_module_code] => 
            [coupon_code] => 
            [shipping_method] => Flat Rate (Best Way)
            [shipping_module_code] => flat_flat
            [shipping_cost] => 10.00
            [subtotal] => 1
            [shipping_tax] => 0
            [tax] => 0
            [total] => 11
            [tax_groups] => Array
                (
                    [0] => 0
                )

            [comments] => 
            [ip_address] => 107.77.203.150 - 107.77.203.150
        )

    [totals] => Array
        (
        )

    [products] => Array
        (
            [0] => Array
                (
                    [qty] => 1
                    [name] => Aqua-Clo <b></b>
                    [model] => 
                    [tax_groups] => Array
                        (
                            [0] => Sales Tax
                        )

                    [tax_description] => Sales Tax
                    [price] => 1.0000
                    [final_price] => 1
                    [onetime_charges] => 0
                    [weight] => 0
                    [products_priced_by_attribute] => 0
                    [product_is_free] => 0
                    [products_discount_type] => 0
                    [products_discount_type_from] => 0
                    [id] => 40
                    [rowClass] => rowEven
                    [tax] => 0
                )

        )

    [customer] => Array
        (
            [firstname] => Bob
            [lastname] => Hess
            [company] => 
            [street_address] => 2306 greenwood st
            [suburb] => 
            [city] => Lindenwold
            [postcode] => 98002
            [state] => Oregon
            [zone_id] => 41
            [country] => Array
                (
                    [id] => 223
                    [title] => United States
                    [iso_code_2] => US
                    [iso_code_3] => USA
                )

            [format_id] => 2
            [telephone] => 8002939183
            [email_address] => [email protected]
        )

    [delivery] => Array
        (
            [firstname] => Bob
            [lastname] => Hess
            [company] => 
            [street_address] => 2306 greenwood st
            [suburb] => 
            [city] => Lindenwold
            [postcode] => 98002
            [state] => Oregon
            [zone_id] => 41
            [country] => Array
                (
                    [id] => 223
                    [title] => United States
                    [iso_code_2] => US
                    [iso_code_3] => USA
                )

            [country_id] => 223
            [format_id] => 2
        )

    [content_type] => physical
    [email_low_stock] => 
    [products_ordered_attributes] => 
    [products_ordered] => 
    [products_ordered_email] => 
    [attachArray] => 
    [billing] => Array
        (
            [firstname] => Bob
            [lastname] => Hess
            [company] => 
            [street_address] => 2306 greenwood st
            [suburb] => 
            [city] => Lindenwold
            [postcode] => 98002
            [state] => Oregon
            [zone_id] => 41
            [country] => Array
                (
                    [id] => 223
                    [title] => United States
                    [iso_code_2] => US
                    [iso_code_3] => USA
                )

            [country_id] => 223
            [format_id] => 2
        )

    [use_external_tax_handler_only] => 
)
messageStack Object
(
    [messages] => Array
        (
        )

)

2017-01-09 10:44:52 checkout_one: CHECKOUT_ONE_AFTER_PAYMENT_MODULES_SELECTION
payment Object
(
    [modules] => Array
        (
            [0] => ceon_manual_card.php
            [1] => gps.php
        )

    [selected_module] => 
    [doesCollectsCardDataOnsite] => 
    [paymentClass] => gps Object
        (
            ["code"] => gps
            [title] => Credit Card
            [description] => 
            [enabled] => 1
            [delimiter] => |
            [encapChar] => *
            [_logDir] => /home/mcas/public_html/cache
            [authorize] => 
            [commErrNo] => 0
            [commError] => 
            [reportable_submit_data] => Array
                (
                )

            [gateway_url] => secure.nmi.com
            [sort_order] => 0
            [form_action_url] => https://www.musclechemadvancedsupps.com/index.php?main_page=checkout_process
            [order_status] => 2
        )

)
array (
  'id' => 'flat_flat',
  'title' => 'Flat Rate (Best Way)',
  'cost' => '10.00',
)