Hello,

When the rss feed fiels are not filled out, the empty markup is still placed in the node. In my case that's quite annoying as I'm using the display suite to put the rss output in the right column of the node. Even when the empty markup is outputted, the display thinks I have a right column enabled, so the middle column remains very narrow, while the right column is empty.

Danny

Comments

danny_joris’s picture

I did a very rough tweak around line 194 of feed_field.module

<?php
  if($item['feed_field_title'] != '') {
  $out .= '<h2>' . $item['feed_field_title'] . '</h2>';
  }
?>

Probably not the way to do it, but it fixed it for me. Otherwise the empty <h2></h2> tags would still output.

As If’s picture

Assigned: Unassigned » As If
Status: Active » Fixed

Fixed in release 6.x-1.10.

As If’s picture

Status: Fixed » Closed (fixed)