Hi,
There is no option for that. However, I think you can have the system auto skip the step with a small code modification.
Add the code:
public function haveEmptyContent(&$controller, &$params) {
$checkoutHelper = hikashopCheckoutHelper::get();
$cart = $checkoutHelper->getCart();
if(empty($cart->order_fields))
return true;
return false;
}
in the file administrator/components/com_hikashop/helpers/checkout/fields.php before the line:
public function display(&$view, &$params) {
and that should do the trick.
Let us know how it goes so that we can include the modification in the next release.