Issue: Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM, expecting ‘,’ or ‘;’ in /home/clubedafelicidade/www/cfelicidade/app/design/frontend/default/sm_flipshop/template/sm/supercategories/default.phtml on line 116
Solution:
Please go to /app/design/frontend/default/sm_flipshop/template/sm/supercategories/default.phtml on line 116 and find:
1
|
<a href="<?php echo $item->link ?>" <?php echo $helper::parseTarget($this->_getConfig('product_links_target', '_self')) ?>
|
=> change to:
1
|
<a href="<?php echo $item->link ?>" <?php echo $helper->parseTarget($this->_getConfig('product_links_target', '_self')) ?>"
|
- and find:
1
|
"<?php if ($this->_getConfig('product_description_display', 1) == 1 && $helper::_trimEncode($item->description) != '') { ?>"
|
=>Change to:
1
|
<?php if ($this->_getConfig('product_description_display', 1) == 1 && $helper->_trimEncode($item->description) != '') { ?>
|
Wish you success.