Hi, please test:
OPEN:
administrator\components\com_phocamaps\helpers\phocamaps.php
and change
FROM:
Code: Select all
public static function fixImagePath($description) {
$description = str_replace('<img src="'.JURI::root(true).'/', '', $description);// no double
$description = str_replace('<img src="', '<img src="'.JURI::root(true).'/', $description);
return $description;
}
TO:
Code: Select all
public static function fixImagePath($description) {
$description = str_replace('<img src="'.JURI::root(true).'/', '', $description);// no double
$description = str_replace('<img src="', '<img src="'.JURI::root(true).'/', $description);
// correct possible problems with full paths
$description = str_replace('<img src="'.JURI::root(true).'/http://', '<img src="http://', $description);
$description = str_replace('<img src="/http://', '<img src="http://', $description);
return $description;
}
Now, the external image should be displayed for you.
Please let me know if this helped, so I can add it to next version.
Thank you, Jan