Thanks so much for the reply and suggestion.
I already had the login step as the only item on the first step, so that was done. (I changed the name to shipping)
I had modified
to
if($this->step==4){
echo $this->cart->displayButton('Purchase Ticket','next',$this->params,hikashop::completeLink('checkout&task=step&step='.$this->step+1),'document.forms[\'hikashop_checkout_form\'].submit(); return false; ','id="hikashop_checkout_next_button"');
}else{
echo $this->cart->displayButton(JText::_('NEXT'),'next',$this->params,hikashop::completeLink('checkout&task=step&step='.$this->step+1),'document.forms[\'hikashop_checkout_form\'].submit(); return false;','id="hikashop_checkout_next_button"');
}
So that I could change the text on the purchase step to custom text.
With the modifications I have made what should the new if statement look like?
Thanks! -- Steven