I'm using this and I love it!
Although there is a small issue when it comes to Multi-lingual.
I have English and Dutch in my shop and in English the additional text is added to the order confirmation where in Dutch it is not.
This is what there is used for English:
Code: Select all
<file name="catalog/language/english/mail/order.php">
<operation>
<search position="after"><![CDATA[
'To view your order click on the link below:';
]]></search>
<add><![CDATA[
$_['text_guest_link'] = 'You may check your order status at any time by clicking on the link below:';
]]></add>
</operation>
</file>
This is what I use for Dutch:
Code: Select all
<file name="catalog/language/dutch/mail/order.php">
<operation>
<search position="after"><![CDATA[
'To view your order click on the link below:';
]]></search>
<add><![CDATA[
$_['text_guest_link'] = 'You may check your order status at any time by clicking on the link below:';
]]></add>
</operation>
</file>
This is why I think it is not working in Dutch:
Code: Select all
<search position="after"><![CDATA['To view your order click on the link below:'; ]]></search>
That line of text searched for is not in the Dutch file.
Looking at other vQmod's they use:
Code: Select all
<search position="after" offset="1" error="log"><![CDATA[// Text]]></search>
<add><![CDATA[$_['text_new_owner_subject'] = '%s - Bestelnummer %s';]]></add>
You see that the
search for is different.