Hi, currently i am afraid WPAdverts does not have any filter which would allow doing this, you would need to open file wpadverts/templates/list-item.php and add your image there.
To check if the Ad is featured use this code
<?php if( get_post( get_the_ID() )->menu_order > 0 ): ?>FEATURED<?php endif; ?>
Note that the changes in list-item.php file will be overwritten on WPAdverts update so consider creating a child template for list-item.php file as explained here https://wpadverts.com/documentation/child-themes-and-templates/
Thanks, It works! Now I want backup ads and images, how can I do it?