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

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

    Default Re: Order Steps (tableless) support thread

    PERFECT! Thanks Clyde!

 

 

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