How to Fix: VQMod::_parseMods – DOM UNABLE TO LOAD:

how-to-fix-vqmod

One of the most likely problems you will encounter with your XML VQMod files, assuming that your path locations are correct is going to be markup errors. The smallest thing such as an “&” symbol will cause the whole file to not load correctly.

You can access your VQMod error log by looking in the vqmod/logs/ folder.

How to Fix

Add Meta Description to Opencart Information Pages

how-to-add-meta-description-opencart

Working with Opencart version 1.5, however the script below is very easily editable to work with any version.

The way it works is by simply adding a meta description column to your information database table, populating it when editing your information page and spitting it out into the html of your front end page.

1) Login to your database and find the information_description table. Either add a new column called “meta_description” manually or by using the following code:

ALTER TABLE `information_description`
ADD `meta_description` VARCHAR( 255 ) NOT NULL

2) Presuming you already have vqmod installed, download the following XML file and upload it to your vqmod/xml/ folder. Click here to download.

Everything should now be live, you should have an editable Meta Description field now when you edit a information page. Any issues keep an eye on the vqmod/logs/ folder.