Forum Replies Created
-
AuthorPosts
-
Brian
MemberHi,
Sorry for the issues you are having. I can help out here.
I visited your site and see these events:
Newark- Wayne Community Hospital Booth at Annual Wayne County Fair
Annual Handbag Sale to Benefit Patient Care
United Memorial Hosts Medical Monday Radio Talk ShowIs this the area you are having issues with? Or is it another?
Let me know and I can help out.
Thanks
Brian
MemberHi Nancy,
Thanks for using our plugins. I can answer your questions.
We do not have a feature to add a link to that title.
However, this plugin might help out:
https://wordpress.org/plugins/widget-title-links/
I tested it out and it worked for me on the Event Widgets.
Let me know if that works for you.
Thanks
Brian
MemberHi,
We do not have a feature to attached a pdf to the ticket email.
If you would like to request that feature please head to our UserVoice Page and add your own or upvote that feature as they will increase the chances of it being added to a future version.
Brian
MemberHi,
Thanks for using our plugins. I can help out here, but we are limited in supporting customizations per our terms and conditions and can only support the features we ship the plugin with. So unfortunately, I will not be able to provided a detailed walk through.
I can try to help you get started though.
You can use the get_the_terms() function in WordPress to get custom taxonomies and display them:
https://codex.wordpress.org/Function_Reference/get_the_terms
They have some examples on that page to show how to use that function.
You could duplicate that with all your custom taxonomies by using your custom taxonomy.
That can help you get started. I can try to help out some more from here.
Let me know if you have any follow up questions.
Thanks
August 11, 2015 at 4:31 pm in reply to: First event in recurrence doesn't show when "All" selected #995267Brian
MemberHi,
Sorry for the issues with this.
We are aware of this bug and working on getting a release out to fix it.
If you need this working, correctly today I would advise to downgrade all the plugins to latest version in 3.10.
Otherwise, I have added this thread to your bug ticket and we will update it once we have a fix released.
Let me know if you have any follow up questions.
Thanks
August 11, 2015 at 4:28 pm in reply to: Give one off events priority over long term events / exhibitions #995265Brian
MemberHi,
Thanks for using our plugins. I can help out here.
We do not have a feature to give prioirty to One Off Events over Recurring Long Term Events.
You can use the Sticky in Month View option in each single event to make that event appear first in the day.
That can help there. You can also check the setting “Recurring event instances” to only show the first instance of recurring events in list views. That would help those views not be filled with recurring events and only show the next upcoming event in the series.
We do not have any features beyond that right now, if you think that is something you would like as a feature I encourage you to visit our User Voice Page and either upvote an existing request or make a new request there.
Thanks
Brian
MemberHi Jocelyn,
Thanks for the interest in our plugins.
That plugin will not help in check ins as it is not tied into our attendees system.
However, we are working on adding that as a feature directly into our plugin.
I do not have a release date, though to give out.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
Thanks for the interest in our plugins.
All our plugins including WooCommerce Tickets require the core version of the Events Calendar found for free on WordPress.org: https://wordpress.org/plugins/the-events-calendar/
They cannot be used with it unfortunately.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
Thanks for the update.
Have you tried re-saving your permalinks after changing the language file? If that words changes in the url that is an important step to get WordPress to recognize the new link.
Also, please make any updates to plugin translations directly on the translation site:
http://translations.theeventscalendar.com/projects
And Greek is already added to the Eventbrite Plugin.
Thanks
Brian
MemberThanks for the information.
It is correct our Event Views (month, list, etc) are setup as archives in WordPress so archive settings can change how they are displayed.
Glad you found the solution and thanks for sharing it.
I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
August 11, 2015 at 8:27 am in reply to: How to Make The Event Calendar Pro Monthly View print-friendly? #995128Brian
MemberHi,
Thanks for using our plugins. I can try to help out here.
Printing pages can be tricky as browsers remove all background colors on printing and may not size everything correctly.
You might be able to create a stylesheet for print following these instructions:
https://codex.wordpress.org/Styling_for_Print
Another thing to look into would be a plugin or coding that could create a pdf out of the month view that users could download.
If you think that is something you would like as a feature I encourage you to visit our User Voice Page and either upvote an existing request or make a new request there.
Cheers
Brian
MemberHi Gwyneth,
Thanks for using our plugins. I can help out here.
I visited your site and got this css to work for me:
.tribe-mini-calendar-event .tribe-venue a {
color: #2d2d2d;
}
.tribe-mini-calendar-event .tribe-venue a:hover {
text-decoration:none;
}Add that css to your theme’s stylesheet or through a plugin such as Simple Custom CSS.
Let me know if that helps.
Thanks
Brian
MemberI am glad to see you were able to figure it out.
I am going to go ahead and close this ticket. If you have a similar issue or another in the future, please do not hesitate to create a new ticket.
Thanks!
Brian
MemberHi,
Thanks for the interest in our plugins.
We do not have a feature to be able to consume an rss feed and create events out of it.
We do have a CSV, Facebook Events, and iCal Importer.
Since an rss feed was not designed to handle event dates I am not sure we would support it, but if enough people request it we would look into it.
If you would like to request that feature please head to our UserVoice Page and add your own or upvote that feature as they will increase the chances of it being added to a future version.
Brian
MemberSo I thought of this more and came up with coding to manually add the date and that might bypass the issue.
You could try using the following:
$datetime_format = 'F j @ H:i';$tribe_EventStartDate = tribe_get_event_meta( get_the_ID(), '_EventStartDate', true );
$date = strtotime( $tribe_EventStartDate );
echo tribe_event_format_date( $date, true, $datetime_format );$tribe__EventEndDate = tribe_get_event_meta( get_the_ID(), '_EventEndDate', true );
$date = strtotime( $tribe__EventEndDate );
echo tribe_event_format_date( $date, true, $datetime_format );Those two echo functions with display the Start and End Date. You would have to replace our functions with these, but it could work.
You could also change the datetime_format variable too.
Hopefully that helps.
Cheers
-
AuthorPosts
