philbydevil wrote:What version are you using? Is your language English?
I'm using 1.4.9.5 and my language is English. I don't have any other languages installed. I checked my vQmod log file and this is the error it's throwing up:
----------------------20110714-164017-------------------------
SOURCEFILE: /home/xxxxxxxx/public_html/admin/language/english/catalog/information.php
MODFILE: /home/xxxxxxxx/public_html/vqmod/xml/vqmod_meta_description_for_information_pages.xml
SEARCH: $_['entry_sort_order'] = 'Sort Order:';
OPERATION FAILED (ABORTED): NO MATCH FOR SEARCH!
--------------------------------------------------------------
It's because in version 1.4.9.5, the language file has been modified. So the vQmod would need to be updated to this:
Find:
Code: Select all
<file name="admin/language/english/catalog/information.php">
<operation>
<search position="after"><![CDATA[
$_['entry_sort_order'] = 'Sort Order:';
]]></search>
<add><![CDATA[
$_['entry_meta_description'] = 'Meta Description:';
]]></add>
</operation>
</file>
Replace with:
Code: Select all
<file name="admin/language/english/catalog/information.php">
<operation>
<search position="after"><![CDATA[
$_['entry_sort_order'] = 'Sort Order:<br/><span class="help">Set to -1 to hide from listing</span>';
]]></search>
<add><![CDATA[
$_['entry_meta_description'] = 'Meta Description:';
]]></add>
</operation>
</file>
Then the problem is fixed.
