Hi,
Thanks for the report.
In Joomla 3.4 ; the popup changed and the HTML is not the same, some things that was possible previously are not the same today.
So please the file "media/com_hikashop/js/hikashop.js" and replace
submitPopup: function(id, task, form) {
var d = document, t = this, el = d.getElementById('modal-'+id+'-iframe');
if(el && el.contentWindow.hikashop) {
if(task === undefined) task = null;
if(form === undefined) form = 'adminForm';
el.contentWindow.hikashop.submitform(task, form);
}
return false;
},
By
submitPopup: function(id, task, form) {
var d = document, t = this, el = d.getElementById('modal-'+id+'-iframe');
if(!el) {
if(document.getElementById('modal-' + id + '-container'))
el = jQuery('#modal-' + id + '-container').find('iframe').get(0);
else
el = jQuery('#modal-' + id).find('iframe').get(0);
}
if(el && el.contentWindow.hikashop) {
if(task === undefined) task = null;
if(form === undefined) form = 'adminForm';
el.contentWindow.hikashop.submitform(task, form);
}
return false;
},
It will fix the issue.
Regards,