Hi Nicolas
sorry to bother you again. I have the same issue. After clicking next in checkout, something is proceeding, but it stays at checkout. I already read all threads, but I could not fix it. The point is, paypal payment has already works. I already did following checks:
-no messages in payment log file and debug system
-payment method and ups plugin is displayed
-Refresh IPs at paypal plugin do not work: field empty
-paypal setting "allow payment notifications from paypal" has been turned on
-htaccess is the standard Joomla file.
- no ssl
-no IP's have been changed.
Did I change something?
The only change I make was coming from Jerome:
_____________________________________________
Hi,
The message you got is a redirection which is made by a system plugin in order to add the language as parameter.
Please edit the file "administrator/components/com_hikashop/classes/field.php" and replace
if($allFields == null || $allValues == null) {
$doc = JFactory::getDocument();
$js = 'do_nothing( function() {
var el = document.getElementById(\''.$this->prefix.$field->field_namekey.$this->suffix.'\');
window.hikashop.changeState(el,\''.$stateId.'\',\''.$field->field_url.'field_type='.$form_name.'&field_id='.$stateId.'&field_namekey='.$stateNamekey.'&namekey=\'+el.value);
});';
$doc->addScriptDeclaration($js);
}
By:
if($allFields == null || $allValues == null) {
$doc = JFactory::getDocument();
$lang = JFactory::getLanguage();
$locale = strtolower(substr($lang->get('tag'),0,2));
$js = 'do_nothing( function() {
var el = document.getElementById(\''.$this->prefix.$field->field_namekey.$this->suffix.'\');
window.hikashop.changeState(el,\''.$stateId.'\',\''.$field->field_url.'lang='.$locale.'&field_type='.$form_name.'&field_id='.$stateId.'&field_namekey='.$stateNamekey.'&namekey=\'+el.value);
});';
$doc->addScriptDeclaration($js);
}
It will add the parameter "lang" to the url so your system plugin which made a redirection won't show up and break the feature.
____________________________
Please help. We just want to start our web store and now this.
Thank for your quick help.