Since upgrading to jEvents 3.6.55 the RSS feed provided my the Latest Events module (modlatest) seem to have changed. We previously customized the feed to include custom fields, but when adding it to rss.php they do not appear. We previously added the below code to the requiered fields:
$item->startDate = $item_startdate;
$item->endDate = $item_enddate;
$item->identifier = $row->get('extra_info');
$item->season = $row->customfields['season']['value'];
$item->state = $row->customfields['Status']['value'];
$country_3lc = str_replace('/','',$row->get('loc_country'));
$item->countryName = $country_3lc;
$item->countryCode = $country_3lc;
$item->countryFlag = JUri::base().'images/jevents/jevlocations/thumbnails/thumb_'.$row->get('loc_image');
$item->logo = $row->_imageurl1? (JUri::base().$row->_imageurl1) : '';
$item->picture = $row->_imageurl2? (JUri::base().$row->_imageurl2) : '';
$item->id = $item_slug;
$item->city = $row->get('loc_city');
$item->city = $row->get('loc_city');
$item->standardimage2 = $row->_imageurl2? (JUri::base().$row->_imageurl2) : '';;
$item->shortname = $row->get('extra_info');
$item->type = $row->customfields['type']['value'];
$item->subtype = $row->customfields['subtype']['value'];
Should customfields be called a different way ?
$item->startDate = $item_startdate;
$item->endDate = $item_enddate;
$item->identifier = $row->get('extra_info');
$item->season = $row->customfields['season']['value'];
$item->state = $row->customfields['Status']['value'];
$country_3lc = str_replace('/','',$row->get('loc_country'));
$item->countryName = $country_3lc;
$item->countryCode = $country_3lc;
$item->countryFlag = JUri::base().'images/jevents/jevlocations/thumbnails/thumb_'.$row->get('loc_image');
$item->logo = $row->_imageurl1? (JUri::base().$row->_imageurl1) : '';
$item->picture = $row->_imageurl2? (JUri::base().$row->_imageurl2) : '';
$item->id = $item_slug;
$item->city = $row->get('loc_city');
$item->city = $row->get('loc_city');
$item->standardimage2 = $row->_imageurl2? (JUri::base().$row->_imageurl2) : '';;
$item->shortname = $row->get('extra_info');
$item->type = $row->customfields['type']['value'];
$item->subtype = $row->customfields['subtype']['value'];
Should customfields be called a different way ?