• Resolved xjamasterx

    (@xjamasterx)


    Hi there,

    I’d like to remove “Phone Number” as an option when adding an advertisement. How do I do this?

    Thank you.

Viewing 1 replies (of 1 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    you can do that by adding the code below in your theme functions.php file

    
    add_filter( "adverts_form_load", "customize_adverts_add_remove_phone" );
    function customize_adverts_add_remove_phone( $form ) {
      if( $form['name'] != "advert" ) {
        return $form;
      }
      foreach( $form["field"] as $key => $field ) {
        if( $field["name"] == "adverts_phone" ) {
            unset( $form["field"][$key] );
        }
      }
      return $form;
    }
    

    or by using the Custom Fields extension.

Viewing 1 replies (of 1 total)

The topic ‘Remove phone number’ is closed to new replies.