Forum Replies Created
-
AuthorPosts
-
creativebridge
ParticipantWe are getting the same issue at the moment when we updated to the latest Event Calendar Pro, Will try to update to 3.8.3 and see how it goes.
Thanks for you suggestion art8
creativebridge
ParticipantHi Barry
Thanks for taking a look here is the link to my pastebin http://pastebin.com/YH8kkeyT
Thanks
creativebridge
ParticipantThanks for your reply! Updating the plugin and re-entering my license key done the trick in displaying by events on the backend again.
As for the rss feed I have created my own file called ‘feed-events-rss2.php’ which sits in my theme directory.
I then put the following code in my theme’s functions.php as shown in the thread you linked me too.
[code]
remove_all_actions( ‘do_feed_rss2’ );
add_action( ‘do_feed_rss2’, ‘event_feed_rss2’, 10, 1 );function event_feed_rss2( $for_comments ) {
$rss_template = get_template_directory() . ‘/feed-events-rss2.php’;
if( get_query_var( ‘post_type’ ) == ‘tribe_events’ and file_exists( $rss_template ) )
load_template( $rss_template );
else
do_feed_rss2( $for_comments ); // Call default function
}
[/code]I have put in my feed-events-rss2.php where the event publish date currently is, the following:
[code]
echo mysql2date(‘D, d M Y H:i:s +0000’, tribe_get_start_date(‘Y-m-d H:i:s’, true), false);
[/code]
And now my date has disappeared altogether. Almost there I think just need to display the dateThanks
creativebridge
ParticipantHi Sorry to be a pain…
I have set the syndication feed to 100 which has increased the amount of events shown. Is there a way to order the feed by event date?I also tried to view the events on the dashboard but they are not listed, however on the front end all the events are displayed. My dashboard says: The following plugins are out of date: Events Calendar PRO 3.0.5. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. Want to pair an older version?
I am using events plugin pro Version 3.0.5
wordpress 3.5.1
Please advise?Thanks
creativebridge
ParticipantHi
As of now, it only shows events from 30th May till 1st October.
How come the rest of octobers events are not listed as well as the forthcoming events like November?creativebridge
ParticipantAny ideas on how to display upcoming events please?
creativebridge
ParticipantHi Kelly
I have followed the tutorial added the script to my theme’s function file. It is still showing past events as seen here http://www.eblex.org.uk/events/feed/creativebridge
ParticipantHi Kelly
Thanks for getting back to me, I cant see the link you have provided can you show me where I can learn more about customising the events feed to display upcoming events please?
creativebridge
ParticipantHey Rob thanks for your reply.
The plugin im using is located here http://wordpress.org/plugins/cookie-control/Thanks
-
AuthorPosts
