joomla - removal of admin-ui tabs in products for virtuemart -


i want remove product status , product dimension tab products in virtuemart 2

enter image description here

any help?

try this,

check file 'product_edit.php'

administrator\components\com_virtuemart\views\product\tmpl\product_edit.php 

and comment not required tabs

    $tabarray = array();     $tabarray['information'] = 'com_virtuemart_product_form_product_info_lbl';     $tabarray['description'] = 'com_virtuemart_product_form_description';    // $tabarray['status'] = 'com_virtuemart_product_form_product_status_lbl';    // $tabarray['dimensions'] = 'com_virtuemart_product_form_product_dim_weight_lbl';     $tabarray['images'] = 'com_virtuemart_product_form_product_images_lbl';     $tabarray['custom'] = 'com_virtuemart_product_form_product_custom_tab'; 

hope works..


Comments

Popular posts from this blog

C# random value from dictionary and tuple -

cgi - How do I interpret URLs without extension as files rather than missing directories in nginx? -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -