Jump to content

Remove Quantity field from prestashop backend


Recommended Posts

I'm new to prestashop. I want to create a shopping cart to sell services. So i don't want the quantity field. Its just a downloadable application. So I need to delete the quantity field from prestashop back-end. I added an image that shows the field wanted to deleted.

 

Thanks in advance

Bineesh

post-728164-0-67277800-1384776332_thumb.jpg

Edited by bineeshmvarghese (see edit history)
Link to comment
Share on other sites

  • 2 weeks later...

you have to modify field list object definition in admincategoriescontroller

$this->fields_list = array(
			'id_category' => array(
				'title' => $this->l('ID'),
				'align' => 'center',
				'width' => 20
			),

just remove it

 

in the future please create new topic with your question if it isn't related to the topic.

Link to comment
Share on other sites

×
×
  • Create New...