User tests: Successful: Unsuccessful:
Pull Request resolves #47757
This is the same PR as #47758 just against 6.2 instead of 5.4
Modified the featured feed view to respect the Show Intro Text article parameter when Include in Feed = Full Text is selected.
File changed: components/com_content/views/featured/FeedView.php (line 82)
Before:
$description .= ($params->get('feed_summary', 0) ? $row->introtext . $row->fulltext : $row->introtext);After:
$description .= $row->params->get('show_intro', 1) ? $row->introtext : '';
$description .= $params->get('feed_summary', 0) ? $row->fulltext : '';Previously, the featured feed ignored the Show Intro Text = Hide setting and always included intro text when Full Text was selected. Now the feed checks the article's show_intro parameter and only includes intro text when it is set to Show.
Prerequisites:
Step 1: Configure Article Options
Step 2: Create featured articles with Read More
Step 3: Create a Featured Articles menu item
Step 4: Access the RSS feed
Use the URL of your featured articles menu item with feed parameters:
http://localhost/featured-feed-test?format=feed&type=rss
Or use the direct route:
http://localhost/index.php?option=com_content&view=featured&format=feed&type=rss
Step 5: Observe the feed output
Look at the <description> tag of your featured articles in the feed.
<description><![CDATA[<div class="feed-description"><p>AA1</p>
<p>BB1</p></div>]]></description>Both intro text (AA1) and full text (BB1) appear, even though Show Intro Text = Hide is selected.
<description><![CDATA[<div class="feed-description"><p>BB1</p></div>]]></description>Only the full text (BB1) appears. The intro text (AA1) is correctly hidden.
Please select:
| Status | New | ⇒ | Pending |
| Category | ⇒ | Front End com_content |
I have tested this item ✅ successfully on f9697a5
| Labels |
Added:
Feature
PR-6.2-dev
|
||
I've restored the previous human test result in the issue tracker as the commit which has invalidated the test counter was just a clean branch update.
I have tested this item ✅ successfully on 14ca520
Did not select the category for the articles but set them to featured
I have seen "AA1", "AA2" before and gone after the patch
I have tested this item ✅ successfully on 14ca520
Did not select the category for the articles but set them to featured
I have seen "AA1", "AA2" before and gone after the patch
| Status | Pending | ⇒ | Ready to Commit |
RTC
RTC
| Labels |
Added:
RTC
|
||
| Status | Ready to Commit | ⇒ | Fixed in Code Base |
| Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2026-06-21 22:45:22 |
| Closed_By | ⇒ | MacJoom |
Thank you!
I have tested this item ✅ successfully on f9697a5
This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/47787.