Page 16 of 21 FirstFirst ... 61415161718 ... LastLast
Results 151 to 160 of 206
  1. #151
    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

  2. #152
    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

  3. #153
    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

  4. #154
    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

  5. #155
    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

  6. #156
    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.

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

    Default Re: Order Steps (tableless) support thread

    Quote Originally Posted by clydejones View Post
    Well I can't really check the CSS styling since you have everything minified.
    I can cut that off if you will let me know when your going to check it.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  8. #158
    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
    I can cut that off if you will let me know when your going to check it.
    I generally check a site as soon as I receive a post about problems with any of my add-ons.

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

    Default Re: Order Steps (tableless) support thread

    Quote Originally Posted by clydejones View Post
    I generally check a site as soon as I receive a post about problems with any of my add-ons.
    It really isn't a big problem Clyde. I just didn't like the links being that so far over from the number on step 2 and 3. The link that carry you back a step. Anyway like I said not a very big deal. The minifi is cut off.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  10. #160
    Join Date
    Oct 2004
    Posts
    1,045
    Plugin Contributions
    0

    Default Re: Order Steps (tableless) support thread

    Is there a way to make the 1.3.9 version have the look of the previous versions, with the progress bars and the arrows?

    Thanks!
    Danielle

 

 
Page 16 of 21 FirstFirst ... 61415161718 ... LastLast

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