gavpeds Active member Mar 7, 2014 #1 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?
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?
Chris D XenForo developer Staff member Mar 7, 2014 #2 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. Upvote 0 Downvote
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.
gavpeds Active member Mar 7, 2014 #3 Thanks another thing where can i edit or find out what file types i can allow for upload? Upvote 0 Downvote
Chris D XenForo developer Staff member Mar 7, 2014 #4 Admin CP > Applications > Resource Manager Options Upvote 0 Downvote