-- HikaShop version -- : 5.1.1
-- Joomla version -- : 4.4.8
-- PHP version -- : 8.1.27
Hi,
In this plugin on line 481 there is this line
"\t\t".'<link><![CDATA[ '.$siteAddress.' ]]></link>'."\n"."\n";
FIX
"\t\t".'<link><![CDATA[ '.$this->siteAddress.' ]]></link>'."\n"."\n";
same problem on line 612
$xml .= "\t".'<g:'.$name.'>'.htmlspecialchars($siteAddress.$this->main_uploadFolder_url.(ltrim($image->file_path,'/'))).'</g:'.$name.'>'."\n";
FIX
$xml .= "\t".'<g:'.$name.'>'.htmlspecialchars($this->siteAddress.$this->main_uploadFolder_url.(ltrim($image->file_path,'/'))).'</g:'.$name.'>'."\n";
I found this because I use newsman.ro to import my feed of products there for the newsletter and some remarketing stuff, but now they can't parse the feed, so I started looking for problems and I found this.