Image Resize problem in add listing is Fixed in Classipress
Here is the solution for the image resize problem for add listing.
Go in your php files in Classipress to the themes/classipress/content-ad_listing.php
Open the file: content-ad_listing.php
Change this code:
<div class="post-left">
<?php if ( $cp_options->ad_images ) cp_ad_loop_thumbnail(); ?>
</div>
To this code:
<div class="post-left">
<?php if(get_post_meta($post->ID, 'images', true)) cp_single_image_legacy($post->ID, $cp_options->thumbnail_size_w, $cp_options->thumbnail_size_h, 'preview'); else rb_get_image_url_feat($post->ID, 'rb_adthumb', 'preview', 1); ?>
</div>
Thats all! And your image are resize good now.