• First of all, thanks so much for this great plugin. I am wondering if there’s any to hide create an account on the adverts add page. So when the users tries to add an advert and says:

    Account: “Create an account for me so I can manage all my ads from one place (password will be emailed to you) or Sign In”

    Like the users to submit an add without creating an account. Many thanks for your help.

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

    (@gwin)

    Hi,
    you can do that either by using the Custom Fields extension or by adding the code below in your theme functions.php file

    
    add_filter( "adverts_form_load", "hide_adverts_account_field" );
    function hide_adverts_account_field( $form ) {
      if( $form['name'] != "advert" ) {
        return $form;
      }
      foreach( $form["field"] as $key => $field ) {
        if( $field["name"] == "_adverts_account" ) {
            unset( $form["field"][$key] );
            //$form["field"][$key]["type"] = "adverts_field_hidden";
        }
      }
      return $form;
    }
    
Viewing 1 replies (of 1 total)

The topic ‘Hide create an account’ is closed to new replies.