Forum for discussing general topics related to Couch.
2 posts Page 1 of 1
Is it possible to change the 'Title' label in admin?

I've made a clonable template to be used for 'team members' and I want, in admin, these fields only:

Name (as in, team member name not page URL 'name')
Description
Image

I don't need the default:

Title
Name

How can I hide them or change them for purpose?

TY

Solved this for myself:

<cms:config_form_view>
<cms:field 'k_page_title' desc='Member Name' label='Member Name' order='0' />
<cms:field 'k_page_name' skip='1'/>
</cms:config_form_view>

<cms:config_list_view orderby='weight' order='asc'>
<cms:field 'k_selector_checkbox' />
<cms:field 'k_page_title' header='Member Name' />
<cms:field 'k_up_down' />
<cms:field 'k_actions' />
</cms:config_list_view>

NB. A search in the documentation did not reveal this answer - the details of how to use the above are in this forum thread:

viewtopic.php?t=10241
2 posts Page 1 of 1