Page 105 of 279 FirstFirst ... 55595103104105106107115155205 ... LastLast
Results 1,041 to 1,050 of 2784
  1. #1041
    Join Date
    Sep 2013
    Location
    Texas
    Posts
    304
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    PHP 7.2
    ZC verion 156a "classic template"
    Up and running with no issues.

    How do you disable the display of the header on the "Check Out" Page?
    NOTE:
    I was able to successfully do this for the "Login" page.

    I tried putting a "checkout_one" directory with tpl_header.php un-commenting this code in it per the below instructions.
    Code:
     $flag_disable_header = true;
    The page displays but when I "submit" the order or try to change an address nothing happens.
    All other links on the page respond.

    NOTE:
    I was able to successfully do this for the "Login" page.

    * Common Template - tpl_header.php
    *
    * this file can be copied to /templates/your_template_dir/pagename<br />
    * example: to override the privacy page<br />
    * make a directory /templates/my_template/privacy<br />
    * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
    * to override the global settings and turn off the footer un-comment the following line:<br />
    ? * <br /> */
    $flag_disable_header = true;
    /*
    * @package templateSystem
    * @copyright Copyright 2003-2016 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: Author: DrByte Sat Oct 17 22:01:06 2015 -0400 Modified in v1.5.5 $
    Yada Yada...

  2. #1042
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,401
    Plugin Contributions
    87

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by shags38 View Post
    Hi Cindy - after checking out with OPC on the checkout success page SITE/index.php?main_page=checkout_success I am seeing the following;
    Checkout Success Sample Text ...

    HTML Code:
    Checkout Success Sample Text ...
    
    A few words about the approximate shipping time or your processing policy for guest-checkout would be put here.
    
    This section of text is from the Define Pages Editor located under Tools in the Admin.
    You can view the status of this order by going to the Order Status page and supplying this order number and your email address.
    Please direct any questions you have to customer service.
    in admin/tools/define pages editor/checkout success ... I inserted customized text when the site was built but that text is not showing - have I missed a file merge or something?

    cheers, Mike
    Mike, you'll need to provide content for /includes/languages/english/html_includes/define_checkout_success_guest.php.

  3. #1043
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,401
    Plugin Contributions
    87

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by linuxguy2 View Post
    PHP 7.2
    ZC verion 156a "classic template"
    Up and running with no issues.

    How do you disable the display of the header on the "Check Out" Page?
    NOTE:
    I was able to successfully do this for the "Login" page.

    I tried putting a "checkout_one" directory with tpl_header.php un-commenting this code in it per the below instructions.
    Code:
     $flag_disable_header = true;
    The page displays but when I "submit" the order or try to change an address nothing happens.
    All other links on the page respond.

    NOTE:
    I was able to successfully do this for the "Login" page.

    * Common Template - tpl_header.php
    *
    * this file can be copied to /templates/your_template_dir/pagename<br />
    * example: to override the privacy page<br />
    * make a directory /templates/my_template/privacy<br />
    * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
    * to override the global settings and turn off the footer un-comment the following line:<br />
    ? * <br /> */
    $flag_disable_header = true;
    /*
    * @package templateSystem
    * @copyright Copyright 2003-2016 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: Author: DrByte Sat Oct 17 22:01:06 2015 -0400 Modified in v1.5.5 $
    Yada Yada...
    I was able to disable the header on the checkout_one page by adding the file /includes/modules/pages/checkout_one/header_php_no_header.php containing
    Code:
    <?php
    $flag_disable_header = true;
    To also disable the header on the checkout_one_confirmation page, just copy that file to the /includes/modules/pages/checkout_one_confirmation directory.

  4. #1044
    Join Date
    Sep 2013
    Location
    Texas
    Posts
    304
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    I was able to disable the header on the checkout_one page by adding the file /includes/modules/pages/checkout_one/header_php_no_header.php containing
    Code:
    <?php
    $flag_disable_header = true;
    To also disable the header on the checkout_one_confirmation page, just copy that file to the /includes/modules/pages/checkout_one_confirmation directory.
    VERY GOOD!!!
    If that is documented someplace I could not find it...

    While we're at it is there a way to get Zen cart to add the hyphens when entering phone numbers with an iPhone or iPad telephone keypad. (Not the regular keyboard)
    ( Like when you are registering a new account)

    Thank You Very Much!!

  5. #1045
    Join Date
    Nov 2007
    Location
    Woodbine, Georgia, United States
    Posts
    4,009
    Plugin Contributions
    61

    Default Re: One-Page Checkout [Support Thread]

    I've been trying to add a customer field to tpl_modules_opc_customer_info.php. I chased down all of the instances and added my field, but haven't had any luck storing it in checkout, nor the database.

    I am calling the stored value on checkout success with an observer class for another application. I can't even get it stored in the session.

    Do you have any idea or documentation for customer fields in guest checkout?

    Thanks in advance
    PRO-Webs, Inc. :: Recent Zen Cart Projects :: Zen Cart SEO – 12 Steps to Success
    **I answer questions in the forum, private messages are NOT answered. You are welcome to contact us via our website for professional engagements.

  6. #1046
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,401
    Plugin Contributions
    87

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by mprough View Post
    I've been trying to add a customer field to tpl_modules_opc_customer_info.php. I chased down all of the instances and added my field, but haven't had any luck storing it in checkout, nor the database.

    I am calling the stored value on checkout success with an observer class for another application. I can't even get it stored in the session.

    Do you have any idea or documentation for customer fields in guest checkout?

    Thanks in advance
    I suggest reviewing the notifications issued by /includes/classes/OnePageCheckout.php. I believe that there are sufficient call-outs to allow you to add fields without requiring a change to OPC's base files.

    If you have some handling that's required that is not covered by the current notifications, I'll be happy to create additional notifications.

  7. #1047
    Join Date
    Nov 2007
    Location
    Woodbine, Georgia, United States
    Posts
    4,009
    Plugin Contributions
    61

    Default Re: One-Page Checkout [Support Thread]

    I got it working, I'm just passing it in the session because it really doesn't need stored =)
    Thank you
    PRO-Webs, Inc. :: Recent Zen Cart Projects :: Zen Cart SEO – 12 Steps to Success
    **I answer questions in the forum, private messages are NOT answered. You are welcome to contact us via our website for professional engagements.

  8. #1048
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,549
    Plugin Contributions
    28

    Default Re: One-Page Checkout [Support Thread]

    @lat9 Wonderful plugin. Thank you for all your time on this.

    Question: with guest checkout the customer details require the 'Save Changes' button to be clicked. Might there be a way to avoid that? Maybe it's me, but it took me some time trouble shooting to figure out that was the cause for not being able to complete an order. It's just not a logical part of checkout, to have to save field entries like that, so I'd suspect shoppers will do the same thing.

  9. #1049
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,401
    Plugin Contributions
    87

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by jeking View Post
    @lat9 Wonderful plugin. Thank you for all your time on this.

    Question: with guest checkout the customer details require the 'Save Changes' button to be clicked. Might there be a way to avoid that? Maybe it's me, but it took me some time trouble shooting to figure out that was the cause for not being able to complete an order. It's just not a logical part of checkout, to have to save field entries like that, so I'd suspect shoppers will do the same thing.
    @jeking, I'll give your request some consideration. Just noting that the change will be fairly 'intrusive', changing the templates' structure and the AJAX processing as well as OPC's 'core' class.

    Issue created on the plugin's GitHub repository for tracking: https://github.com/lat9/one_page_checkout/issues/163
    Last edited by lat9; 20 Feb 2019 at 06:07 PM.

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

    Default Re: One-Page Checkout [Support Thread]

    At the moment I am having to use v1.5.5f

    In the instructions it says 'css_js_loader' has to be loaded first. However in those instruction it says 'Composer' has to be download and installed before 'css_js_loader' is. What does 'Composer' do?

 

 

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