Quote:
Originally Posted by funkmeister
This works great with one exception...when no members are logged in, I'm seeing a trailing comma (',') where a member name would normally be.
Aside from this minor irritation, it's working fine. Anyone got an idea how I can fix this? I'm on 3.8.2 by the way...
Thanks in advance.
|
Quote:
Originally Posted by Serenity278
I would like to know this too...
|
Edit the: product-spider_display.xml
Find:
PHP Code:
{
$lname = ',' . trim(key($slist)) . "(" . $sname.")";
}
else
{
$lname = ',' . trim(key($slist));
}
Remove second ","
Should look like this after removing second ","
PHP Code:
{
$lname = ',' . trim(key($slist)) . "(" . $sname.")";
}
else
{
$lname = ' ' . trim(key($slist));
}
Save, then Re-upload: product-spider_display.xml and choose overwrite.
Installed Thanks!:up: