Results 1 to 10 of 206

Hybrid View

  1. #1
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Order Steps (tableless) support thread

    Quote Originally Posted by countrycharm View Post
    So you saying it look like it suppose to? Well that's good.
    How do you get rid of all but the first one that reads There are four steps in this checkout process.

    Are you saying that the following text is also displaying?

    There are four steps in this checkout process.

    1. You have already entered your Shipping Information
    2. You are currently entering your Payment Method
    3. In the third step, you will review the details and Confirm Order
    4. In the final step, you will Completed Order

    If so then you haven't installed the following css files:

    includes/templates/YOUR_TEMPLATE/css/checkout_confirmation.css
    includes/templates/YOUR_TEMPLATE/css/checkout_payment.css
    includes/templates/YOUR_TEMPLATE/css/checkout_shipping.css
    includes/templates/YOUR_TEMPLATE/css/checkout_success.css

  2. #2
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Order Steps (tableless) support thread

    Quote Originally Posted by clydejones View Post
    Are you saying that the following text is also displaying?

    There are four steps in this checkout process.

    1. You have already entered your Shipping Information
    2. You are currently entering your Payment Method
    3. In the third step, you will review the details and Confirm Order
    4. In the final step, you will Completed Order

    If so then you haven't installed the following css files:

    includes/templates/YOUR_TEMPLATE/css/checkout_confirmation.css
    includes/templates/YOUR_TEMPLATE/css/checkout_payment.css
    includes/templates/YOUR_TEMPLATE/css/checkout_shipping.css
    includes/templates/YOUR_TEMPLATE/css/checkout_success.css
    Yes that is what I'm saying. I have installed the 4 css file in my_custom folder.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  3. #3
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Order Steps (tableless) support thread

    Quote Originally Posted by countrycharm View Post
    Yes that is what I'm saying. I have installed the 4 css file in my_custom folder.
    Disregard the last post. You were right about the 4 css files. I did upload them but they didn't overwrite the old ones for some reason. Everything is looking good now except one thing. How do you center the links that is displayed on each number of the progression bar at the top. Thank you Clyde for helping me.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  4. #4
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Order Steps (tableless) support thread

    Quote Originally Posted by countrycharm View Post
    Yes that is what I'm saying. I have installed the 4 css file in my_custom folder.
    Here's a screen shot and everything seems to be displaying normally

    Click image for larger version. 

Name:	goodshepard.jpg 
Views:	64 
Size:	21.9 KB 
ID:	8113

  5. #5
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Order Steps (tableless) support thread

    Quote Originally Posted by clydejones View Post
    Here's a screen shot and everything seems to be displaying normally

    Click image for larger version. 

Name:	goodshepard.jpg 
Views:	64 
Size:	21.9 KB 
ID:	8113
    The screen shot you showed is great.
    Look at this screen shot of the link after shipping Method. It is not centered inside the yellow box.
    Attached Images Attached Images  
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  6. #6
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Order Steps (tableless) support thread

    Quote Originally Posted by countrycharm View Post
    The screen shot you showed is great.
    Look at this screen shot of the link after shipping Method. It is not centered inside the yellow box.
    open includes/languages/english/extra_definitions/YOUR_TEMPLATE/order_steps_defines.php

    replace the entire contents of the file with the following:
    PHP Code:
    <?php

    if ($current_page_base == 'checkout_payment' || $current_page_base == 'checkout_confirmation') {
    define('TEXT_ORDER_STEPS_1''<a href="' zen_href_link(FILENAME_CHECKOUT_SHIPPING'''SSL') . '">Shipping  Method</a>');
    } else {
    define('TEXT_ORDER_STEPS_1''Shipping Method');
    }
    if (
    $current_page_base == 'checkout_confirmation') {
    define('TEXT_ORDER_STEPS_2''<a href="' zen_href_link(FILENAME_CHECKOUT_PAYMENT'''SSL') . '">Payment  Method</a>');
    }else{
    define('TEXT_ORDER_STEPS_2''Payment Method');
    }
    define('TEXT_ORDER_STEPS_3''Confirm Order');
    define('TEXT_ORDER_STEPS_4''Completed Order ');


    define('TEXT_ORDER_STEPS_INFO''<p>There are four steps in this checkout process.</p>');
    define('CURRENT_TEXT_ORDER_STEPS''You are currently entering your ');
    define('CURRENT_TEXT_ORDER_STEPS_3''You are currently going to review the details and ');
    define('CURRENT_TEXT_ORDER_STEPS_4''You have  ');
    define('DONE_TEXT_ORDER_STEPS''You have already entered your ');
    define('DONE_TEXT_ORDER_STEPS_3''You have reviewed the details to ');
    define('NEXT_TEXT_ORDER_STEPS_2''In the second step, you will enter your ');
    define('NEXT_TEXT_ORDER_STEPS_3''In the third step, you will review the details and ');
    define('NEXT_TEXT_ORDER_STEPS_4''In the final step, you will ');

    define('ORDER_REVIEW''<h4 class="confirm">PLEASE REVIEW &amp; CONFIRM YOUR ORDER!!</h4>');

    //EOF

  7. #7
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Order Steps (tableless) support thread

    Quote Originally Posted by clydejones View Post
    open includes/languages/english/extra_definitions/YOUR_TEMPLATE/order_steps_defines.php

    replace the entire contents of the file with the following:
    PHP Code:
    <?php

    if ($current_page_base == 'checkout_payment' || $current_page_base == 'checkout_confirmation') {
    define('TEXT_ORDER_STEPS_1''<a href="' zen_href_link(FILENAME_CHECKOUT_SHIPPING'''SSL') . '">Shipping  Method</a>');
    } else {
    define('TEXT_ORDER_STEPS_1''Shipping Method');
    }
    if (
    $current_page_base == 'checkout_confirmation') {
    define('TEXT_ORDER_STEPS_2''<a href="' zen_href_link(FILENAME_CHECKOUT_PAYMENT'''SSL') . '">Payment  Method</a>');
    }else{
    define('TEXT_ORDER_STEPS_2''Payment Method');
    }
    define('TEXT_ORDER_STEPS_3''Confirm Order');
    define('TEXT_ORDER_STEPS_4''Completed Order ');


    define('TEXT_ORDER_STEPS_INFO''<p>There are four steps in this checkout process.</p>');
    define('CURRENT_TEXT_ORDER_STEPS''You are currently entering your ');
    define('CURRENT_TEXT_ORDER_STEPS_3''You are currently going to review the details and ');
    define('CURRENT_TEXT_ORDER_STEPS_4''You have  ');
    define('DONE_TEXT_ORDER_STEPS''You have already entered your ');
    define('DONE_TEXT_ORDER_STEPS_3''You have reviewed the details to ');
    define('NEXT_TEXT_ORDER_STEPS_2''In the second step, you will enter your ');
    define('NEXT_TEXT_ORDER_STEPS_3''In the third step, you will review the details and ');
    define('NEXT_TEXT_ORDER_STEPS_4''In the final step, you will ');

    define('ORDER_REVIEW''<h4 class="confirm">PLEASE REVIEW &amp; CONFIRM YOUR ORDER!!</h4>');

    //EOF
    I did that the links move a little to the left not much. It doesn't look like the checkout on your site that's for sure.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  8. #8
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Order Steps (tableless) support thread

    Well I can't really check the CSS styling since you have everything minified.

 

 

Similar Threads

  1. Shopping Cart Steps Images [Support Thread]
    By Trinity14 in forum Addon Templates
    Replies: 21
    Last Post: 11 Apr 2021, 05:35 AM
  2. JK Order Exporter - Support Thread
    By eVelt in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 26 Sep 2015, 07:06 AM
  3. v154 Order Steps Responsive [Support Thread]
    By davewest in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 5 Jul 2015, 06:11 PM
  4. Order Steps Tableless
    By Berserker in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 27 Feb 2008, 04:04 AM
  5. Order Steps - Tableless small issue IE only
    By dharma in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 11 Jan 2007, 02:40 AM

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