• Hi Greg,

    Good job, how do I change this. When posting an ad by default the first category is auto selected, how can I make it empty so a user can select, as for now it picks the 1st category and many users overlooks it.

    The page I need help with: [log in to see the link]

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

    (@gwin)

    Hi,
    are you using the Custom Fields extension? If so then you can edit the Category field and check the “Empty Option” checkbox then the first item will not be selected automatically.

    Without the CF extension, you can add the code below in your theme functions.php file it will insert the empty option

    
    add_filter( "adverts_form_load", function($form) {
      if( $form["name"] != "advert" ) {
        return $form;
      }
      foreach( $form["field"] as $k => $field ) {
        if( $field["name"] == "advert_category" ) {
          $form["field"][$k]["empty_option"] = true;
        }
      }
      return $form;
    });
    
Viewing 1 replies (of 1 total)

The topic ‘Select Category’ is closed to new replies.