Jonah

Forum Replies Created

Viewing 15 posts - 2,011 through 2,025 (of 4,001 total)
  • Author
    Posts
  • Jonah
    Participant

    Hi Kristy,

    That’s strange because I don’t believe we ever had the “Starts:” text in the widget. Do you have an override view of events-advanced-list-load-widget-display.php in an ‘events’ folder in your theme? Perhaps you modified this view… We did notice some problems with the widget after release particularly related to the widget displaying the end date no matter what and I’ve got a patch for that here: http://cl.ly/code/2g3x3R0c0z1s – just copy the code there and replace the code in the /wp-content/plugins/events-calendar-pro/views/events-advanced-list-load-widget-display.php file.

    If you have an override view of the the, you can modify it and you should be able to remove the “Starts:” text yourself.

    I hope that helps, but let me know if you are still having issues with this.

    Thanks,
    Jonah

    in reply to: Creating Custom Sidebar Widget (random events) #26444
    Jonah
    Participant

    Hi Cody,

    Yes I do have a solution for you. Sorry this took so long! I’ve been meaning to submit this as a plugin in the WordPress.org repo but haven’t had time yet. Take the following code and create a new PHP file and place in your plugins folder, it will then show up as a plugin you can activate in your plugins page: https://www.sourcedrop.net/8hE5fd513b378

    The only things you may want to change are the date parameters and the markup for the event data.

    I hope that helps!

    – Jonah

    in reply to: Event Details Page Formatting #26442
    Jonah
    Participant

    No problem Matt, let me know if there’s anything else you need help with!

    Jonah
    Participant

    One idea as a follow up for auto creating the events on an ongoing basis would be to create some date loops (http://www.if-not-true-then-false.com/2009/php-loop-through-dates-from-date-to-date-with-strtotime-function/) that would loop through each specific holiday and you could call the tribe_create_event() function on the given dates…

    Jonah
    Participant

    Hi Andrea,

    We do have something like this on our map for a future feature but for now you’d have to figure something else out. The only thing I can think of would be using categories or using our tribe_create_event() to programatically create the events but you’d have to find some crafty PHP method to auto create the events on an on-going basis and they would still show in the admin. One way you could hide the events in the admin is if you created a “Holiday” category and then filtered the posts in the admin using pre_get_posts() like so:

    function set_custom_post_types_admin_order($wp_query) {
    if (is_admin()) {
    // Get the post type from the query
    $post_type = $wp_query->query['post_type'];
    if ( $post_type == 'tribe_events') {
    $wp_query->set( 'tax_query', array(
    array(
    'taxonomy' => TribeEvents::TAXONOMY,
    'field' => 'slug',
    'terms' => array('holidays'),
    'operator' => 'NOT IN'
    )
    )
    );
    }
    }
    }
    add_filter('pre_get_posts', 'set_custom_post_types_admin_order');

    I hope that helps!

    – Jonah

    in reply to: Recurring Events at irregular intervals #26433
    Jonah
    Participant

    Hi Marty,

    We still do not have the capability for this type of recurrence pattern. You could create different recurring event sets for a given week with different days. But you would need to create a new instance of the set the next week if the days differ. We have plans to improve the flexibility of recurrence patterns, but no specific time/date for when they will actually be implemented. We have a lot of things we are working on for the plugin…

    Sorry I can’t offer up more here.

    – Jonah

    in reply to: Conflict with Gravity Forms? #26431
    Jonah
    Participant

    Hi Marty,

    Have you tried increasing the PHP memory for WordPress? Here are a few different ways you can do that: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    See if that helps first.

    – Jonah

    in reply to: Event Details Page Formatting #26430
    Jonah
    Participant

    Hey Matt,

    Glad to hear the upgrade and permalinks fixed the issues. As for the end date, we are aware of a bug introduced in 2.0.9 and have a patch available. Replace /wp-content/plugins/events-calendar-pro/views/events-advanced-list-load-widget-display.php with this copy: http://cl.ly/code/2g3x3R0c0z1s

    Let me know if you need anything else.

    Regards,
    – Jonah

    in reply to: Single Event Page Margins #26405
    Jonah
    Participant

    Hi Andrea,

    We do our best to make sure the plugin looks good in different themes but there are inevitably themes that will require adjustments. In this instance you should be able to simply apply your 15px padding to the single event pages. You could just add a 15px padding to the #main-fullwidth div in your themes style.css file or only apply it on single events pages by prefixing with the single events body class:

    .single-tribe_events #main-fullwidth {
    padding: 15px;
    }

    The code might be slightly different for 306phoenixhouse.com but hopefully this gives you an idea of what to do.

    Let me know if you need any more help with this.

    Cheers,
    Jonah

    in reply to: List all organizer #26403
    Jonah
    Participant

    Hi Pierre,

    Organizers are just a post type so you could easily run a custom query using WP_Query to pull all the organizers on your site. Here is a sample of some code you could put somewhere: https://gist.github.com/3865393

    Does that help?

    – Jonah

    in reply to: Embed Google maps #26402
    Jonah
    Participant

    Hi Mathew,

    Try re-saving the option to display the maps. Then edit your event(s) and make sure the Show Google Map option is checked: http://cl.ly/image/3m443h0l3r05

    As for the other issues, please open a separate thread for them to keep things organized.

    Thanks,
    Jonah

    in reply to: Google Maps showing wrong location #26389
    Jonah
    Participant

    Hi Simon,

    That is strange, especially since the location our plugin shows is so close to the one Google shows on their site. I’ve created a ticket for this for a developer to take a look at since it’s beyond me. Stay tuned.

    Thanks,
    Jonah

    in reply to: Change Venue page layout #26377
    Jonah
    Participant

    Hi Simon,

    There are two ways you can modify the venue page layout:

    1. Via CSS – you can simply target whatever elements you want in your themes style.css file.
    2. Via a template override of the single venue view. If you want to go this route simply make a copy of /wp-content/plugins/events-calendar-pro/views/single-venue.php and place in an ‘events’ folder in your active theme. Then, you can make whatever changes you want to the markup or PHP.

    I hope that helps!

    – Jonah

    in reply to: Can't get events to show in Advanced Widget #26373
    Jonah
    Participant

    Hi Christopher,

    I took a look at the theme and couldn’t figure out what the problem is. I’ve passed it onto one of our developers to take a look and will post back when I know more. Stay tuned.

    – Jonah

    in reply to: 600 Venues #26367
    Jonah
    Participant

    Thanks Sheila, and sorry Benji – feel free to open another thread if this is still an issue for you.

    – Jonah

Viewing 15 posts - 2,011 through 2,025 (of 4,001 total)