Forum Replies Created
-
AuthorPosts
-
Nico
MemberHowdy Walter,
Welcome to our support forums and thanks for reaching out to us. I’ll help you setting the events up 🙂
I have a class that Starts 7-10-2017 (Monday) and ends on 9-18-2017 (Monday). The class runs once a week (every Monday) between the dates (7-10-2017 – 9-18-2017).
For this event you’ll need to use this config → https://cloudup.com/cIAJOHgG62Y
Also, I have a schedule that runs 2 days a week (Wednesday’s and Saturday’s). Class starts 9-13-2017 – 3-7-2018 from 7:00pm – 10:00pm.
Not sure if you are referring to the same event or to a different one. I’ll create the rules assuming this is a new one → https://cloudup.com/c7ybmBCDUz6
Please note that the date picker format in my install might be different from yours, but I guess you’ll get the idea!
Let me know if this works as expected,
Best,
NicoJune 19, 2016 at 1:23 pm in reply to: Event Calendar and Woo Commerce Ticketing Integration? #1129050Nico
MemberHey Kristi,
Thanks for reaching out to us on this, and for your interest in our products 🙂
Hopefully we do have a setup to actually add tickets to events directly from the create/edit event screen! You’ll need to install the following combo: Event Tickets (free) + Event Tickets Plus (premium) + WooCommerce. Take a look to the video here → https://theeventscalendar.com/product/wordpress-event-tickets-plus/ to get a clear idea on how it works.
Please let me know if this is what you are looking for,
Best,
NicoNico
MemberHi Vicenzo,
Thanks for reaching out and for your interest in our products 🙂
It’s possible to create recurring events with Events Calendar PRO. You can define complex rules and exclusions for your events take a look: PRO recurring events.
While we don’t have a trial period, you can go ahead and purchase the products for testing. If you decide they are not what you are looking for, you can ask for a full refund within 30 days of purchase. For more information take a look at our refund policy.
Please take a look and let me know if this would work for you,
Best,
NicoNico
MemberHi there @nnyorker,
Thanks for reaching out to us! While we do not provide much help on styling the calendar, as your requests are pretty simple I can help you here:
1. The filter bar font is very difficult to read. It should be white instead of gray if possible.
/* tribe bar labels font color */
#tribe-bar-form {
color: #fff;
}/* tribe bar inputs font color */
#tribe-bar-form input {
color: #fff;
}/* tribe bar views font color */
.tribe-bar-views-list span {
color: #fff;
}
2. When photo view is enabled can a border line go around each event for separation of events?
There’s actually a line now around events, maybe you can change the border color to make it more visible?
/* change events border color in photoview
.tribe-events-photo-event-wrap {
border-color: #ccc !important;
}
3. Font color in month view (green) needs to be darker.
/* change month view font color */
#tribe-events-content .tribe-events-month-event-title a {
color: red !important;
}
You can add these to your theme stylesheet or via Simple Custom CSS plugin.
Please let me know if this helps you out,
Best,
NicoNico
MemberHi there,
Thanks for your interest in our plugins 🙂
It’s actually possible to move the license keys from your staging site to your live site once it’s deployed. Take a look at this article describing the process: Moving your license keys.
Please let me know if this answers your question,
Best,
NicoNico
MemberHi Breanna,
Thanks for reaching out and for you interest in our products 🙂
With The Events Calendar and Events Calendar PRO you can create the weekly classes as recurring events and show them in the calendar.
We have Event Tickets and Event Tickets Plus which allow you to sell tickets for events, but there are a couple of limitations for your case: tickets are per-event and recurring events do not support tickets yet.
What I would suggest is you set up WooCommerce (or similar) in your site and sell the 6 classes pack as a regular product. Yo can include a link to the product from the calendar and/or single event pages. Does this sounds like something that might work for you?
Please let me know about it,
Best,
NicoPS: @Ruby, we do not offer any courses! We sell a calendar plugin for WordPress.
June 19, 2016 at 12:11 pm in reply to: Sell Tickets with Events Tickets Plus w/ WooCommerce #1129041Nico
MemberHi Steve,
Thanks for your interest in our plugins 🙂
Using Event Tickets + Event Tickets Plus + an ecommerce platform of your choice (WooCommerce, Easy Digital Downloads, WP-Ecommerce or Shopp), you can sell tickets in your site. You can create different tickets types (with different prices) for each event.
We wish to mail physical ticket orders and not allow ticket buyers to print their own tickets.
By default tickets are emailed to the buyer once the order is complete, but you can cancel this behaviour (with a little code snippet) and do it your way.
Please let me know if there’s anything else I can help you with,
Best,
NicoJune 19, 2016 at 12:04 pm in reply to: “Include events in main blog loop” selecting categories #1129039Nico
MemberHey @Communications,
Thanks for trying out The Events Calendar and for your interest in Events Calendar PRO!
…there’s a way of selecting which event categories should display in the main event loop…
This is actually not an option on the core plugin or in PRO. That said, it’s something that can be achieved by hooking to pre_get_posts to modify the main query. Basically it’s possible with a little snippet 😉
Please let me know if this answers your question,
Best,
NicoNico
MemberHi there @wheretogokiddo,
Thanks for reaching out to us, and for your kind words 🙂
Does the search results page (this page on my site: http://wheretogokiddo.com/search/) have an ID number?
Calendar pages don’t have an ID, but from the link you shared I see you are already masking or configuring this in some way. I guess the options here are:
- Create a new page and embed one of the PRO widgets via shortcode
- Create a new page and use this third-party plugin to embed main calendar views in there. Please note this is not a plugin of our own and we cannot support it!
Do you think any of the above will work for you?
Best,
NicoNico
MemberThis reply is private.
June 17, 2016 at 11:04 pm in reply to: ¿How to split date for get month and day to one event? #1128781Nico
MemberHola José,
Gracias por la aclaración 🙂
Podes usar la función tribe_get_start_time( $event = null, $dateFormat = '', $timezone = null ). La usas para pedir el dÃa, luego el mes y finalmente el año, la diferencia esta en el date format que usas para cada llamada. El código de la función lo encontras en the-events-calendar/src/functions/template-tags/date.php!
Saludos,
NicoJune 17, 2016 at 10:46 pm in reply to: How to Change WordPress Page Title for list of Daily Events #1128778Nico
MemberThanks for following up Jennifer!
There’s an error in the code, replace it with the sniper below (just changes the elseif for if):
function filter_events_title( $title ) {
// Day view category page
if ( tribe_is_day() && is_tax() ) {
$title = 'Day view category page';
}
return $title;
}
Please let me know if that works for you,
Best,
NicoNico
MemberThis reply is private.
June 17, 2016 at 10:37 pm in reply to: Tribe-Events-Nav-Next Disappearing when publishing new Event #1128770Nico
MemberThis reply is private.
Nico
MemberIndeed that the list for the front-end!
There’s actually no shortcode for the back-end list, but if you can give me some details on what you are trying to achieve I’ll dig into the code and try to find a way of getting there (if any).
Have a great weekend,
Nico -
AuthorPosts
