Seen on 9.0.3.IMMA.
If you use Links / Advanced Link in your product details and choose to display the Full Description in your search results, then <Actinic:Variable Name = 'LINK'/> appears in the search results list where the link should have been displayed.
Workaround.
You can hide the display of this variable by doing the following.
Edit SearchScript.pl (in your Site folder).
Look for the line:
Replace it with:
If you use Links / Advanced Link in your product details and choose to display the Full Description in your search results, then <Actinic:Variable Name = 'LINK'/> appears in the search results list where the link should have been displayed.
Workaround.
You can hide the display of this variable by doing the following.
Edit SearchScript.pl (in your Site folder).
Look for the line:
Code:
($status, $sTemp) = ACTINIC::ProcessEscapableText($Product{DESCRIPTION}); # properly encode the text
Code:
my $sTemp2 = $Product{DESCRIPTION}; $sTemp2 =~ s/<Actinic:Variable Name \= 'LINK'\/>//ig; # bugfix ($status, $sTemp) = ACTINIC::ProcessEscapableText($sTemp2); # properly encode the text
Comment