Re: Image thumbnails not showing..
Also have thumbnails not showing, but images are there once you click on full ad and image text link shown.
Site:
http://ausbiz4sale.com" onclick="window.open(this.href);return false;" onclick="window.open(this.href);return false;
But had initial issue with image uploading, seems host added something new with regards to security (am seeking details) which gave errors wehn trying to upload image, only fixed when making the following 2 changes:
Changed:
$dir_to_make = trailingsla****($upload_arr['basedir']) . $image_folder_name;
To:
$dir_to_make = "wp-content/uploads/classipress";
Changed:
$image_baseurl = trailingsla****($upload_arr['baseurl']) . $image_folder_name;
To:
$image_baseurl = get_option('home')."/wp-content/uploads/classipress";
Don't know if it's related to the thumbnail issue, and also don't know if there's a better fix than my "hacked" code?