gurned
Forum Replies Created
-
Forum: Plugins
In reply to: Hide missing image icon for Tim Thumbneed a link probably – either your version of php has no support for files using fopen, you’re not running the latest version of timthumb, the url is wrong, the image is cmyk jpeg or mod_security is installed and is messing up the timthumb install.
use phpinfo to check if allow_url_fopen is set (in safe mode it won’t be)
check timthumb version by going to appearance, select timthumb in list of files, check version is something like 2.8.11
get the url of one of the images and repaste to another tab in your browser – does it show, if not is it a 404 or broken image icon ?
mod_security is a bit more of a pain
Forum: Plugins
In reply to: Hide missing image icon for Tim Thumbso it’s doing it even for ones where the image is bust – link please, or full code of where you’re getting the featured image from. Also is it genuinely the featured image of a post and are you in the loop or outside ?
Forum: Plugins
In reply to: Hide missing image icon for Tim Thumb<?php if (trim(the_field('featuredimage' )) != ''){ ?> <a href="<?php the_field('featuredimage' ); ?>" rel="lightbox" title="<?php the_field('featured_image_description'); ?>"><img src="<?php echo get_option('siteurl') ?>/wp-content/themes/reverie/scripts/timthumb.php?src=<?php the_field('featuredimage' ); ?>&w=607&zc=1" alt="Post Image" class="postimgthumb" /></a> <?php }?>