thank you page

  • Posts: 1119
  • Thank you received: 114
8 years 9 months ago #231040

Hi,

1. How can i have display some text in thank you page if manual bank transfer payment is selected? I would like to add somethinglike,- you will be notified with email shorty....
I could add text under bank account information but in that case that text would be visible in order created email which i dont want.

2. Is it possible to hide checkout progress bar in last step where is thank you page displayed?

Please Log in or Create an account to join the conversation.

  • Posts: 13201
  • Thank you received: 2322
8 years 9 months ago #231047

Hi,

1. Two ways, one you set a return url so a created Joomla article with the desired text in it.
Second, you can do an override on the file "plugins/hikashoppayment/banktransfer/banktransfer_end.php".

2. You can do this by editing the view "checkout / step" and adding code like that at the top:

if($this->step >= 'XX')
    $this->display_checkout_bar = 0;
You have to replace XX by the number of the latest step.

The following user(s) said Thank You: kyratn

Please Log in or Create an account to join the conversation.

  • Posts: 1119
  • Thank you received: 114
8 years 9 months ago #231134

Thank you Xavier it works but i had to modify to this as title wouldn't be displayed:

if($this->step >= '4') {
    $Customtitle = JText::_('CUSTOM_END_TITLE');
    echo '<h1 class="titlePage">',$Customtitle,'</span></h1>';
    $this->display_checkout_bar = 0;
}

Thanks again

Last edit: 8 years 9 months ago by kyratn.

Please Log in or Create an account to join the conversation.

Time to create page: 0.068 seconds
Powered by Kunena Forum