Hello,
Can you please edit the file "components/com_hikamarket/views/ordermarket/view.html.php" and replace
if(empty($history))
return;
By
if(empty($history))
return;
$histories = array( &$history );
JPluginHelper::importPlugin('hikashop');
JPluginHelper::importPlugin('hikamarket');
JPluginHelper::importPlugin('hikashoppayment');
JPluginHelper::importPlugin('hikashopshipping');
$dispatcher = JDispatcher::getInstance();
$dispatcher->trigger('onHistoryDisplay', array( &$histories ));
It should allow the credit cart HikaShop plugin to modify the content and make it visible in HikaMarket history popup.
Regards,