Hi,
Yes, it's a side effect that I didn't see.
The best is to put the old working content so, please edit the file: administrator/com_hikashop/views/order/view.html.php
And replace the code:
$pluginsPayment = hikashop_get('type.payment');
$this->assignRef('payment',$pluginsPayment);
$pluginsShipping = hikashop_get('type.plugins');
$pluginsShipping->type='shipping';
$this->assignRef('shipping',$pluginsShipping);
By:
$pluginsPayment= hikashop_get('type.plugins');
$pluginsPayment->type='payment';
$this->assignRef('payment',$pluginsPayment);
$pluginsShipping = hikashop_get('type.plugins');
$pluginsShipping->type='shipping';
$this->assignRef('shipping',$pluginsShipping);
It would solve your problem but all payment plugins would be listed evenif the payment plugin is unpublished.
Regards,