Jonah

Forum Replies Created

Viewing 15 posts - 2,326 through 2,340 (of 4,001 total)
  • Author
    Posts
  • in reply to: Calendar pop-ups not rendering properly #24496
    Jonah
    Participant

    Hi 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

    Jonah
    Participant

    Hi Adam,

    You can provide access to pro [at] tri [dot] be

    Thanks,
    Jonah

    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: Events Calendar Pro 2.0.8 will not install. #24491
    Jonah
    Participant

    Hi 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

    in reply to: Pagelines #24449
    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: Calendar page title shows title of an event (continued) #24441
    Jonah
    Participant

    Hi Philipp,

    Just posted another update to the Gist that should work.

    Cheers,
    Jonah

    in reply to: Calendar page title shows title of an event (continued) #24430
    Jonah
    Participant

    Hi 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

    in reply to: Cannot save certain recurring events #24423
    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,
    Jonah

    in reply to: Events admin/back-end view backwards (farthest first) #24393
    Jonah
    Participant

    Hi 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

    in reply to: Events admin/back-end view backwards (farthest first) #24373
    Jonah
    Participant

    Hi 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

    in reply to: Validation Errors #24354
    Jonah
    Participant

    Hi 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

    in reply to: Calendar day order #24353
    Jonah
    Participant

    Hi 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

    in reply to: Can't scroll on the page :( #24352
    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: Calendar page title shows title of an event (continued) #24308
    Jonah
    Participant

    Hi 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

    in reply to: Bugs on titles ? #24307
    Jonah
    Participant

    Hi 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

Viewing 15 posts - 2,326 through 2,340 (of 4,001 total)