Hi,
I have created a new custom field (Checkbox) in the product page (dispatch=products.update) and I'm able to edit this field and store the data in the cscart_products table in the database. Also, the value of this field is still visible in I do {fn_print_r($product_data)} in the product page.
Now, I want to edit this value in the Products --> Products (dispatch=products.manage) page. I'm creating the following 2 .tpl files inside my addon's folder on the backend:
/hooks/products/manage_body.post.tpl
/hooks/products/manage_head.post.tpl
and with that i added the the checkbox and the header on each product.
The problem now is that can't change the value of this checkbox now and i think that is because when I do {fn_print_r($product)} inside the manage_body.post.tpl it prints all the product values/fields but not my custom value.
How do I add my custom value in the product array so I can edit it?