Hi,
If you really want to disable the auto scroll after the shipping/payment method selection, you'll be able to do it by editing your "YourWebsite\components\com_hikashop\views\checkout\tmpl\payment.php" and change this line :
$checked.=' onclick="this.form.action=this.form.action+\'#hikashop_payment_methods\';this.form.submit(); return false;"';
By :
$checked.=' onclick="this.form.action=this.form.action;this.form.submit(); return false;"';
And also editing your "
YourWebsite\components\com_hikashop\views\checkout\tmpl\shipping.php" and change this line :
$checked.=' onclick="this.form.action=this.form.action+\'#hikashop_shipping_methods\';this.form.submit(); return false;"';
By :
$checked.=' onclick="this.form.action=this.form.action;this.form.submit(); return false;"';
Hope this will help you.