We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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...
The text was updated successfully, but these errors were encountered:
What's the feed you try to parse?
Sorry, something went wrong.
No branches or pull requests
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...
The text was updated successfully, but these errors were encountered: