Hi Nicolas, Thank you so far.
I think I have to explain it again.
1st step
Customers fill in
1. quantity of raffle tickets,
2. click terms and conditions
3. give credit card details
(see Screenshot01) - You can see that I added with <?php echo "text";?> some descriptions of what to do (my customer expects his customers to be very simple)
2nd step
In a second step they enter their email addresses (Screenshot02). Here I changed top text of the "login" of the checkout process with <?php echo "text";?> at this position:
<?php
/**
* @package HikaShop for Joomla!
* @version 2.5.0
* @author hikashop.com
* @copyright (C) 2010-2015 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3
www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?>
<div class="shopheading2">
<?php
echo "4. Your email address";
?>
</div>
<div class="shopdescription">
<?php
echo "To being able to receive your raffle ticket(s), please add your email address. The ticket(s) will be sent to your email once payment is proceeded. Please keep the raffle ticket(s) for the draw of the winners. ";
?>
</div>
<?php
if(!$this->identified){
$this->nextButton = false;
$params = null; $js = null;
$classLogin = "hikashop_hidden_checkout";
$classRegistration = "";
$defaultSelection = '2';
$span='';
$display_login = $this->config->get('display_login',1);
$sr = explode(',', $this->simplified_registration);
$this->registration = array(0=>false,1=>false,2=>false,3=>false);
foreach($sr as $r) {
$this->registration[ (int)$r ] = true;
}
$registration_count = count($sr);
if($display_login){
$classLogin = '';
$classRegistration = 'hikashop_hidden_checkout';
$defaultSelection = 'login';
}
if($this->display_method == 0) {
?>
Then they click "Next"
3rd step
The third step now calls the same <?php echo "text";?> (Screenshot 03) only the button is now "Finish" to finish the whole buying process - That is was confuses my customer. Is there a way to change the text on top in this 3rd step, so that steps 2 and 3 are clearly distinguishable. Alternatively is it possible that step-2 and step-3 are the same, which would mean that you leave out the Next Button and after entering the email directly finish (user guest registration and finishing the same step)