How do you alter the thumbnail image size on the Single Ad page in Version 3.1.4
I hade succes with this in version 3.1 and in 3.1.2, but since the changes made in the "single_ad_listing.php" file in 3.1.4 my alteration do not work.
Previously I altered the theme_functions.php by adding my new sizes (thumbxsm)
// create special sizes for the ads
add_image_size('ad-thumbxsm', 40, 40, true);
add_image_size('ad-thumbsm', 50, 50, true);
add_image_size('ad-thumb', 75, 75, true);
add_image_size('ad-small', 100, 100, true);
add_image_size('ad-medium', 250, 250, true);
//add_image_size('ad-large', 500, 500);
}
I then called this change up in the single_ad_listing.php
<?php if ( get_post_meta( $post->ID, 'images', true ) ) echo cp_get_image_thumbs_legacy( $post->ID, get_option('thumbnail_size_w'), get_option('thumbnail_size_h'), $post->post_title ); else cp_get_image_url_single( $post->ID, 'thumbxsm', $post->post_title, -1 ); ?>
As I said, this small change worked in 3.1, but in the latest version, these same changes do not work - any ideas why? what am I missing????
This is def. a question for the development team, since they made the latest changes