Hi,
You can create an override the view "checkout | step" and replace
if($k == $this->step || empty($link)) {
echo JText::_('HIKASHOP_CHECKOUT_'.strtoupper($step_name));
} else {
?>
<a href="<?php echo hikashop_completeLink('checkout&task=step&step='.$k.$url_itemid);?>">
<?php echo JText::_('HIKASHOP_CHECKOUT_'.strtoupper($step_name));?>
</a>
<?php
By
if($k == $this->step || $k > $this->step || empty($link)) {
echo JText::_('HIKASHOP_CHECKOUT_'.strtoupper($step_name));
} else {
?>
<a href="<?php echo hikashop_completeLink('checkout&task=step&step='.$k.$url_itemid);?>">
<?php echo JText::_('HIKASHOP_CHECKOUT_'.strtoupper($step_name));?>
</a>
<?php
So the next step won't have any link where the user will be able to click on.
Regards,