Easy Populate 4 additional fields
- add fields into Configuration > EP4 > User Defined Products Fields
e.g. my_custom_price,my_custom_text - add blank database rows in products table. SQL example:
ALTER TABLE `products`
ADD `my_custom_price` DECIMAL( 15, 4 ) NOT NULL AFTER `products_price` ,
ADD `my_custom_text` varchar(64) NOT NULL AFTER `products_model` ;
Then follow this: https://www.zen-cart.com/showthread.php?57924-How-To-Add-new-Properties-to-your-Products
