Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Larry,
The head tags are likely in your theme’s header.php file, nothing to do with our plugin. You’ll want to edit that file and follow best practices for editing that file according to the theme author. Basically, open up header.php and paste that line in the head tags before the wp_head() function call.
I hope that helps but let me know if you need anything else.
– Jonah
September 3, 2012 at 3:24 pm in reply to: Get Invalid Country code when adding new event to Eventbridge via wordpress #24495Jonah
ParticipantHi Adam,
You can provide access to pro [at] tri [dot] be
Thanks,
JonahSeptember 3, 2012 at 3:22 pm in reply to: Problem with recurring events get_posts loop (event time and url wrong) #24494Jonah
ParticipantHi Sandro,
The first thing I would recommend is to not use get_posts and use tribe_get_events() instead. We have examples of queries in our documentation and you should easily be able to modify your existing query: https://theeventscalendar.com/support/documentation/the-events-calendar-template-tags-general-functions/#functiontribe_get_events
Try switching to using that instead and let me know how it goes.
Cheers,
JonahJonah
ParticipantHi Kristy,
Did you try opening the zip file first before uploading? That’s what I would suggest. Open it first and then upload the contents to update the plugin.
I hope that helps but let me know if you need anything else.
– Jonah
Jonah
ParticipantHi all,
I’ve got word back from one of our developers and what he said is that:
“Pagelines is executing its init.php file on the AJAX call (it is in the theme’s functions.php file). The way that users can solve this is to add this line of code:”
if ( !defined( 'DOING_AJAX' ) )
directly above of the line that reads
require_once(get_template_directory() . '/includes/init.php');
in the Pagelines theme functions.php file.Can you guys please try this out and let us know how it goes?
Thanks,
JonahAugust 31, 2012 at 1:51 pm in reply to: Calendar page title shows title of an event (continued) #24441Jonah
ParticipantHi Philipp,
Just posted another update to the Gist that should work.
Cheers,
JonahAugust 31, 2012 at 12:30 pm in reply to: Calendar page title shows title of an event (continued) #24430Jonah
ParticipantHi Philipp, I posted a comment on the Gist, please take a look, try it out and let me know if that works.
You can post code here in the forums but it’s temperamental and only recommended for short snippets. To do so just wrap whatever you want to highlight in < code > < / code > tags.
– Jonah
Jonah
Participant@Mike, 90mb should be plenty. It sounds like there’s something else going on… Have you tried deactivating all other plugins to see if this helps? Or, switching to the Twenty Eleven theme?
@David, please send access details to pro [at] tri [dot] be referencing this thread and examples of what to try out.
@Jason, can you confirm you’ve tried deactivating all other plugins and/or reverted to the Twenty Eleven theme?Thanks,
JonahAugust 31, 2012 at 8:23 am in reply to: Events admin/back-end view backwards (farthest first) #24393Jonah
ParticipantHi Ryan,
The plugin keeps all events in the database until they are deleted. You may be able to find a plugin to auto delete posts or a script. Here’s a post that might help: http://stackoverflow.com/questions/5317599/wordpress-automatically-delete-posts-that-are-x-days-old
Good luck!
– Jonah
August 30, 2012 at 3:21 pm in reply to: Events admin/back-end view backwards (farthest first) #24373Jonah
ParticipantHi guys,
You can use this snippet in your functions.php to modify the default order: https://gist.github.com/3542941
I hope that helps but let me know if you need anything else.
– Jonah
Jonah
ParticipantHi Mike,
In an effort to make the plugin more accessible and progressive we’ve incorporated HTML5 microdata (http://html5doctor.com/microdata/). Using the traditional XHTML transitional doctype, you are going to see warnings because the doctype does not include microdata. To get around this you should just be able to change your doctype in Genesis using something along the lines of:
/*-----------------------------------------------------------------------------------*/
/* Display Custom Doctype
/*-----------------------------------------------------------------------------------*/
remove_action( 'genesis_doctype', 'genesis_do_doctype' );
add_action( 'genesis_doctype', 'custom_doctype' );
function custom_doctype() { ?>
...or if you want to use HTML5...
/*-----------------------------------------------------------------------------------*/
/* Display Custom Doctype
/*-----------------------------------------------------------------------------------*/
remove_action( 'genesis_doctype', 'genesis_do_doctype' );
add_action( 'genesis_doctype', 'custom_doctype' );
function custom_doctype() { ?>
I hope that helps but let me know if you need anything else.- Jonah
Jonah
ParticipantHi Rhonda,
Go into Settings > General and modify the “Week Starts On” option.
I hope that helps but let me know if you need anything else.
– Jonah
Jonah
ParticipantHi Monnet,
Sorry to hear you are having trouble. It looks ok to me – what do you mean by not being able to scroll? Can you post a screencast using something like Jing to show what you mean? I need some more information…
Thanks,
JonahAugust 29, 2012 at 1:21 pm in reply to: Calendar page title shows title of an event (continued) #24308Jonah
ParticipantHi Philipp,
Can you please post the stock contents of your page.php file without any changes?
To answer your other question about the links at the bottom of single events, you can easily change this by making a copy of /wp-content/plugins/the-events-calendar/views/single.php and placing in an ‘events’ folder in your theme and then modifying the template tags on lines 109 & 111 so it looks like so:
tribe_previous_event_link('Prev');
tribe_next_event_link('Next');
I hope that helps but let me know if you need anything else.– Jonah
Jonah
ParticipantHi Thomas,
As another follow up to this I would suggest taking a look at this thread where I posted a pretty thorough response on the matter: https://theeventscalendar.com/support/forums/topic/calendar-page-title-shows-title-of-an-event-and-wont-change/#post-19270
I hope that helps but let me know if you need anything else.
– Jonah
-
AuthorPosts
