Skip to content
Darryl Hein edited this page Apr 3, 2014 · 4 revisions

Adding the following will display information for the user on the entry form.

<?php
	protected $_options = array(
		'add_field_help' => TRUE,
	);
 
	protected $_field_help = array(
		'field_name' => array(
			'add_edit' => 'Help',
		),
	);
	// *** or ***
	protected $_field_help = array(
		'field_name' => array(
			'add' => 'Help',
			'edit' => 'Help',
		),
	);