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

    (@gwin)

    Hi, you can do this by adding following code to your theme functions.php file

    
    add_filter( "adverts_form_load", "customize_adverts_add" );
    function customize_adverts_add( $form ) {
      if( $form['name'] != "advert" ) {
        return $form;
      }
      foreach( $form["field"] as $key => $field ) {
        if( $field["name"] == "adverts_price" ) {
            unset( $form["field"][$key] );
        }
      }
      return $form;
    }
    
    Thread Starter sites1545

    (@sites1545)

    Thank you !

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘remove price’ is closed to new replies.