Just to explain, how I solved my Problem,just realized today, with this:
1. Checking out with the Default english Language, everything worked well.
Code: Select all
<p>Your order has just been successfully processed...
2. In the German Language File, I have, for some reason, this HREF-Link and the Number of the Order ??, I assume, but NEITHER ENTRY is tolerated by the Script:
Code: Select all
<p>Ihr Auftrag <a href="%s">#%s</a> wurde soeben erfolgreich verarbeitet... (default)
nor:
<p>Ihr Auftrag #%s wurde soeben erfolgreich verarbeitet... (test1)
nor:
<p>Ihr Auftrag <a href="%s"> </a> wurde soeben erfolgreich verarbeitet... (test2)
and it produced:
Code: Select all
Warning: sprintf() [function.sprintf.php]: Too few arguments in /home/jacob/www/bigmax/shop/catalog/controller/checkout/success.php on line 54
3. So, in the German language File, I just removed this
<a href="%s">#%s</a> Stuff in the Line, to make it look like the english Version, without a HREF Link in between:
Code: Select all
<p>Ihr Auftrag wurde soeben erfolgreich verarbeitet...
and it all worked well.
Conclusion: Since I, so far, never found out, how this Kind of
href="%s" stuff works in the first place, I just had to resign from trying more, especially, since all other HREF-Links on this Page, like:
<a href="%s">Mein Konto</a>
<a href="%s">Historie</a>
<a href="%s">Downloads</a>
work flawless, beeing WRITTEN exactly the same way...
But possibly, someone could tell us, why the
first ['text_consumer'] link does screw up the 'following' information after the ['heading_title'], that it even produced an error. The ['heading_title_consumer'] itself works.
My final solution to this:
Code: Select all
$_['heading_title'] = 'Ihr Auftrag wurde erfolgreich verarbeitet!';
$_['heading_title_customer'] = 'Ihr Auftrag wurde erfolgreich verarbeitet!';
// Text
$_['text_customer'] = '<p>Ihr Auftrag wurde soeben erfolgreich verarbeitet!</p><p>Sie können die Auftragshistorie abrufen, indem Sie die Seite <a href="%s">Mein Konto</a> aufrufen und auf <a href="%s">Historie</a> klicken.</p>Wenn Ihr Einkauf ein Download war, können Sie die Seite <a href="%s">Downloads</a> aufrufen, um sie anzuzeigen.</p><p>Richten Sie bitte alle Fragen an den <a href="%s">Shop Inhaber</a>.</p><p>Vielen Dank für Ihren Einkauf bei uns.</p>';
$_['text_guest'] = '<p>Ihr Auftrag wurde soeben erfolgreich verarbeitet!</p><p>Richten Sie bitte alle Fragen an den <a href="%s">Shop Inhaber</a>.</p><p>Vielen Dank für Ihren Einkauf bei uns.</p>';
It possibly the german language file only, not containing all 'references' required, I imagine anyway...
Ernie
bigmax.ch/shop/