Forum Replies Created
-
AuthorPosts
-
Sky
KeymasterHello again,
This is what appears for me using the above steps:

The search bar and title could also be hidden if desired.
When you say you are trying to do this on your home page, do you mean the same page that is set for the default Events Calendar settings? Please note that the shortcode can only be used once per page, and not on the same page as the default calendar.
I am unable to view the site, so I’m not sure what your setup is.
Thanks,
SkySky
KeymasterMarc,
Thanks for trying that out. My suggestion for moving the time on those settings was only for testing, to get the cron to trigger. It can be set to whatever your needs are.
It definitely sounds like the future events are not being generated. Can you tell me if the past events were removed after that process? That will help me determine if the entire cron is failing, or just the future events part of it.
Thanks,
SkySky
KeymasterHi there!
I will try to help you figure out how to achieve this.
It looks like you will need to create a custom template to do this. You can copy the template from the-events-calendar-pro/src/views/pro/photo/single-event.php to [your-theme]/tribe-events/pro/photo/single-event.php and then make your modifications.
I would use a conditional to check for the category that you want to do this for, and create the desired content inside. We are starting from the “photo” view template, since this already has the featured image displayed nicely.
Here is the modified template: https://gist.github.com/skyshab/e3b9f16a37e9da7419c3eee915a2d509
You can just edit to change “my-target-category” on line 24 to be whatever you want to target. Then, your shortcode on the page would look something like:
[tribe_events view="photo" category="my-target-category"]
You can read more about customizing Events Calendar templates in our Themer’s Guide.
Let me know if that helps!
Thanks,
SkySky
KeymasterHi Joanne!
Unfortunately, it is not currently possible to manually add attendees in our Events Tickets Plus plugin.
There is a feature request already created for this. You can visit the User Voice Forum and vote for this to be added.
Are you using the Events Tickets Plus plugin in conjunction with WooCommerce?
Thanks,
SkyApril 17, 2018 at 9:26 am in reply to: Tickets and WooCommerce Product Extensions or similar features #1509333Sky
KeymasterHi Carlo!
Thanks for reaching out to us. I will try to help with your questions.
While we do not have any of those features in our plugins by default, the WooCommerce extensions tend to work pretty well with our plugins. You can actually create the tickets within WooCommerce itself, which would allow you to use any WooCommerce extension you’d like to manage the tickets, pricing, etc.
For more information on that, check out this knowledgebase article.
Keep in mind that we have a 30 day refund period on our premium plugins. You can try them out with the specific combination that you need, and see if it will work for you. If not, we’ll give you your money back.
Hope that helps!
Thanks,
SkySky
KeymasterHi Justine!
I’m sorry to hear that you’re having problems with this too. Since the solution posted here didn’t help in your case, can you create a new forum post about your issue? It will be easier for us to help with your specific case.
Thanks!
SkySky
KeymasterMarc,
Here’s what I’m trying in my local environment to test this.
I’m creating an event in April 2017 and for event series, I am setting it to repeat every week indefinitely. My settings are set to create events for 24 months in advance, and to clean up after 24 months. After saving the event, I have recurrences from the original date all the way up to two years from now.
Then, I’m changing my settings (in Events > Settings > General) to create events 36 months in advance, and to clean up after 3 months. I then go to the WP Crontrol settings, and run the cron that deals with recurring events.
When I go back to events, I see that additional events have been created, now as far as 3 years ahead. Also, events between the original and 3 months ago have been deleted. Note that the original event does not get removed.
Can you try changing your settings to have events go forward a bit further and to get removed a little sooner, run the cron, and see what effect this has on the “Step” event?
When you run the cron, do you see a “success” message?
If the new events aren’t created and the old not removed when you try this, then we need to do this same test with the default Twenty Seventeen theme and all non Events Calendar plugins disabled. (except for the Crontrol plugin of course).
Please let me know the results of this.
Thanks,
SkyApril 17, 2018 at 8:20 am in reply to: Is there a way to place a text or banner over the image of past events automatic #1509225Sky
KeymasterUlf,
This is the same file, so just add your modifications. Here is an example of how you could add a class to the event wrapping element, which starts at line 106 in your modified file. So replace line 106 with the following.
<?php $my_custom_single_events_class = ( tribe_is_past_event() ) ? "tribe-events-single-page-past tribe-events-single-page" : "tribe-events-single-page"; ?>
<div class="<?php echo $my_custom_single_events_class; ?>">
That will allow you to target the single event elements with CSS by adding “.tribe-events-single-page-past ” in front of the selector.
Hope that helps!
Sky
Sky
KeymasterMarc,
Thanks for providing that additional information. I’ve asked around, and am going to see if there’s a way for me to try and reproduce this within my test environment. I will get back to you tomorrow with some more information.
Thanks so much for your patience.
Sky
Sky
KeymasterMark,
Great! Thanks for your patience.
We’ll let you know as soon as the fix for the order is pushed out.
Sky
April 16, 2018 at 8:10 am in reply to: Is there a way to place a text or banner over the image of past events automatic #1508190Sky
KeymasterHi Ulf,
The single event template doesn’t seem to have a class for this. However, you can customize the template to add this information as needed.
You would need to copy and modify the-events-calendar/src/views/single-event.php into [your-theme]/tribe-events/single-event.php and make your changes.
You can use the conditional function “tribe_is_past_event()” to determine when to add the class/markup or whatever approach you take. Since you won’t be limited to CSS, you can just load an image and a snippet in place of the normal content if you want.
For more information on customizing the event templates, check out our Themer’s Guide.
Let me know if you have any other questions.
Thanks,
SkySky
KeymasterHannes,
Awesome! I’m glad you figured it out.
Please let us know if you have any questions or issues in the future.
Take care,
SkySky
KeymasterHi Victor,
From the Events Calendar side, it seems that the featured image will only show in the events list widget when the event is marked as a “featured event.”
If you would like to override this behavior and use the featured image for all events in the list, you will need to create a custom template. The template you need to copy and modify is in events-calendar-pro/src/views/pro/widgets/modules/single-event.php. You can place the copy of this file in [your-theme]/tribe-events/pro/widgets/modules/single-event.php.
Here is a snippet of what needs to be modified to get the image to display for all events that have one, on lines 33-36.
Change this:
if (
tribe( 'tec.featured_events' )->is_featured( $post_id )
&& get_post_thumbnail_id( $post_id )
) {
To this:
if (
get_post_thumbnail_id( $post_id )
) {
You will still need to remove the date icon and style to your needs, but this should get you going in the right direction. Check out the Themer’s Guide for more information on working with custom templates.
Hope that helps! Let us know if you have any other questions.
Thanks,
SkySky
KeymasterHi Mark,
Unfortunately, I often see reports of incompatibility with the Enfold theme. Looking at the pages you linked to, I can see some javascript errors that are likely blocking the rest of the content from resolving. The errors are not coming from any events calendar scripts, but the theme’s javascript may be dependant a different version of a library or something that is making it not work.
As to the reverse order of the posts on your homepage, this is a known bug in the Events Calendar Pro that is being worked on. I will attach this post to the bug ticket and mark it as “pending fix.” Someone should follow up with you here once the fix has been pushed out.
Thanks, and let us know if you have any other questions in the meantime.
SkySky
KeymasterMarc,
Thank you for installing that plugin and checking those settings for me. I would like to focus in on a specific event that is not automatically propagating. Can you provide an example of one of the events that has not been manually updated? A screenshot of the date/time and event series settings from that event will help me verify that this is not working as expected.
Thanks!
Sky
-
AuthorPosts
