Forum Replies Created
-
AuthorPosts
-
Riccardo
ParticipantHi,
but if they update the plugin is best, in my case, the CSS solution!
thanksRiccardo
ParticipantHi Geoff!
Thanks but your code is to disable ALL tickets events.
So I want disable only for some events, not for all!thanks
Riccardo
ParticipantHi,
the correct request is get all the ID of the post “tickets” related to post event.
thanksRiccardo
ParticipantHi,
get_the_title() is the title of the post.
So I want the title of each tickets in the post.
I use Ticket Plus with WooCommerce integration!
thanksRiccardo
ParticipantHi,
so I need:
– the tickets name (title)
– the tickets costSo I do a function by substring “the title of event” to exclude what I don’t want and then I create an array to get the minimum and maximum cost
Thanks
Riccardo
ParticipantHi,
my problem is I had to write a function that exclude some ticket, so I have to keep only some tickets.
For example:
Aticket 10 euro
Aticket 20 euro
Bticket 50 euro
Cticket 100 euro
DTicket 150 euroI have to excluded the ticket “Aticket” and get the minimum and maximum cost among Bticket, Cticket, DTicket.
this i my problem!
How can I do it?
thanksRiccardo
ParticipantHi,
how can get the email organizer of the event from order?
thanksRiccardo
ParticipantHi Nico,
but you can not help us with this extension?
it’s more important and I’m not the only person I need it.
It’s not useful a plugin for the events that not advise the organizer of the event.
ThanksRiccardo
ParticipantHi Nico,
I just want to add the organizer email to all new orders…
so… what is the right function ?
thanksRiccardo
ParticipantHi, there is my problem too
Riccardo
ParticipantHi, I try the plugin but it doesn’t work.
So is not possible add a function in woo commerce ?
When I setup the new order notification I can add more email by comma, is not possibile to override the function and retrieve the organanizer email and send it the new order?thanks
Riccardo
ParticipantHi,
I’m using Woocommerce. So is not possible simply to add a function to get the email organizer and send it the order?
thanksRiccardo
ParticipantHi,
this is the function for the cartadd_filter( 'woocommerce_cart_item_name', 'woocommerce_cart_item_name_event_title', 10, 3 ); function woocommerce_cart_item_name_event_title( $title, $values, $cart_item_key ) { $ticket_meta = get_post_meta( $values['product_id'] ); $event_id = absint( $ticket_meta['_tribe_wooticket_for_event'][0] ); if ( $event_id ) { $title = sprintf( '%s for <a href="%s" target="_blank"><strong>%s del giorno %s</strong></a>', $title, get_permalink( $event_id ), get_the_title( $event_id ), tribe_get_start_date( $event_id ) ); } return $title; }can you help me for the thank you, checkout function and the pdf invoice?
thanksRiccardo
ParticipantHi,
so I want to add the info (date of event, title of the event) in the PDF invoice.
How can I do it?
Thanks -
AuthorPosts
