Community Add-Ons
Custom META Tags using DB column
for osCommerce Online Merchant v2.2
Add a column to product_description table and allows user to enter meta tags in through admin. Multiple languages is available. (But Language ID is defaulted to Primary).
Good instructions included for step by step installation. Script is capable and works well, but feel free to make it better for the community.
Good Luck
The original instructions forgot to mention that the following SQL script must be run to update the database:
ALTER TABLE `categories` ADD `categories_keywords` TEXT DEFAULT NULL ;
Here's both updates necessary for this contribution in one spot:
ALTER TABLE `categories` ADD `categories_keywords` TEXT DEFAULT NULL ;
ALTER TABLE `products_description` ADD `products_keywords` TEXT DEFAULT NULL ;
-Randelia
