Admin Template VQMod
Posted: Thu Dec 13, 2012 9:12 pm
I want to remove the following tabs: attribute, option, discount, special, reward points, design from the Admin section of Catalog > Products > Add New.
I'm using the following in the VQMod .xml file but the tab attribute continues to display. Any ideas what I have done wrong, or how to remove these tabs?
I'm using Opencart 1.5.4.
I'm using the following in the VQMod .xml file but the tab attribute continues to display. Any ideas what I have done wrong, or how to remove these tabs?
Code: Select all
<file name="admin/view/template/catalog/product_form.tpl">
<operation>
<search position="replace"><![CDATA[
<a href="#tab-attribute"><?php echo $tab_attribute; ?></a>
]]></search>
<add><![CDATA[
<a href="#tab-attribute" style='display:none'><?php echo $tab_attribute; ?></a>
]]></add>
</operation>
</file>