RM 1.1 Remove the Additional Information URL:

gavpeds

Active member
Hi so in one category all i want posted in there is review articles of products so i dont want Additional Information URL: how can i remove this as an option in that category?
 
Look inside the resource_add template and find where that field is defined.

Wrap this conditional around that field:

Code:
<xen:if is="{$category.resource_category_id} != 999">
  //
</xen:if>

Replace 999 with the category ID where you don't want the field to show.
 
Top Bottom