• Resolved chinouk35

    (@chinouk35)


    Hello, I would like not to display an image for my ads, is this possible? Thx

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

    (@gwin)

    Hi,

    do you mean to remove the gallery field from the Classifieds Publish form?

    If so then you can do that either with the Custom Fields extension or add the below code in your theme functions.php file

    add_filter( "adverts_form_load", function( $form ) {
    if( $form["name"] != "advert" ) {
    return $form;
    }
    foreach( $form["field"] as $k => $field ) {
    if( $field["name"] == "gallery" ) {
    unset( $form["field"][$k] );
    }
    }
    return $form;
    } );
    Thread Starter chinouk35

    (@chinouk35)

    Thx so much !

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.