0

Is it possible to add custom field in cs card for product?

I have added via back-end in product features

But it is not showing in add product page. If any one tried this..?

Thanks in advance

Davinder Kumar
  • 652
  • 4
  • 17
Venks
  • 231
  • 1
  • 4
  • 8

2 Answers2

0

You need to edit the template that you are using for your gateway..

check your data base for cscart_payment_processors and look for your payment name.

you'll then have 2 scripts one of them is the admin side and the second is the cart side.. you'll need to admin the cart side ..

Neta Meta
  • 4,001
  • 9
  • 42
  • 67
0

You can add the custom fields to Product add in Admin panel in the following file:

skins/[skin-name]/admin/views/products/update.tpl

And add your custom field you want with the cs-cart format:

Like:

And one more thing, you need to add the custom_field column in your DB, ?:products table.

Hope this resolve your issue.

Anand
  • 1