Vielleicht hilft der Code aus der Slider.php?
<div id="slider"><div class="flexslider">
<ul class="slides">
<?php $count = ft_of_get_option('fabthemes_slide_number');
$slidecat =ft_of_get_option('fabthemes_slide_categories');
$query = new WP_Query( array( 'cat' =>$slidecat,'posts_per_page' =>$count ) );
if ($query->have_posts()) : while ($query->have_posts()) : $query->the_post(); ?>
<li>
<?php
$thumb = get_post_thumbnail_id();
$img_url = wp_get_attachment_url( $thumb,'full' ); //get full URL to image (use "large" or "medium" if the images too big)
$image = aq_resize( $img_url, 600, 400, true ); //resize & crop the image
?>
<?php if($image) : ?>
<a href="<?php the_permalink(); ?>"><img class="slide-image" src="<?php echo $image ?>"/></a>
<?php endif; ?>
<div class="flex-caption">
<h3><?php the_title(); ?></h3>
<?php the_excerpt(); ?>
</div>
<?php endwhile; endif; ?>
</li>
</ul>
</div>
</div>
Alles anzeigen
Und Auszug aus der Content.php:
<?php $thumb = get_post_thumbnail_id();
$img_url = wp_get_attachment_url( $thumb,'full' ); //get full URL to image (use "large" or "medium" if the images too big)
$image = aq_resize( $img_url, 280, 120, true ); //resize & crop the image
?>
<?php if($image) : ?>
<a class="box-image" href="<?php the_permalink(); ?>"><img src="<?php echo $image ?>"/></a>
<?php endif; ?>
<header class="entry-header">
Alles anzeigen
Das Problem ist vermutlich diese Zeile, die wird mit aktivierten Amazon S3 nicht aufgelöst:
<?php if($image) : ?>
<a class="box-image" href="<?php the_permalink(); ?>"><img src="<?php echo $image ?>"/></a>
<?php endif; ?>