See attached image.
All the "&-signs" are presented correct accept in the category-header, Is there a simple solution. I know I can change everything in the word "and", but I am not seeking for that solution.
Regards Killerweb
9 answers
Go to Catalog>Attributes>Manage Attributes, then click the “name” attribute code in the first column to open the properties window. Scroll down in the window until you see “Allow HTML-tags on Front-end” and be sure to set the value to “Yes.”
Save your changes and then check your store
Did it, didn’t work, empty cache and all.
Maybe another solution?
Regards
Dear killerweb!
That is caused by your tables in database not in utf8 encoding (catalog_category_entity_varchar). Please change the encoding of table to utf8 by this sql code:
Code:
ALTER TABLE catalog_category_entity_varchar CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;
Regards!
Please provide me your admin details in PM
provided and opened up the shop for you.
provided and opened up the shop for you.
Go to this Folder:
app/design/frontend/MYTHEME/template/catalog/category/view.phtml
Replace the code
Code:
<?php echo $_helper->categoryAttribute($_category, $this->htmlEscape($_category->getName()), 'name') ?>
With
Code:
<?php echo $_helper->categoryAttribute($_category, $_category->getName(), 'name') ?>
If you don’t find the view.phtml in this app/design/frontend/default/MYTHEME/template/catalog/category/
check this folder this app/design/frontend/base/default/template/catalog/category/
tried it but still no success.
regards
plz Submit your login information to EKW-988-65850. I should check with further detail for you.
I have fixed this bug for you by replacing this code:
Code:
<h2><?php echo $_helper->categoryAttribute($_category, $_category->getName(), 'name') ?></h2>
by
Code:
<h2><?php echo $_category->getName() ?></h2>
in /app/design/frontend/default/jm_morganite/template/catalog/category/view.phtml
Please look at: http://www.knullieenmeis.nl/eten-drinken.html