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

    (@gwin)

    Hi,
    it seems you have sent the same message via the contact form, you should receive a reply via email soon.

    Please do not double post your questions, thanks.

    HI Greg,

    Is it possible to have the solution posted here so others can see it and use it?

    Thanks

    Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    sure you can enable featured images by adding the code below in your theme functions.php file

    
    add_action("adverts_post_type", "customize_adverts_post_type");
    function customize_adverts_post_type( $args ) {
       $args["supports"][] = "thumbnail";
       return $args;
    }
    

    Thanks very much for adding the code snippet. It solved my problem.

    I’m using other plugins that use the featured image in post types. I think it would be good to include featured images in classified post types by default for plugins and themes that look for it.

    Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    thanks for the suggestion i am considering such option in WPAdverts, but right now i cannot tell when it will be implemented, as i need figure out first how it will affect existing sites.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Can’t set featured Image for Advert’ is closed to new replies.