Skip to content

Featured Article Column not working #230

@Joomlaplates

Description

@Joomlaplates

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions