Hi,
if you are using blocks (recommended) then you can edit from the wp-admin / Pages panel the page with the Classifieds / List block (https://wpadverts.com/doc/block-classifieds-list/) and in the right sidebar, you should be able to find the “Default Image URL” option where you can enter an URL to the image that should be used when the user did not upload any images.
Thanks @gwin for the quick answer.
I am still using the Classic interface… this is why I did not see it.
Anyway to do same for Classic interfce ?
Hi,
the [adverts_list] shortcode does not have such option, but you can set the default image with CSS, to do that, go to the wp-admin / Appearance / Customize / Additional CSS panel and add there the code below
.advert-item .advert-img {
background-image: url(https://link/to/your/default/img.jpg);
object-fit: contain !important;
width: auto;
}
of course replace https://link/to/your/default/img.jpg with the actual link to your default image.