Remove number from checkout stages

ThemeBurn SupportForumsOpenCart ThemesShoppica OpenCart ThemeRemove number from checkout stages

This topic has been marked as resolved.

Hi,

I have successfully reduced the checkout process down to 4 stages and it works fine, however, the 4 stages are now numbered 1,2,5,6 – so potentially a bit confusing for users (see screenshot attached).

Which file(s) should I edit to either re-number the stages so they are displayed 1,2,3,4 or simply remove the numbers so only the name of the stage is displayed?

Thanks.

February 28, 2012 at 11:12 am #6582

Update:
I have edited the Checkout labels in catalog/language/english/checkout/checkout.php – removing the numbers as follows:


$_['text_checkout_option']           = 'Checkout Options';
$_['text_checkout_account']          = 'Account & Billing Details';
$_['text_checkout_payment_address']  = 'Billing Details';
$_['text_checkout_shipping_address'] = 'Delivery Details';
$_['text_checkout_shipping_method']  = 'Delivery Method';
$_['text_checkout_payment_method']   = 'Payment Method';
$_['text_checkout_confirm']          = 'Confirm Order!';

This didn’t fix it. In catalog/view/theme/shoppica/template/checkout/checkout.tpl it doesn’t refer to the standard variables above, but shoppica’s own:


<?php echo $this->document->shoppica_text_checkout_options; ?>
<?php echo $this->document->shoppica_text_checkout_account; ?>
<?php echo $this->document->shoppica_text_checkout_payment_method; ?>
<?php echo $this->document->shoppica_text_checkout_confirm; ?>

How do I get to the contents of these shoppica_text_checkout_ variables to edit the content and remove the numbers?

Thanks.

February 28, 2012 at 3:14 pm #6588

Hi,

You can find these language variables in catalog/language/YOUR_LANGUAGE/module/shoppica.php – row 26 to 32.

Best,
ThemeBurn team

February 29, 2012 at 12:33 pm #6630

Brilliant, sorted now, many thanks.

February 29, 2012 at 12:41 pm #6633

In Shoppica 2 the translation is in /catalog/language/YOUR_LANGUAGE/shoppica2/global.lang.php

line 57 – 63

September 4, 2012 at 12:49 pm #13269
Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.