|
Sunday, 26 July 2009 14:47 |
|
In latest 1.5.11 Joomla Release for 1.5 there is a bug floating around. This bug makes Category List Layout to show in wrong format. To fix this bug you need to replace file: default_items.php which can be found at: /components/com_content/views/category/tmpl/ with the file attached here: Category List Layout fix for Joomla 1.5.11 If you want follow instructions below and fix this bug yourself since its pretty simple:
- ftp your website to path components/com_content/views/category/tmpl/
- download and open file default_items.php
- Go to line 68 and find the following code:
<tr class="sectiontableentry<?php echo ($item->odd +1 ) . $this->escape($this->params->get('pageclass_sfx')); ?>; ?>" >
- Replace it with the following code:
<tr class="sectiontableentry<?php echo ($item->odd +1 ) . $this->escape($this->params->get('pageclass_sfx')); ?>" >
- Save and upload default_items.php
ps: always keep a backup before editing joomla files.
|