Joomla Monster Templates

joomla_450_60

Joomla Hosting

Home Bugs 1.5.xx bugs Category List Layout shows in the wrong format
 
Category List Layout shows in the wrong format PDF Print E-mail
User Rating: / 0
PoorBest 
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:

  1. ftp your website to path components/com_content/views/category/tmpl/
  2. download and open file default_items.php
  3. Go to line 68 and find the following code:
    <tr class="sectiontableentry<?php echo ($item->odd +1 ) . $this->escape($this->params->get('pageclass_sfx')); ?>; ?>" >
  4. Replace it with the following code:
    <tr class="sectiontableentry<?php echo ($item->odd +1 ) . $this->escape($this->params->get('pageclass_sfx')); ?>" >
  5. Save and upload default_items.php

    ps: always keep a backup before editing joomla files.