nicolas wrote: If we don't have the precise error it won't be possible to help you. If you want us to help you, we would need to know that at least.
Nicolas, here is the error (the real amount shown in frontpage is 2,65):
here is the code, that error is pointing at:
<?php
defined('_JEXEC') or die('Restricted access');
?>
<style type="text/css">
#w2pbutton {
width: 167px;
height: 25px;
background: url('https://www.mokejimai.lt/payment/m/m_images/wfiles/i56je3562.png') no-repeat;
border: none;
cursor: pointer;
margin: 20px 0;
}
</style>
<div class="hikashop_webtopay_end" id="hikashop_webtopay_end">
<span id="hikashop_webtopay_end_message" class="hikashop_webtopay_end_message">
<?php echo JText::sprintf('PLEASE_WAIT_BEFORE_REDIRECTION_TO_X',$method->payment_name).'<br/>'. JText::_('CLICK_ON_BUTTON_IF_NOT_REDIRECTED');?>
</span>
<span id="hikashop_paypal_end_spinner" class="hikashop_paypal_end_spinner">
<img src="<?php echo HIKASHOP_IMAGES.'spinner.gif';?>" />
</span>
<br/>
<form id="hikashop_webtopay_form" name="hikashop_webtopay_form" action="https://www.mokejimai.lt/pay/" method="post">
<input id="w2pbutton" value="" type="submit" alt="<?php echo JText::_('PAY_NOW');?>" />
<?php
foreach( $request as $name => $value ) {
echo '<input type="hidden" name="'.$name.'" value="'.htmlspecialchars((string)$value).'" />';
}
$doc =& JFactory::getDocument();
$doc->addScriptDeclaration("do_nothing( function() {document.getElementById('hikashop_webtopay_form').submit();});");
JRequest::setVar('noform',1);
?>
</form>
</div>