jquery-rss icon indicating copy to clipboard operation
jquery-rss copied to clipboard

Event - Start Date

Open sambriggs172 opened this issue 6 years ago • 1 comments

I'm trying to pull through the event start date and not the published date. The two fields are;

<published>2019-01-10T10:10:41+00:00</published>

<ev:startdate>2019-01-14T11:28:00+00:00</ev:startdate>

In the jquery.rss.js file, I've found;

date: this.getFormattedDate(entry.publishedDate),

and tried to alter it;

date: this.getFormattedDate(entry.startDate),

But when I try and alter it, it breaks...

sambriggs172 avatar Jan 22 '19 10:01 sambriggs172

What's the feed you try to parse?

sdepold avatar Feb 01 '19 17:02 sdepold