Forum Replies Created
-
AuthorPosts
-
December 29, 2016 at 9:18 am in reply to: featured image as (full- width) background image on single-event page #1211434
Nico
MemberHey Stephan,
Thanks for getting in touch with us once again 🙂
Although Geoff kinly suggested a starting point for this customization I need to say this is a bit out of the scope of support we provide in the forums (it’s really a theming question). You should check out these links sharing possible solutions for this:
- Set the Featured Image as a Background Image in WordPress
- Featured image as background image on pages
- How to use featured image as background image in wordpress
Hope that helps,
Best,
NicoDecember 29, 2016 at 8:43 am in reply to: Weekly events shortcode: Hide days with 'No events'? #1211420Nico
MemberThanks for following up @opus13!
Ah, I see –wrap the whole thing in a conditional.
Yeah! That’s the idea 😉
I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.
Best,
NicoNico
MemberHi there Rick,
Thanks for getting in touch with us! I’ve noticed this a duplicate thread (original here). Please give us some time (support is limited during the holidays) and we will reply in the original one.
I’ll go ahead and close out this one.
Best,
NicoDecember 29, 2016 at 8:35 am in reply to: Can I add the calendar to a HTML website as a iFrame #1211413Nico
MemberHi there Felix,
Thanks for getting in touch with us and for your interest in our plugins 🙂
Unfortunately this is still not a feature of our products. We have a feature request for this in Unser Voice, you are welcome to upvote it and add any extra information you think might be valuable.
Please let me know if there’s anything else I can help you with,
Best,
NicoNico
MemberHi there Fredrik,
Thanks for getting in touch with us! I’ll help you here 🙂
Is it possible to instead defining a specific date in the list view have preset “todays date” like <?php echo date(“Y-m-d”) ?> and by that only see “todays events” day by day?
By default all event views show upcoming events (from today) so there’s no need to pass today’s date to the view. Now if you want to show events day-by-day I’d say just use day view for this. Have you triedn that one out?
Please let me know if that helps,
Best,
NicoDecember 29, 2016 at 8:01 am in reply to: Can Events Calendar allow people to download a pre populated event? #1211341Nico
MemberHi Dave,
Thanks for getting in touch with us and for your interest in our products 🙂
What you describe sounds like a great idea, but I’m sorry to say it’s not something our plugins take care off. It’s sounds like something that would need to be custom coded on top of The Events Calendar. If you are interested, we have a list of customizers that might be able to develope this customization for you.
Please let me know if there’s anything else I can do for you,
Best,
NicoNico
MemberHi there Jake,
Thanks for getting in touch with us!
To change the wording of that phrase (or any in the plugin), you’ll need to override the original string. Just paste the snippet below in your theme’s (or child theme’s) functions.php file and it will do the trick for you:
/* Tribe, replace custom strings */
function tribe_custom_theme_text ( $translation, $text, $domain ) {$custom_text = array(
'There were no results found for %s.' => 'No results found for %s.',
);if( (strpos($domain, 'tribe-') === 0 || strpos($domain, 'the-events-') === 0 || strpos($domain, 'event-') === 0) && array_key_exists($translation, $custom_text) ) {
$translation = $custom_text[$translation];
}return $translation;
}
add_filter('gettext', 'tribe_custom_theme_text', 20, 3);
You can find more details on this snippet here → Change the wording of any bit of text or string
Please let me know if this helps,
Best,
NicoNico
MemberHi there Cristian,
Thanks for getting in touch with us and for your interest in our products 🙂
Unfortunately our ticketing plugins doesn’t include such a feature, and it’s not planned either for the near future. Some folks hire customizers to build custom features that are not included out of the box in our plugins, this might a solution for you!
Please let me know if there’s anything else I can help you with,
Best,
NicoNico
MemberHey @deichenlaub,
Thanks for the heads-up! I was looking for more information on this and saw Andy helped you out in Category Colors plugin support forum 🙂
I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.
Best,
NicoDecember 28, 2016 at 11:44 am in reply to: Filter "tribe_events_community_stylesheet_url" broken in latest version #1211180Nico
MemberHi there Jonas,
Thanks for reaching out to us to report this!
I must admit the issue you expose here is a bit out of my technical knowledge. I’ve shared this with the dev team to get an opinion from their side.
I will follow-up when I have something to share, please note this might take a bit more that usual as most of the team is out until next week.
Best,
NicoDecember 28, 2016 at 11:24 am in reply to: Can I specify a specific User Role when a user registers to submit an event? #1211169Nico
MemberHi there Ted,
Thanks for getting in touch with us! Interesting question here 🙂
What you say is correct, Community Events uses the default WordPress registration form so new users will be assigned the default role for the site. As the plugin is using the default registration form there’s actually no way of detecting if the user is registering for the site or to submit event particularly. Does this makes sense to you?
Just to clarify, what you need is to have two different registration forms in the site?
Please let me know about it and I’ll do my best to help you out,
Best,
NicoDecember 28, 2016 at 11:17 am in reply to: Purchased Event Aggregator but it's not in my Downloads #1211167Nico
MemberHey Neesha,
Thanks for your purchase! And for reaching out to us, this is indeed the right place to do so 🙂
Event Aggregator is a service included in The Events Calendar so no additional downloads are required to activate it. You just need to input the license key in ‘WP-Admin > Events > Settings > Licenses’ and the extra options in WP-Admin > Events > Import should be activated. For more information please check out → New User Primer: Event Aggregator.
Please let me know if you can set this up,
Best,
NicoNico
MemberThanks for following up Aaron! Sorry to say I’m not quite following you here.
Can you describe a bit more what you are looking forward to achieve? You want to replicate the organizer page, but for users? If that’s the case, I don’t think that can be super straight forward. You’d need to replicate the organizer template and functions (events-calendar-pro/src/views/pro/single-organizer.php) inside the author template and ‘patch’ the information by getting it from the user object and not from the organizer. Just to clarify organizers are not WordPress users, it uses a custom post type linked to products (like venues), so porting this same view for users will require a bit of work from your side.
Please let me know about it,
Best,
NicoDecember 28, 2016 at 11:01 am in reply to: Get logged user registered events list with RSVPs #1211159Nico
MemberThanks for following up Aaron! Unfortunately that’s not included in the shortcode and you’ll need to add this via custom code.
I’d say the best way to achieve this would be to create a template override for the shortcode view file (event-tickets/src/Tribe/Shortcodes/User_Event_Confirmation_List.php) and add the information you want in there. Not sure what information you are looking forward to add in there, but if you have troubles getting it just let me know and I can help.
Best,
NicoNico
MemberHello Filip,
Thanks for getting in touch with us!
Not sure why this is happening but let’s try the following:
– De-activate Event Calendar PRO.
– Remove the standard ‘free version’ event list widget.
– Re-activate PRO.
– Add the ‘Advanced list widget’.
– Re-test.Does this helps?
Please let me know about it,
Best,
Nico -
AuthorPosts
