Forum Replies Created
-
AuthorPosts
-
Casey
ParticipantDirk,
You should be able to just swap thing around a bit like this: https://gist.github.com/ckpicker/e98117dd34975140e1b4Let me know if that does the trick! Thanks! 🙂
-Casey-
Casey
ParticipantStacey,
That’s definitely bizarre that this is occurring with a blank child theme. I’m going to create a ticket for one of our developers to investigate further, and I’ll let you know as soon as I have a response from them. Please stand by.Thanks! 🙂
-Casey-
Casey
ParticipantJordan,
Take a look at our Developer Docs, paying particular attention to the tribe_get_start_date() function, which is what I think you’ll need. Thanks! 🙂-Casey-
Casey
Participantmahina,
While I wish I could say that the plugin seamlessly integrates with every theme out there, the reality is that custom themes have so many settings/options that it would be nearly impossible for us to account for all of those. I’m not familiar with this particular theme, so I couldn’t speak to exactly what’s happening in the code, but it appears that something else in the theme’s code is causing a conflict with featured images.I would suggest reaching out to the theme developer to see if they can offer further help in troubleshooting the issue, and let us know if we can help answer any other questions.
Thanks! 🙂
-Casey-
July 10, 2014 at 8:28 am in reply to: Customize Submit Event form fields, thank you email notice #335375Casey
Participantkellymarie2001,
Thanks for getting in touch! If you have Events Calendar PRO, it’s actually quite easy to add additional fields to the Community Event Submission form, since any custom fields you create with PRO will automatically display on the form (screenshot #1 screenshot #2).Now, regarding your questions above:
1) Customizing the Thank You text that appears after the event is submitted to include a small amount of text and a link/button.
You should be able to customize this message, by pasting the following snippet into your theme’s functions.php file: https://gist.github.com/ckpicker/8aa1390da48520f88149 You’ll want to customize the message text to display what you’d like, but that should hopefully work for you.
2) Auto email confirmation sent to the user submitting the event that includes some information/text and links we need to relay.
User email notifications are not currently a feature of the Community add-on (only admin notifications are currently supported), but this is a great idea! I would suggest submitting it as an idea on our UserVoice page. Our team periodically reviews the most popular ideas for possible inclusion in a future release of the plugin.
Hopefully my responses above help to answer your questions, but let me know if I can assist further. Thanks! 🙂
-Casey-
Casey
Participantkammi,
Thanks for getting in touch and sorry to hear you’re having trouble here, but hopefully I can help. It appears that you need to allocate more memory to WordPress in order resolve this issue. Take a look at this codex article, which will show you how to increase the memory allocated to PHP/WordPress on your site.If that still doesn’t resolve the issue, then I would recommend reaching out to your hosting provider and seeing if they can help you to increase the memory allocated to PHP on your install.
Just let me know if you have further questions. Thanks! 🙂
-Casey-
Casey
ParticipantSherrie,
Thanks for getting in touch! This would definitely require modifying the plugin directly, but it should be possible by extending the ‘TribeEventsFilter’ class. Take a look at ‘plugins/the-events-calendar-filterbar/lib/filters/TribeEventsFilter_Category.php,’ which extends the ‘TribeEventsFilter’ class for the Category Filter.Hopefully that points you in the right direction, but let me know if you have further questions. Thanks! 🙂
-Casey-
Casey
ParticipantJordan,
Thanks for getting in touch! We never recommend that users edit the plugin files directly, since your changes will be lost whenever you update the plugin. Take a look at our themer’s guide, which will show you how to properly override template files.If you’re looking to customize the list widget, then you’ll want to override ‘plugins/events-calendar-pro/views/pro/widgets/list-widget.php.’ The loop is fully contained in that file, so you should be able to modify as needed to just display some blocks that are styled similarly to the mini-cal widget.
Hopefully that’s enough to get you started, but let me know if you have further questions. Thanks! 🙂
-Casey-
Casey
Participantcclm,
Good to hear from you again! 😀 Take a look at our themer’s guide, which will show you how to perform template overrides. The ‘All Events’ link is being displayed in ‘plugins/the-events-calendar/views/single-event.php’ on line 23, so you could perform a template override of this file and customize that link as you like.Hopefully that points you in the right direction. Thanks! 🙂
-Casey-
Casey
Participantalexwg85,
As we can’t provide support for customizations, I couldn’t speak to exactly what you’ve changed. However, in order to determine if the issue lies with your code or if no related events are found, you might try switching over to the default 2013 theme to see if related events display after that. If related events display after switching themes, then you can confirm that one of the customizations you made is causing a conflict. If no related events display, then you can confirm that no related events were found.That should at least help you investigate the issue further and find the culprit. Thanks! 🙂
-Casey-
July 10, 2014 at 7:23 am in reply to: How can I modify the CSV importer file to upload custom fields I have created? #334915Casey
Participantyvlaw11,
Thanks for getting in touch! Unfortunately, I’m not aware of anyone having developed something like this, as this is a pretty complex customization. If you’re wanting to attempt this customization yourself, then you might want to take a look at our Developer Docs.If this is a featured that you’d like to see in a future release, I would suggest submitting it as an idea on our UserVoice page. Our team periodically reviews the most popular ideas for possible inclusion in a future release of the plugin.
Hopefully that helps to answer your question, but let me know if I can help further. Thanks! 🙂
-Casey-
July 10, 2014 at 7:19 am in reply to: Display list of event categories on sitemap/archive page w/ wp_list_categories? #334884Casey
ParticipantNice work! Thanks for confirming that this got you sorted. Since it looks like you’re all set, I’m going to mark this thread “Answered” and close it out.
By the way, if you have a minute or two, we would love it if you’d write a few words for us here: http://m.tri.be/lo
Thanks in advance. 🙂
Cheers,
CaseyCasey
Participantalexwg85,
If you look at ‘plugins/events-calendar-pro/views/pro/related-events.php,’ you’ll see the code that controls the display of related events. You should be able to perform a template override of that file if you wish to customize things further.You’re probably not seeing any related events displaying, because there were none found. Our plugin only displays related events if there are any found, so sometimes this area will be empty. This thread should help to clarify what determines related events.
Hopefully that points you in the right direction, but let me know if you have further questions here. Thanks! 🙂
-Casey-
Casey
Participantmahina,
Sorry I misunderstood the issue at hand here, so thanks for clearing things up. Could you try testing for conflicts and let me know what you discover? I suspect that this might be an issue related to your theme or a plugin conflict, but want to confirm before troubleshooting further.Thanks! 🙂
-Casey-
Casey
ParticipantMouaz,
It appears that your second styling rule doesn’t have the ending bracket: }. Try adding that and see if it fixes the problem.Since you’ve confirmed that this is indeed related to a customization that you’ve made and not an issue with the plugin, that’s unfortunately all the help we’re going to be able to provide here.
Hopefully I’ve helped to point you in the right direction to resolve this customization issue. Good luck and thanks! 🙂
-Casey-
-
AuthorPosts
