Forum Replies Created
-
AuthorPosts
-
October 10, 2012 at 4:11 pm in reply to: Events Calendar Pro Version 2.09, Advanced List Widget Display Issue #26445
Jonah
ParticipantHi 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,
JonahJonah
ParticipantHi 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
Jonah
ParticipantNo problem Matt, let me know if there’s anything else you need help with!
October 10, 2012 at 1:19 pm in reply to: Recurring Holidays without date on permalink? Without Multiple Entries? #26435Jonah
ParticipantOne 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…
October 10, 2012 at 1:13 pm in reply to: Recurring Holidays without date on permalink? Without Multiple Entries? #26434Jonah
ParticipantHi 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
Jonah
ParticipantHi 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
Jonah
ParticipantHi 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
Jonah
ParticipantHey 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,
– JonahJonah
ParticipantHi 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,
JonahJonah
ParticipantHi 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
Jonah
ParticipantHi 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,
JonahJonah
ParticipantHi 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,
JonahJonah
ParticipantHi 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
Jonah
ParticipantHi 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
Jonah
ParticipantThanks Sheila, and sorry Benji – feel free to open another thread if this is still an issue for you.
– Jonah
-
AuthorPosts
