uc_progress_checkout

Contrib type: 
Module
Status: 
Uploaded for testing
Moderation: 
Limited approval

Downloads

Compatibility: 
Ubercart 1.x

This module creates a checkout progress block in the checkout page.
The checkout stages are being updated with the checkout panes.

The actual html is themable.

**notice**
no css in this module - you have to provide your own.


PreviewAttachmentSize
uc_progress_checkout.tar.gz1.52 KB
uc_progress_checkout_v1.tar.gz13.47 KB
glu2006's picture
Offline
Joined: 07/01/2008
Juice: 3
't' function

now:


function theme_uc_checkout_progress_block_header() {
$output = '<h3> your progress </h3>';
return $output;
}

for multilanguage:


function theme_uc_checkout_progress_block_header() {
$output = '<h3>'. t('your progress'). '</h3>';
return $output;
}
talbone's picture
Offline
Joined: 06/06/2008
Juice: 87
Re: 't' function

absolutely right.
forgot about it.
will fix.

thanks,
tal