Hello,

I'm using this module to create a podcast feed (which I've done in other sites) but this time the description is not populating in the feed. The only difference that I can deduce to this issue is the fact that I'm not using the default "body" as the body for this filetype... I've created a custom body tag called "podcast_body".

I think i've deduced it down to the following section in the ffpc_plugin_row_podcast.inc file in the module.

-------------------------------------------------------------------------------

// Prepare the item description
switch ($item_length) {
case 'fulltext':
$item_text = $item->body; <--------------- Calling the body field for description
break;
case 'teaser':
$item_text = $item->teaser;
if (!empty($item->readmore)) {
$item_text .= '

' . l(t('read more'), 'node/' . $item->nid, array('absolute' => TRUE, 'attributes' => array('target' => '_blank'))) . '

';
}
break;
case 'title':
$item_text = '';
break;

-------------------------------------------------------------------------------

Is there a way that I can have my new body be used as the description field?