Quote:
Originally Posted by Helmut71
@MagiKelly: would you share yor changings???
|
I read this post on the other thread
https://vborg.vbsupport.ru/showpost....&postcount=500
The only bit I was interested in was finding this bit
Quote:
if ($get_xml_marker["pimage"]!='')
{
$pimage = $get_xml_marker["pimage"];
}
else
{
$pimage = $bburl."/images/googlemapme/noimage.png";
}
|
and changing it to this
Quote:
if ($get_xml_marker["pimage"]!='')
{
$pimage = $bburl."/images/googlemapme/noimage.png";
}
else
{
$pimage = $bburl."/images/googlemapme/noimage.png";
}
|
Which with my simple understanding of code means that whatever the result of the "if" command it will always insert no image. Effectively ignoring whatever the user might put in the image field. Not exactly elegant but it works for me.
You need to make the same change to both files I did not bother with the other bits and then run the cron thing for good measure (told you I was not very technical

)
Hope this helps.