Page 1 of 2 12 LastLast
Results 1 to 10 of 206

Hybrid View

  1. #1
    Join Date
    Mar 2008
    Posts
    56
    Plugin Contributions
    0

    Default Re: Order Steps (tableless) support thread

    Hi Clyde,

    I may be missing something about the style (didnt see anything in the readme file)...I just downloaded the mod and I love it...but the style is different than the previous versions.

    You can see my site here: www.eyemagic.net/store

    Notice how the numbers are displayed instead of the arrow. Is this fixable in CSS? Or is there a setting Im missing?

    Hope Im not missing something...it works great other than the style issue.

    Thanks!

    Dave

  2. #2
    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 dave_nextexit View Post
    Hi Clyde,

    I may be missing something about the style (didnt see anything in the readme file)...I just downloaded the mod and I love it...but the style is different than the previous versions.

    You can see my site here: www.eyemagic.net/store

    Notice how the numbers are displayed instead of the arrow. Is this fixable in CSS? Or is there a setting Im missing?

    Hope Im not missing something...it works great other than the style issue.

    Thanks!

    Dave
    This is an updated version and the numbers graphic replaces the arrow graphic.

    As I noted in the readme.txt: the new version provides better accessibility for those who use assistive devices or text-only browsers.

    Hope this helps.

  3. #3
    Join Date
    Mar 2008
    Posts
    56
    Plugin Contributions
    0

    Default Re: Order Steps (tableless) support thread

    Thanks Clyde...is there a way to make the text next to the numbers links so that customers can quickly go to any previous step of the checkout process?

  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 dave_nextexit View Post
    Thanks Clyde...is there a way to make the text next to the numbers links so that customers can quickly go to any previous step of the checkout process?
    Yep, sure is.

    open includes/languages/english/extra_definitions/YOUR_TEMPLATE/order_steps_defines.php

    replace these definitions:

    Code:
    define('TEXT_ORDER_STEPS_1', 'Shipping Information');
    define('TEXT_ORDER_STEPS_2', 'Payment Information');
    with the following:

    Code:
    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 Information</a>');
    } else {
    define('TEXT_ORDER_STEPS_1', 'Shipping Information');
    }
    if ($current_page_base == 'checkout_confirmation') {
    define('TEXT_ORDER_STEPS_2', '<a href="' . zen_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '">Payment Information</a>');
    }else{
    define('TEXT_ORDER_STEPS_2', 'Payment Information');
    }
    Save the edited file and upload it to your server.

    open includes/templates/YOUR_TEMPLATE/css/stylesheet.css

    add the following declarations:

    .progressmeter li a {color:#7DB2E8;}
    .progressmeter li a:hover {color:#fff; background:#FF9900;}

    Save the edited file and upload to your server.

  5. #5
    Join Date
    Mar 2008
    Posts
    56
    Plugin Contributions
    0

    Default Re: Order Steps (tableless) support thread

    PERFECT! Thanks Clyde!

  6. #6
    Join Date
    Apr 2006
    Location
    Midland TX
    Posts
    428
    Plugin Contributions
    0

    Default Re: Order Steps (tableless) support thread

    I have installed "order steps" and nothing not even an error msg. This is a very easy installation and have checked every folder and all there as outlined. Only had to merge a small amount Google checkout code using WimMerge into tpl_payment_default.php in "My folder".
    Here is the URL: www.EZorbCalcium.com/catalog
    Have the following major mod's installed in clean install 1.3.8a.
    Fast Easy Checkout
    Google Checkout
    USPS Autofill
    Quantity Discount
    ZipShip (have a problem with this mod should not have anything to do with interference)

    The regular bread crumb work OK.

    Does anyone have a clue on what/how to check?

    Thanks,

    Larry

  7. #7
    Join Date
    Feb 2008
    Location
    L.I., N.Y.
    Posts
    47
    Plugin Contributions
    0

    Default Re: Order Steps (tableless) support thread

    I could use a little help re: order steps. I think the answer is rather simple but ....
    I have installed v2-3-0 on my l i h e r b a l . c o m zen1.3.8 and cannot figure out how to get the "submit" button to show on step 3 of the check out process. Any help is greatly appreciated.
    ooakllc

  8. #8
    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 EZorb View Post
    I have installed "order steps" and nothing not even an error msg. This is a very easy installation and have checked every folder and all there as outlined. Only had to merge a small amount Google checkout code using WimMerge into tpl_payment_default.php in "My folder".
    Here is the URL: www.EZorbCalcium.com/catalog
    Have the following major mod's installed in clean install 1.3.8a.
    Fast Easy Checkout
    Google Checkout
    USPS Autofill
    Quantity Discount
    ZipShip (have a problem with this mod should not have anything to do with interference)

    The regular bread crumb work OK.

    Does anyone have a clue on what/how to check?

    Thanks,

    Larry
    The link to your site does not work.

  9. #9
    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 EZorb View Post
    I have installed "order steps" and nothing not even an error msg. This is a very easy installation and have checked every folder and all there as outlined. Only had to merge a small amount Google checkout code using WimMerge into tpl_payment_default.php in "My folder".
    Here is the URL: www.EZorbCalcium.com/catalog
    Have the following major mod's installed in clean install 1.3.8a.
    Fast Easy Checkout
    Google Checkout
    USPS Autofill
    Quantity Discount
    ZipShip (have a problem with this mod should not have anything to do with interference)

    The regular bread crumb work OK.

    Does anyone have a clue on what/how to check?

    Thanks,

    Larry
    Since you are using Fast and Easy Checkout You should check with the author of that mod on the best way to incorporate order steps

  10. #10
    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 ooakllc View Post
    I could use a little help re: order steps. I think the answer is rather simple but ....
    I have installed v2-3-0 on my l i h e r b a l . c o m zen1.3.8 and cannot figure out how to get the "submit" button to show on step 3 of the check out process. Any help is greatly appreciated.
    Check includes/languages/english/YOUR_TEMPLATE/button_names.php

    and make sure that particular button has been defined.

    check includes/templates/YOUR_TEMPLATE/buttons/english/

    and make sure the image for that particular button is present.

 

 
Page 1 of 2 12 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