There is an error while converting [ and ] - Characters. Here is the Solution:
Open the product-advhighlight.xml and find:
Code:
$codefind2 = array(
'>', // > to >
'<', // < to <
'"', // " to ",
'&', // & to &
'& #91;', // [ to [ (remove the spacebar between & and #-Char)
'& #93;', // ] to ] (remove the spacebar between & and #-Char)
);
and replace the text with
Code:
$codefind2 = array(
'>', // > to >
'<', // < to <
'"', // " to ",
'&', // & to &
'[', // [ to [
']', // ] to ]
);
and it works well.