Forum Replies Created
-
AuthorPosts
-
January 12, 2018 at 7:03 am in reply to: 504 errors on Jetpack/Contact Form 7 submits after 4.6.9 update #1424616
Jonathan
ParticipantI discovered that my hosting provider was the culprit. This issue is resolved.
Thank you.
Jonathan
ParticipantThis reply is private.
Jonathan
ParticipantThanks for making the video and I will look for the KB article. I still don’t know what the notification email that you mentioned looks like. Does it provide an updated check-in qr-code? What does the email say exactly?
You’re right, I was looking to change the ticket from one event to another, but the option to move from one ticket type to another within the same event also brings up a lot of questions. What do you do if the price is different? Or or if you want to move from RSVP to paid? Does that create a new cart situation in woo? Just curious on this — hopefully I won’t encounter that situation.
Thanks,
Jonathan
Jonathan
ParticipantThanks. Is there a way to send test emails of a ticket order?
February 2, 2017 at 7:33 am in reply to: Event tickets 4.4.1 update breaks styling for "add to cart" #1228151Jonathan
Participantit was a browser cache issue. All fixed now!
February 1, 2017 at 2:33 pm in reply to: Event tickets 4.4.1 update breaks styling for "add to cart" #1227825Jonathan
Participant@Hunter, no !important doesn’t make a difference. I’ve attempted two ways:
.tribe-events-style-full .tribe-events-tickets-title { font-family: 'Oswald', sans-serif !important; }and
h2.tribe-events-tickets-title { font-family: 'Oswald', sans-serif !important; }January 28, 2017 at 12:27 pm in reply to: Event tickets 4.4.1 update breaks styling for "add to cart" #1225687Jonathan
ParticipantI also experienced this. I was able to add this CSS to my child theme to override it:
#tribe-events .button.alt { background: [your color here]; font-size: 1em; font-family:[your font stack here]; }I’ve had less luck with the “TICKETS” H2 above that. They’ve forced the font to sans serif, and I can’t seem to override it in the child theme CSS editor:
.tribe-events-style-full .tribe-events-tickets-title { font-family: sans-serif; }Support, please advise. Thank you.
Jonathan
ParticipantWoohoo! I caught a bug!
Jonathan
ParticipantLink to my event: https://thrownstone.org/event/fields-blue-glow/
Attached image shows the past date set for it.
Jonathan
ParticipantLink to my event: https://thrownstone.org/event/fields-blue-glow/
Attached image shows the past date set for it.
-
This reply was modified 9 years, 9 months ago by
Jonathan.
Jonathan
ParticipantI don’t read php, but it appears that the code below should function as I thought.
My event has passed, but it states, “Tickets are not yet available” instead of, “Tickets are no longer available.”
Code:
/** * Returns a tickets unavailable message based on the availability slug of a collection of tickets * * @since 4.2 * * @param array $tickets Collection of tickets * * @return string */ public function get_tickets_unavailable_message( $tickets ) { $availability_slug = $this->get_availability_slug_by_collection( $tickets ); $message = null; if ( 'availability-future' === $availability_slug ) { $message = __( 'Tickets are not yet available.', 'event-tickets' ); } elseif ( 'availability-past' === $availability_slug ) { $message = __( 'Tickets are no longer available.', 'event-tickets' ); } elseif ( 'availability-mixed' === $availability_slug ) { $message = __( 'There are no tickets available at this time.', 'event-tickets' ); } /** * Filters the unavailability message for a ticket collection * * @var string Unavailability message * @var array Collection of tickets */ $message = apply_filters( 'event_tickets_unvailable_message', $message, $tickets ); return $message; } // end HelpersJonathan
ParticipantI can certainly remove them with CSS, but in instances where I’ve posted an event that doesn’t yet have tickets available, it would be handy. It just shouldn’t show up after the event is over. It doesn’t make sense. Hopefully this is an item you can roll into the next release.
Jonathan
ParticipantThis solved my issue. https://theeventscalendar.com/support/forums/topic/ticket-forms-disappeared/
It would be great to have a default message that displays when tickets will go on sale in that div.
Jonathan
ParticipantThis reply is private.
Jonathan
ParticipantGeorge,
Thank you for your prompt reply. Here is the screenshot:
-
This reply was modified 9 years, 9 months ago by
-
AuthorPosts
