Join our new community forum for support & discussion

Join Now

Home Support Extensions Requests Customizing request form

Customizing request form

  • Author
    Posts
  • mzvdesign

    Hi team!

    I would like to add some description under details in Request form and unfortunately I’m unsuccessful with finding the right form in code. Thanks.

    I was trying

    add_filter(
    	'hivepress/v1/forms/hivepress-requests',
    	function( $form ) {
    		$form['fields']['description']['description'] = 'custom description here';
    
    		return $form;
    	}
    );
    ihor developer

    Please try using this one:

    add_filter(
    	'hivepress/v1/forms/request_update',
    	function( $form ) {
    		$form['fields']['description']['description'] = 'custom description here';
    
    		return $form;
    	}
    );
Viewing 2 posts - 1 through 2 (of 2 total)

New Reply

This forum has been archived and is no longer accepting new posts or replies. Please join our new community forum for support & discussion.