Riccardo

Forum Replies Created

Viewing 14 posts - 46 through 59 (of 59 total)
  • Author
    Posts
  • in reply to: Taking off #1104995
    Riccardo
    Participant

    Hi,
    but if they update the plugin is best, in my case, the CSS solution!
    thanks

    in reply to: Disable tickets email for some events #1103401
    Riccardo
    Participant

    Hi Geoff!
    Thanks but your code is to disable ALL tickets events.
    So I want disable only for some events, not for all!

    thanks

    in reply to: get the ticket cost by post id #1102960
    Riccardo
    Participant

    Hi,
    the correct request is get all the ID of the post “tickets” related to post event.
    thanks

    in reply to: get the ticket cost by post id #1102917
    Riccardo
    Participant

    Hi,
    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!
    thanks

    in reply to: get the ticket cost by post id #1102504
    Riccardo
    Participant

    Hi,
    so I need:
    – the tickets name (title)
    – the tickets cost

    So 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

    in reply to: get the ticket cost by post id #1102402
    Riccardo
    Participant

    Hi,
    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 euro

    I 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?
    thanks

    in reply to: Send email with order to organiz #1097475
    Riccardo
    Participant

    Hi,
    how can get the email organizer of the event from order?
    thanks

    in reply to: Send email with order to organiz #1097472
    Riccardo
    Participant

    Hi 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.
    Thanks

    in reply to: Send email with order to organiz #1096476
    Riccardo
    Participant

    Hi Nico,
    I just want to add the organizer email to all new orders…
    so… what is the right function ?
    thanks

    in reply to: Calendar view no working on mobiles/tablets #1093206
    Riccardo
    Participant

    Hi, there is my problem too

    in reply to: Send email with order to organiz #1093199
    Riccardo
    Participant

    Hi, 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

    in reply to: Send email with order to organiz #1093140
    Riccardo
    Participant

    Hi,
    I’m using Woocommerce. So is not possible simply to add a function to get the email organizer and send it the order?
    thanks

    in reply to: Event date and name in the cart #1093139
    Riccardo
    Participant

    Hi,
    this is the function for the cart

    add_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?
    thanks

    in reply to: Event date and name in the cart #1092651
    Riccardo
    Participant

    Hi,
    so I want to add the info (date of event, title of the event) in the PDF invoice.
    How can I do it?
    Thanks

Viewing 14 posts - 46 through 59 (of 59 total)