-- HikaShop version -- : 2.6.0
-- HikaSerial version -- : 1.10.0
-- Joomla version -- : 3.3.6
-- Error-message(debug-mod must be tuned on) -- : JS error: Uncaught TypeError: window.oNamebox is not a function
php error: Fatal error: Class 'hikamarket' not found in /var/www/vhosts/dev.earmaster.com/www/public/administrator/components/com_hikaserial/views/orderserial/tmpl/show_order_back_show.php on line 241
Hi!
After having installed Hikashop 2.6.0 and HikaSerial 1.10.0 I ran into a problem, when I tried to view a order in the backend the styling / layout was completely gone, looking like a real error.
I figured from the "Fatal error" with hikamarket that it might be related (since I don't have HikaMarket), so I went into the show_order_back_show view and went to line 241, containing
var data = 'pack=' + parseInt(value.value) + '&qty=' + parseInt(qtyFix.value) + '&qtyvar=' + parseInt(qtyVar.value) + '&<?php echo hikamarket::getFormToken(); ?>=1';
And I removed the
+ '&<?php echo hikamarket::getFormToken(); ?>=1'
part, so it now looks like this:
var data = 'pack=' + parseInt(value.value) + '&qty=' + parseInt(qtyFix.value) + '&qtyvar=' + parseInt(qtyVar.value);
And this seems to have solved the issue regarding the initial error / messed out display.
However, When I try to "Add pack", upon submitting the "add pack" I get a "403 - Access forbidden" Not sure if it's related to the first error, but I'm having a feeling that it is.