Just to clarify, Feeds shows only the the story text to encourage the reader to visit your site for the whole story.
One way to include it is to move it from the extended text to the story text.
If you'd prefer to modify code (and I haven't tested this), could change includes/nukeSEO/content/News.php (line 25) from:
Code: $this->sql_col_desc = 'hometext';
|
to:
Code: $this->sql_col_desc = 'CONCAT(RTRIM(hometext),\ ' \', RTRIM(bodytext))';
|
That combines the hometext and bodytext attributes in what nukeFEED sees as a single MySQL field. By the way, that only works with MySQL (and the RTRIM stuff isn't required - just nice to have).
_________________