Description:
The info block render helper does not hide the entire html generated when selecting above or below from the article options when using components like Category Blog. The default article view component is fine as it does not use the render helper.
This produces errors when trying to style the .article-info class. If this is intentional, please note this breaks behavior across different components IE Category Blog and the default article view.
Version:
Joomla 3.2 (Windows 7 64bit, Chrome)
Details:
File: .. / layouts / joomla / content / info_block / block.php
<dl class="article-info muted">
<?php if ($displayData['position'] == 'above' && ($blockPosition == 0 || $blockPosition == 2)
[Other Code]
<?php endif; ?>
</dl>
Should be:
<?php if ($displayData['position'] == 'above' && ($blockPosition == 0 || $blockPosition == 2)
<dl class="article-info muted">
[Other Code]
</dl>
<?php endif; ?>
Repro Steps:
Results:
Both article-info are still visible. One with text and one without depending on option selected.
Expected:
Only one article-info box should be visible depending on your option (IE either below or above)
Thanks for your contribution - At this time we are only using github as the place to submit code fixes, the actual reporting of issues and testing fixes is still taking place on Joomlacode.
Please can you:
1) Open an item on the Joomlacode tracker in the appropriate area.
CMS Bug Reports: http://joomlacode.org/gf/project/joomla/tracker/?action=TrackerItemBrowse&tracker_id=8103
CMS Feature Requests: http://joomlacode.org/gf/project/joomla/tracker/?action=TrackerItemBrowse&tracker_id=8549
2) After submitting the item to the Joomlacode tracker, add a link to the Joomlacode tracker item here and make sure that you add a link to this GitHub issue or pull request on the joomlacode tracker item.
Joomlacode tracker link as requested:
Status | New | ⇒ | Information Required |
Build | ⇒ | . |
I cannot replicate this issue with Joomla 3.3.3 - has this been fixed elsewhere or am I missing somethin
This comment was created with the J!Tracker Application at http://issues.joomla.org/.
@test I've tested this on every screen I can find and it ROCKS
Personally I would not change the colour of the button from default grey to blue
This comment was created with the J!Tracker Application at http://issues.joomla.org/.
Category | ⇒ | Layout |
Looks like my last two comments do not belong on this issue - oops
This comment was created with the J!Tracker Application at http://issues.joomla.org/.
After considerable time without update I am closing this. If you feel this is still an issue please provide further information and it can always be reopened
Status | Information Required | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2015-01-01 16:55:23 |
Closed_By | ⇒ | brianteeman |
Labels |
Added:
?
|
Apologies, initially had the wrong file position. Edited with correct file position.