Support How to edit "Add resource" fields

kutaz

XF is cool thing
Loyal Member
I want to remove "tagline", and few more things, what is name of file, where I can remove it?
I was looking for it, but I didn't find it :(
 
Solution
oh, ok ty

src\addons\XFRM\_data\templates.xml


Remove:

<xf:macro name="tag_line" arg-resource="!">
<xf:textboxrow name="tag_line" value="{$resource.tag_line_}"
maxlength="{{ max_length($resource, 'tag_line') }}"
label="{{ phrase('xfrm_tag_line') }}"
explain="{{ phrase('xfrm_provide_very_brief_one_line_description_of_your_resource') }}" />
</xf:macro>



or Go to xfrm_resource_edit_macros from admin delete tagline macro


I am sure it needs PHP editing because it is checking if value exists, give it a try :)
Back
Top Bottom