Page 9 of 296 FirstFirst ... 78910111959109 ... LastLast
Results 81 to 90 of 2956
  1. #81
    Join Date
    Mar 2008
    Location
    Brampton, Cumbria, United Kingdom, United Kingdom
    Posts
    816
    Plugin Contributions
    2

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    @adb34, got your PM. The Tableau template makes a ton of changes to the Zen-Cart standard CSS; for example it's not including the stylesheet_css_buttons.css so that your buttons display wonky and there are many other as-shipped Zen Cart CSS selectors that aren't included.

    That's why the page looks so disorganized, since the One-Page Checkout plugin was designed/tested using templates that conform to the ZC standard.

    I don't have free time to debug/determine what changes will be needed for that template to properly support this plugin. I will update the plugin's readme to add a section identifying templates that aren't supported -- Tableau will be noted along with the TM ones.
    Thanks mate. I did think it was me, but when I had a play it was all leading to the template. I have also removed you as a customer. Thanks for your time.

  2. #82
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,350
    Plugin Contributions
    94

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    I've just submitted v1.0.2 to the plugins' area for review (if you can't wait, you can download it from either the plugin's GitHub repository or my website).

    This version provides changes to address the following issues (as identified by their issue numbers in the plugin's GitHub repository):
    #13: Form won't submit under IE-11
    #14: Pre-integration with "Product Delivery by Postcode (PDP)"
    #17: Missing semi-colon in language file
    #18: Error-log generated when the customer has applied a discount coupon
    #19: Move customer's authorization check
    #20: Include both ZC1.5.4 and 1.5.5 versions of "handlesCreditCardDataOnSite"
    #21: Correct interoperation with some shipping methods
    #22: Correct AJAX session-save issue
    #23: Session time-out handling
    #24: Display payment-method block when in "special checkout"
    v1.0.2 is now available for download from the Zen Cart Plugins area.

  3. #83
    Join Date
    Feb 2008
    Posts
    529
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Had some difficulty with v 1.0.2 on my WAMP test site, zc 1.5.5a, updated Responsive Sheffield Blue, Canada Post only shipping mod

    Am I correct that the ajax.php file should be in the pre-1.5.5 folder rather than in the root (ie not to be merged in 1.5.5.a install)?

    Also, includes/temp/temp_default/temp/tpl_checkout_one_confirmation_default, around line #189:

    Code:
    echo zen_draw_form ('checkout_confirmation', $form_action_url, 'post', 'id="checkout_confirmation"' . ($confirmation_required) ? ' onsubmit="submitonce();"' : '');
    Should that be 'confirmation_one' rather than 'checkout_confirmation'.

    If I leave ajax.php alone, and change the 'checkout_confirmation' then I am able to proceed with a transaction as far as I can with a test store and fake customer and no curl for paypal - which is to say I get a paypal error message on top of the one page checkout, and I get an email from admin notifying me of the error.

    Without the above changes when I click checkout I get a death spiral of the loading gif ;o) (I tried to attach log of this in code quote but it seems to be too big as it won't send).

    (I acknowledge Canada Post isn't in the list of validated shipping for this mod, but it 'seems' to work with the fiddling above, test site only, although it does select most expensive CP shipping choice by default)

  4. #84
    Join Date
    Mar 2008
    Location
    Brampton, Cumbria, United Kingdom, United Kingdom
    Posts
    816
    Plugin Contributions
    2

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    v1.0.2 is now available for download from the Zen Cart Plugins area.
    The new one to download, is that the one dated 19th August dated 9 days before your post?

  5. #85
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,350
    Plugin Contributions
    94

    Default Re: One-Page Checkout [Support Thread]

    @soxophonplayer: The core-file /ajax.php is a required change to ensure that any session-related changes are saved, as is the change to the checkout_one_confirmation page's form name (for compatability with some payment methods).

    What payment method were you using when you encountered the "spiral of death"?

    I've sent you a PM with my direct email address so you can send that log file over.

    @adb34: That's the date I submitted v1.0.2 to the plugins!

  6. #86
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,350
    Plugin Contributions
    94

    Default Re: One-Page Checkout [Support Thread]

    @soxophoneplayer: In reviewing the change-list for v1.0.2, I've found that the readme neglected to identify the following changes introduced in the v1.0.1->v1.0.2 transition:
    1. /includes/modules/pages/checkout_one_confirmation/jscript_main.php
    2. /includes/templates/template_default/templates/tpl_checkout_one_confirmation_default.php

  7. #87
    Join Date
    Feb 2008
    Posts
    529
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    @soxophoneplayer: In reviewing the change-list for v1.0.2, I've found that the readme neglected to identify the following changes introduced in the v1.0.1->v1.0.2 transition:
    1. /includes/modules/pages/checkout_one_confirmation/jscript_main.php
    2. /includes/templates/template_default/templates/tpl_checkout_one_confirmation_default.php
    OK that gets it sorted. I had a bit in jscript_main that also had 'checkout_one' in place of 'checkout_confirmation' which explains the death spiral that occured when I merged tpl_checkout_one_confirmation but not the jscript_main.

    Tested several times. Life is good.

  8. #88
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,350
    Plugin Contributions
    94

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by soxophoneplayer View Post
    OK that gets it sorted. I had a bit in jscript_main that also had 'checkout_one' in place of 'checkout_confirmation' which explains the death spiral that occured when I merged tpl_checkout_one_confirmation but not the jscript_main.

    Tested several times. Life is good.
    Great, thanks for posting back.

    May I ask what modifications you've needed to make to the template files? I've tried real hard to get those into a shape so that they're usable as-is so that upgrades (especially during these early days) are simple drop-ins (i.e. total file replacement).

  9. #89
    Join Date
    Feb 2008
    Posts
    529
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    Great, thanks for posting back.

    May I ask what modifications you've needed to make to the template files? I've tried real hard to get those into a shape so that they're usable as-is so that upgrades (especially during these early days) are simple drop-ins (i.e. total file replacement).
    None of the template files needed merging with my Responsive Sheffield Blue 2.0 files. I left the 3 template default files that required merging in /template default.

    I made small change of wording in includes/lang/eng/checkout_one define:text_enter_shipping_info. I use only one shipper - Canada Post - and they have several options - so existing mod text 'you have only one method available (sic) could be unclear to the reader.

    I use only paypal (until Square Regiter mod is developed) and I don't particularly like the paypal img because it implies it can be clicked (while the actual click to confirm button is lower down and off initial screen view. I don't actually see that img in your files so I presume it is paypal driven.

    Big bonus of Responsive Sheffield Blue users is that the buttons in One Page Checkout are dead on.

    I tested the mod on my iphone 6s+ and it looks/works fine in portrait and landscape.

  10. #90
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,350
    Plugin Contributions
    94

    Default Re: One-Page Checkout [Support Thread]

    Working my way through an authorizenet_aim issue that was working correctly on Zen Cart 1.5.4 but not on 1.5.5a, I've discovered an issue with the ZC 1.5.5a payment class that will necessitate yet another update to One-Page Checkout.

    I'll post back here when I've got v1.0.3 available with those changes.

 

 
Page 9 of 296 FirstFirst ... 78910111959109 ... LastLast

Similar Threads

  1. Set number of products displayed per page (support thread)
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 146
    Last Post: 2 Nov 2023, 12:50 AM
  2. v151 Banners In Main Page - Support Thread
    By stevesh in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 18 Sep 2021, 03:36 PM
  3. v151 Site Map/Page Not Found: Combined [Support Thread]
    By lat9 in forum All Other Contributions/Addons
    Replies: 7
    Last Post: 4 Jan 2016, 02:19 PM
  4. v151 PayPal Express Checkout Using NVP 84.0 [Support Thread]
    By lat9 in forum Addon Payment Modules
    Replies: 32
    Last Post: 28 Dec 2015, 04:54 PM
  5. Checkout Amazon Style -- Support Thread
    By CJPinder in forum All Other Contributions/Addons
    Replies: 72
    Last Post: 13 Apr 2011, 08:18 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