Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi there,
The plugin will import the location from Facebook but you need to enable the map manually for each event by editing it and checking the Show Google Maps box: http://cl.ly/image/190n0W0T2l1j
I hope that helps!
– Jonah
Jonah
ParticipantHi Joan,
This will be an available option in our upcoming 3.0 release in the next couple months. Until then, you will need to code something yourself.
Regards,
JonahJonah
ParticipantHi Steve,
You can customize your feeds to include whatever event data you want. Here is an example of adding the start/end date to the feed. Add this to your functions.php file: https://gist.github.com/jonahcoyote/5030858
You can read more about customizing feeds here: http://digwp.com/2012/10/customizing-wordpress-feeds/
The dates should be in the correct order. What is the feed URL you are viewing? In order to see your dates in the right order, you need to be viewing the feed @ http://lightningridgecellars.com/wp/events/feed/
I hope that helps!
– Jonah
Jonah
ParticipantSorry for the delay Joan, I just sent the developer assigned to this a message and will get back to you as soon as I hear something.
Thanks,
JonahJonah
ParticipantThanks for the contribution! I’ve gone ahead and created a Gist for this too: https://gist.github.com/jonahcoyote/5015669 – we’re in the process of making changes to the plugin so I’ll pass this on to our developer because this might help facilitate this functionality in a future release.
Cheers,
– JonahJonah
ParticipantHi Tim,
Unfortunately there is no built in way to do this. You may be able to find a third party plugin to help you with this. Here’s one that looks promising: http://wordpress.org/extend/plugins/simple-facebook-connect/
I hope that helps!
– Jonah
Jonah
ParticipantHi Charles,
Did any of the fixes above work for you? Do you still need help with this?
– Jonah
Jonah
ParticipantHi Laura,
Can you please create another thread for this issue so as to not clutter up this one?
Thanks,
JonahFebruary 22, 2013 at 10:40 am in reply to: Can't seem to make the Calendar and Events views work right. #33238Jonah
ParticipantYou’re welcome Laura, let us know if there’s anything else you need help with! If you’re happy with the plugin and support you received, we always appreciate and welcome reviews here: http://wordpress.org/support/view/plugin-reviews/the-events-calendar
Thanks,
– JonahFebruary 22, 2013 at 10:28 am in reply to: Can't seem to make the Calendar and Events views work right. #33236Jonah
ParticipantHi Laura,
Try changing the 1000 timeout to 2000 or 3000 which is 1 or 2 or 3 seconds delay before it switches the month.
– Jonah
Jonah
ParticipantHi Chris,
As far as I know this is not a feature on the list for 3.0.
– Jonah
Jonah
ParticipantHi Chris,
This has been something that has come up again and again and we are definitely aware that event RSS feeds need some work. But at this time we are focusing all our efforts on 3.0 which unfortunately does not include any changes in the RSS feed output.
Sorry I don’t have better news but there’s not much else I can do.
– Jonah
February 22, 2013 at 9:44 am in reply to: Can't seem to make the Calendar and Events views work right. #33226Jonah
ParticipantHi Laura,
Here’s a hack that should get this working for you.
1. First create a folder labeled ‘js’ in your theme.
2. Then create a file ‘mini-cal-hack.js’ and put this code in it:
jQuery(document).ready(function($) {
$('#calendar_wrap a.next-month').trigger('click');
setTimeout(function(){ $('#calendar_wrap a.prev-month').trigger('click'); }, 1000);
});
3. Then place this code in your theme’s functions.php file to load it:
/*-----------------------------------------------------------------------------------*/
/* Add Menu Page Script
/*-----------------------------------------------------------------------------------*/
add_action("wp_enqueue_scripts", "mini_cal_hack");
function mini_cal_hack() {
wp_enqueue_script('mini-cal-hack', get_stylesheet_directory_uri() . '/js/mini-cal-hack.js', array('jquery'), '1.0', true);
}
Let me know whether or not that works for you.Thanks,
JonahJonah
ParticipantHi Chris,
Unfortunately not. You’ll need to figure out something on your own. Sorry I can’t offer more here.
– Jonah
Jonah
ParticipantHi Chris,
We don’t currently offer this functionality but you should be able to get something working by using something like: http://wordpress.org/extend/plugins/feedwordpress/
I hope that helps!
– Jonah
-
AuthorPosts
