Page 11 of 21 FirstFirst ... 910111213 ... LastLast
Results 101 to 110 of 206
  1. #101
    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.

  2. #102
    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?

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

  4. #104
    Join Date
    Mar 2008
    Posts
    56
    Plugin Contributions
    0

    Default Re: Order Steps (tableless) support thread

    PERFECT! Thanks Clyde!

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

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

  7. #107
    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.

  8. #108
    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

  9. #109
    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.

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

    Default Re: Order Steps (tableless) support thread

    Thank you for your answer. I'm confused as to which button name I'm looking for. How do I find which button image the code is searching for?

    To answer your suggestion: I show-- define('BUTTON_IMAGE_CONFIRM_ORDER_GREEN', 'btn_submit_order_green.gif'); in buttons_names.php and
    an image named btn_submit_order_green in buttons/english

    As you can see I'm very lost..
    ooakllc

 

 
Page 11 of 21 FirstFirst ... 910111213 ... 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