RSS Broken Image

Comments

  • I fixed the problem by change the image path from related path to absolute path

    rss.php line: 82

    from:

    $thumburl = '<img border="0" src="'.$image->getCustomImage($size, NULL, NULL, NULL, NULL, NULL, NULL, TRUE).'" alt="'. $image->getTitle() .'" />';

    to:

    $thumburl = '<img border="0" src="http://'.$host.$image->getCustomImage($size, NULL, NULL, NULL, NULL, NULL, NULL, TRUE).'" alt="'. $image->getTitle() .'" />';
Sign In or Register to comment.