Join our new community forum for support & discussion

Join Now

Home Support Themes ExpertHive hide offer description field

hide offer description field

  • Author
    Posts
  • aportodas

    Hello Ihor, When we come to see a published request, we can make an offer. But if we click on the “make offer” button, a window appears asking us for the amount and a description field. I do not want this description field to be seen because the expert can publish his phone or email and contact him.
    How can I make it so that only the price field can be filled in?
    Thank you very much

    yevhen developer

    Please try this PHP snippet

    add_filter(
    	'hivepress/v1/models/offer',
    	function( $model ) {
    		$model['fields']['text']['required'] = false;
    		return $model;
    	}
    );
    
    add_filter(
    	'hivepress/v1/forms/offer_make',
    	function( $form ) {
    		if ( isset( $form['fields']['text'] ) ) {
    			unset($form['fields']['text']);
    		}
    
    		return $form;
    	},
    	1000
    );
    aportodas

    Thanks yevhen, that’s great.
    It works very well.
    You’ve been very kind.

Viewing 3 posts - 1 through 3 (of 3 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.