Hi, This is really a question I posted on the Joomla forums but have received no replies. As I’m sure it’s simply a case of me knowing nothing about PHP I’m hoping either a) someone can help me with the code, or b) point me in the right direction. I apologize if this is the wrong forum to be posting to and would appreciate advice on where else I could try apart from the standard Joomla forums.
I’m trying to change the output of com_content/category/blog_children.php. The code below outputs the category description of subcategories (if selected in category options of menu item)
<?php if ($this->params->get('show_subcat_desc') == 1) :?> <?php if ($child->description) : ?>What I want to do is replace the category description with the category image only.
Found this code in blog.php that I assume calls the category image
<?php if ($this->params->get('show_description_image') && $this->category->getParams()>get('image')) : ?>Knowing nothing about php I decided just to paste this code into blog_children.php in the appropriate div, but nothing happens. I’m hoping someone can help me out with a bit of code that will achieve this.
TIA

[for security]