Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Donna, sorry to hear you are having so many issues with the plugin. If you provide me WP admin access I’d be happy to take a look and help with as much as I can. Email to: jonahcoyote [at] gmail [dot] com
Thanks,
JonahJonah
ParticipantHi Michelle,
You will need to place the calendar on a wider page somehow. Maybe within your theme you have options to have a page without a sidebar? There’s not enough room for the calendar to fully display. Once you make the page wider that should help with your calendar being so tall but unfortunately there’s not too much you can do with that because you have so many events on certain days. You could truncate the event titles which would help some but you will need to custom code that.
I hope that helps,
JonahJonah
ParticipantHi Mariano, can you please email WP admin and FTP access so we can take a look? jonahcoyote [at] gmail [dot] com
Jonah
ParticipantHi John,
This does appear to be a bug – it’s filling in the fields with the correct default but not selecting the default in the drop down and instead adding the defaults as new items… I will go ahead and log this as a bug ticket. Thanks for reporting!
December 28, 2011 at 11:03 am in reply to: Custom goodies for views/events-list-load-widget-display.php #12709Jonah
ParticipantHi Christopher,
If you want to use a different thumbnail size you have two options:
1. Add a new image size in WordPress and use that instead.
2. Use Timthumb or another dynamic image resizing script to resize on the fly.I would suggest using Advanced Custom Fields (http://wordpress.org/extend/plugins/advanced-custom-fields/) for your custom fields. The plugin let’s you display your custom fields only on certain post types so you can assign it to just your events post type.
Then, in the widget display code you can just echo the field like so:
echo get_field('event_excerpts', $post->ID);
Change event_excerpts to whatever you assign for your custom field. You may need to change $post->ID too to pass in the event ID as assigned in the widget – I think $post->ID will work though.
Now getting an actual checkbox for this new field in the widget options is another thing… But maybe you don’t actually need this 🙂
I hope that helps,
JonahJonah
ParticipantHi Scott,
The title is probably not showing up because of how your theme has been coded. I can’t say exactly why without taking a look. If you want me to take a look, please email me WP admin and FTP creds to jonahcoyote [at] gmail [dot] com
To edit the CSS, make a copy of /plugins/the-events-calendar/resources/events.css and place in an ‘events’ folder within your theme. That will ensure your changes will not be lost the next time you update.
Jonah
ParticipantIts probably possible but complicated because you’d have to modify the native PHP date function to do so. You might try searching around to find a solution for that. Good luck!
Jonah
ParticipantHi Mariano, do you have the base Events Calendar plugin installed?
Jonah
ParticipantHey Michael, something like this should get you going in the right direction: http://pastebin.com/0HiEHPmg
Jonah
ParticipantGlad that worked Dave!
Jonah
ParticipantHi Robert,
I do not know what CSS changes were in the 2.0.2 update if any but I’m glad you resolved the problem. Let us know if there’s anything else we can help you with.
– Jonah
Jonah
ParticipantHi Robert,
The single events look ok to me – http://cl.ly/2i402T0u1C2j3w171T3X
Did you already resolve this?
– Jonah
Jonah
ParticipantHi Leigh,
Very sorry about the troubles. Have you tried disabling other plugins and/or reverting to the Twenty Eleven theme to rule out plugin or theme conflicts? Unfortunately I don’t know what else could be causing this and most of the team is away until Jan. 2nd. I’ll put this on the list of issues to tackle once everyone is back and we’ll help you out as soon as we can…
Regards,
JonahJonah
ParticipantHi Peter,
Typically you’ll see the white screen in WordPress when there are either errors in the code or not enough memory on the server. Have you tried turning WordPress debugging on to see if there are any errors (http://codex.wordpress.org/Editing_wp-config.php#Debug)? Have you tried increasing the amount of memory on your server?
If you provide me FTP and WP admin access to your site I can take a look – just email to jonahcoyote [at] gmail [dot] com
FYI, I work for Modern Tribe and am filling in for Rob while he’s away.
Regards,
JonahJonah
ParticipantHi Dave, I’m filling in for Rob while he’s away. All you need to do to pass in custom date parameters is to do like so:
echo tribe_get_start_date( $post->ID, $start, 'D. M j, Y' );
You can use any of the standard PHP date formatting params to adjust: http://php.net/manual/en/function.date.php
I hope that helps,
Jonah -
AuthorPosts
