Thanks for the module

after installing & configuring this module I got empty feed.

spent little more time to investigate.
I was used audiofield module and it widget type was 'audiofield_widget' !

it works after changing the following code at ffpc_plugin_row_podcast.inc

if ( ($field->content_field['widget']['type'] == 'filefield_widget') || ($field->content_field['widget']['type'] == 'audiofield_widget') ) {

needs review....

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

mfer’s picture

Version: 6.x-0.7 » 6.x-2.x-dev
Status: Needs review » Active

This would be good to get in.

rzelnik’s picture

I also use AudioFiled and also got empty field. I have tried this patch but it did not help me.
Then I changed
Content Type > [My_Podcast_Content_Type] > Display Fields > RSS > [My_filefield]:
switch to Generic file.

Now it works well.

snyderp’s picture

I was seeing this same problem. Instead of checking specifically for audiofield, it might be better to generically check to see if the content field looks like a file of some kind. This would allow things to work for other possible future filefield-like elements.

I've attached a simple patch that does the above. Hope it helps!

Pete

snyderp’s picture

Status: Active » Needs review