Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Derek,
Here’s an example of customizing the page titles for all the plugin related pages: https://gist.github.com/aad337b8f0662d4df1b6
It’s not specifically for Thesis but should point you in the right direction.
– Jonah
Jonah
ParticipantHi Jennifer,
This is possible to highlight the days but will require some PHP/CSS changes. The first change needs to be made in /wp-content/plugins/the-events-calendar/views/table-mini.php – make a copy of that and place in an ‘events’ folder in your active theme’s folder. Then find line 125 that should read: http://snippi.com/s/u1jz363
…and change to:
That will add the ‘has-events’ class to the div for the days that have events. Then, in your theme’s style.css file just add for example:
.tribe-events-calendar-widget .daynum.has-events {
background: #ccc;
}
…which will give days that have events a background color of #ccc. That should get you a good start with this. Feel free to apply any styling you want.As for category colors, you might try this plugin: http://wordpress.org/extend/plugins/the-events-calendar-category-colors/
I hope that helps!
– Jonah
Jonah
ParticipantHi Simon,
It works fine for me. Have you tried deactivating all other plugins and then turning them on one by one and/or reverting your theme to Twenty Eleven so to see if there’s a conflict going on? Please try that and let me know what you find.
Thanks,
JonahJonah
ParticipantHi Nicole,
Do you have any specific examples I could take a look at?
Thanks,
JonahJonah
ParticipantHi Dennis,
As this is not one of our premium plugins, we do not provide support for the Image Widget here. Please post in the forum on WordPress.org: http://wordpress.org/extend/plugins/image-widget/
Thanks,
JonahJonah
ParticipantHi all,
In the latest release of the plugins, it should no longer create un Unnamed Venue as long as none of the fields are populated for a new Venue. Please make sure you are running the latest version of the plugin(s) (2.0.9) and let me know if this is not the way it’s working for you.
Thanks,
JonahJonah
ParticipantHi Sheila,
In our current version of TEC/ECP and Community Events, if no Venue is selected and all the venue fields are left blank, no Venue will be created for the event. But, if any of the fields are filled in for the Venue, one will be created and there is currently no facility to be able to detect a duplicate but I could see value in this (especially for Community submitted events) and will create a feature request for it.
One thing you could do in the short term is put a clear message on the Community form indicating that users need to be careful with how they input Venus but I realize this may be useless because if different users are submitting events, then how would they be able to know the subtle differences in how Venues were named.
What about an option to turn off the ability for certain users or roles to add new Venues? That way you’d run into the problem much less I’d assume.
Thoughts? Benji, feel free to chime in here as well.
Thanks,
– JonahJonah
ParticipantHi Jamie,
No update yet, sorry for the delay. I’ve poked our developer again to take a look at this but will probably have to wait until Monday. Stay tuned.
– Jonah
September 29, 2012 at 9:32 am in reply to: update 1.0.2 incorrect times… import picture error – plugin useless #25896Jonah
ParticipantHi Thomas and Kelly,
We have another thread over here: https://theeventscalendar.com/support/forums/topic/time-zone-incorrect/ that Barry has addressed and filed it in our system as a bug so it is being looked at. Please let me know if that’s not the same issue and I’ll keep this open.
Thanks,
JonahSeptember 29, 2012 at 9:19 am in reply to: Both Start and End dates showing in sidebar widget regardless of settings #25893Jonah
ParticipantHi all,
This will be fixed in the next release – it didn’t make it into the hotfix release so we’ll need to wait. Until then, you’ll need to apply the patch by simply replacing the events-advanced-list-load-widget-display.php with the patched file linked here: http://cl.ly/code/2g3x3R0c0z1s
If anyone has any other questions about this please let me know.
Thanks,
JonahJonah
ParticipantHi Anthony,
Hmmm, it should work, it does for me. Can you paste your table.php file to http://snippi.com/?
Are you editing this in the override file or the core file?– Jonah
September 27, 2012 at 6:09 pm in reply to: Overlapping Text Upcoming Events & Remove Ending Date #25836Jonah
ParticipantHi Kevin,
You’re welcome! On the end date, we had a bug in the last release with that and it will be patched soon. In the mean time here’s a patched copy of the file: http://cl.ly/code/2g3x3R0c0z1s
Replace the file here: /wp-content/plugins/events-calendar-pro/views/events-advanced-list-load-widget-display.php with the above.
– Jonah
September 27, 2012 at 4:09 pm in reply to: Overlapping Text Upcoming Events & Remove Ending Date #25832Jonah
ParticipantHi Kevin,
You can fix the overlapping by adding the following CSS to your themes style.css file:
.eventsListWidget li, .eventsAdvancedListWidget li {
padding: 0 0 10px 20px !important;
}
As for removing the end date, you should be able to uncheck the display of that in the widget.– Jonah
September 27, 2012 at 2:32 pm in reply to: Next Event Widget – no longer showing full event details. #25823Jonah
ParticipantHi Derek,
Glad to hear that worked! Yes, you are correct, that file and any other overridable template file will take precedence over the stock files.
Let me know if you need anything else!
– Jonah
Jonah
ParticipantHi Sarah,
If you want to use the Default Page Template, this simply uses your theme’s page.php template file which you have complete control over. You’ll need to modify that file and figure out a way to include specific sidebars on event pages. One thing that will help you are conditional wrappers for our plugin: https://gist.github.com/2415009 – these will let you detect and execute specific code when on certain event related pages.
You can then register different sidebars in WordPress and then call them using the dyanmic_sidebar() function in WordPress. http://codex.wordpress.org/Function_Reference/dynamic_sidebar
I this is kind of complex but unfortunately it’s something you will need to work out on your own. Good luck!
– Jonah
-
AuthorPosts
