I have using the WordPress Theme: Magasin Dos form <a http://www.paddsolutions.com, in custom fields I don’t want use my image form wp content because it’s make my blog loading are slow but i want use image from flickr.com or photobucket.com.
I'm trying send email to author at http://www.paddsolutions.com but it's no respon.
this code at gallery.php:
<?php while (have_posts()) : the_post(); ?>
<?php
$customfields = get_post_custom();
$scrp = get_bloginfo('wpurl') . '/wp-content/themes/magasin-dos/functions/timthumb.php?';
if (empty($customfields['paddimage'][0])) {
$imgpath = $scrp . 'src=' . get_bloginfo('wpurl') . '/wp-content/themes/magasin-dos/images/thumbnail.png' . '&w=68&h=68&zc=1';
} else {
$imgpath = $scrp . 'src=' . get_bloginfo('wpurl') . $customfields['paddimage'][0] . '&w=390&h=250&zc=1';
}
?>
Any somebody help me?