joomdev / Astroid-Framework

Powerful framework for designers and developers to create responsive, fast & robust Joomla based websites and templates.
https://github.com/templaza/astroid-framework
GNU General Public License v2.0
104 stars 43 forks source link

Featured Article Column not working #230

Open Joomlaplates opened 3 years ago

Joomlaplates commented 3 years ago

Joomla 4.0.3 and Template One with Astroid 2.5.4 The Featured Article view ignore the columns (2) when Leading Article is set to 1 ( see pictiúre attched) Ok I found the issue, its a bug in the file > \html\com_content\featured\default.php ( line 50)

Wrong code.

<?php
$introcount = (count($this->intro_items));
$counter = 0;
$columns = ASTROID_JOOMLA_VERSION > 3 ? 1 : $this->columns;
?>

Fixed Code

<?php
$introcount = (count($this->intro_items));
$counter = 0;
$columns = ASTROID_JOOMLA_VERSION > 3 ? $this->params->get('num_columns', 1) : $this->columns;
?>

Screenshot_2-2-3-4

Joomlaplates commented 3 years ago

Any news here!!!