Nico

Forum Replies Created

Viewing 15 posts - 2,551 through 2,565 (of 6,506 total)
  • Author
    Posts
  • in reply to: Short URL, map error, breadcrumbs, search #1166415
    Nico
    Member

    Thanks for the heads-up Andrej 🙂

    I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.

    Best,
    Nico

    in reply to: Maps markers with only venue information #1166414
    Nico
    Member

    Excelente! Gracias por la confirmación Miguel 🙂

    Voy a cerrar este ticket, pero no dudes en crear uno nuevo si necesitas ayuda con algo más!

    Que tengas buena semana!

    Saludos,
    Nico

    in reply to: How to show events in a grid with featured images? #1166412
    Nico
    Member

    Hi there Neus,

    Thanks for getting in touch with us and also for your interest in our products 🙂

    My inspiration is this https://theeventscalendar.com/showcase/milkwood/ how I get this look? It’s only possible with events calendar pro?

    Sure, that’s Events Calendar PRO photo view. It will display all upcoming events with their featured image and auto adjust the grid to the layout width!

    How can I show calendar view and put more things in one page, it’s like I can’t control the page where the full calendar displays. I’ve tried to use shortcodes but they’re too limited or maybe I didn’t find the way to work with them correctly. Like a shortocde where I can put the next X (3, 5, 6…) events and be showed in a grid where you can setup how many columns (with or without images), list with image, etc.. How can I do that?

    ‘Full view’ shortcodes will be available in our next major release for Events Calendar PRO (4.3) coming out early October. This feature will allow you to embed any calendar view inside a page, post or wherever you might need. If you simply want to add
    content after/before the calendar you can do so in WP-Admin > Events > Settings > Display.
    Also, if you are looking for a more customized/particular display you can always use the tribe_get_events function to fetch events and display them as you need.

    Please let me know if there’s anything else I can help you with,
    Best,
    Nico

    in reply to: Ticket Scanning capability #1166406
    Nico
    Member

    Hi there Paul,

    Thanks for getting in touch 🙂

    Any QR scan app will do the trick for you. There are various options depending on your phone operative system (iOS, Android, etc) but I guess they should all help you out!

    Please let me know if this helps or if you were referring to another issue,
    Best,
    Nico

    in reply to: EDD available tickets display #1166404
    Nico
    Member

    Hi there Ron,

    Thanks for getting in touch with us!

    You can hide the tickets available legend in the tickets form with the following CSS snippet:

    .tribe-events-tickets .tribe-tickets-remaining {
    display: none;
    }

    Just paste it in your theme (or child theme) stylesheet or via Simple Custom CSS plugin and it should do the trick!

    Best,
    Nico

    in reply to: Import Autotag #1166368
    Nico
    Member

    Hi there @oriongroup,

    Thanks for getting in touch with us!

    Can you please let me know a bit more about what you are trying to achieve? Do you need a ‘fixed’ tag for imported events? Or does the tagging needs to be dynamic according to each event content?

    Please let me know about it,
    Best,
    Nico

    in reply to: Can't update The Events Calendar #1166366
    Nico
    Member

    Hi there Margie,

    Thanks for getting in touch with us and sorry to hear about this issue 🙁

    Can you try to perform a manual update of the plugins? We’ve heard of similar issues in the past, and the manual update seems to fix this.

    Please let me know if it works for you,
    Best,
    Nico

    in reply to: Changing the first day of the week #1166180
    Nico
    Member

    Howdy Ashley,

    Welcome to our support forums and thanks for reaching out to us 🙂

    The option should actually be there, it’s true that the knowledge base is quite old but the WordPress option ‘Week Starts On’ is still in ‘WP-Admin > Settings > General’. Can you take another look? Also please note this in under WordPress settings and not Events settings!

    Please let me know about it,
    Best,
    Nico

    in reply to: get ticket ids #1166179
    Nico
    Member

    Hi there Dan,

    Thanks for getting in touch! Interesting question here 🙂

    Every ticket provider class (by ticket provider I mean RSVP tickets, WooCommerce tickets, etc) has a get_tickets function that accepts a ‘event_id’ (should work with custom post types) and returns the tickets associated with the given post. There’s also a get_tickets_ids function that might work for you. So for example if you want to get RSVP ticket associated with a given post ID you can use the following code:


    /* retrive RSVP tickets ids for a give post_id */
    if ( class_exists('Tribe__Tickets__RSVP') ) {

    $tickets_provider = Tribe__Tickets__RSVP::get_instance();

    $tickets_ids = $tickets_provider->get_tickets_ids ( $post_id );

    var_dump( $tickets_ids );
    }

    Please let me know if this helps you out or if you still need help with it, in which case please elaborate a bit more on what you are trying to achieve,
    Best,
    Nico

    in reply to: Maps markers with only venue information #1166150
    Nico
    Member

    Hola Jose, como estas?

    Me tome la libertad de contestarte en Español ya que todo indica que este es tu idioma nativo 🙂

    Lo que estas buscando es posible pegando el siguiente código en el archivo functions.php de tu tema (o de tu tema hijo -child theme-):

    /* Tribe, change map tooltips to show venue title and link instead of event title and link */
    function tribe_modify_map_ajax_markers ( $response ) {

    // bail if no markers are present in response
    if ( !isset( $response['markers'] ) || empty( $response['markers'] ) ) return $response;

    // modify markers titles

    foreach ( $response['markers'] as &$marker ) {

    $marker['title'] = get_the_title( $marker['venue_id'] );
    $marker['link'] = get_permalink( $marker['venue_id'] );

    }

    return $response;
    }

    add_filter( 'tribe_events_ajax_response', 'tribe_modify_map_ajax_markers' );

    function tribe_modify_map_label ( $data, $class, $domain ) {

    // bail if no map_tooltip_event string present
    if ( !isset( $data['map_tooltip_event'] ) ) return $data;

    // let's change the Event label to Venue
    $data['map_tooltip_event'] = __( 'Venue', 'tribe-events-calendar-pro' ) . ': ';

    return $data;
    }

    add_filter( 'tribe_events_pro_localize_script', 'tribe_modify_map_label', 10, 3);

    El script va a cambiar el titulo del tooltip y el link también. Probalo y decime si esto es lo que buscabas!

    Saludos,
    Nico

    in reply to: Change output markup of the list organizer shortcode to div #1166123
    Nico
    Member

    Hi there Josh,

    Thanks for getting in touch! I can help you here 🙂

    Hopefully the Venue & Organizers shortcodes plugin comes packed with some handy filter to change the markup! Paste the snippet below in your theme theme’s (or child theme’s) functions.php file:

    /* Tribe, customize venue/organizer shortcodes markup (https://theeventscalendar.com/knowledgebase/listing-venues-and-organizers/) */

    function tribe_venue_organizer_list_change_opening_tag ( $opening_tag, $atts ) {

    $opening_tag = '<div class="tec list ' . $atts['post_type'] . '">';
    return $opening_tag;
    }

    add_filter( 'TEC_VenueOrganizer_List.list.open', 'tribe_venue_organizer_list_change_opening_tag', 10, 2 );

    function tribe_venue_organizer_list_change_closing_tag ( $closing_tag, $atts ) {

    return '</div>';
    }

    add_filter( 'TEC_VenueOrganizer_List.list.close', 'tribe_venue_organizer_list_change_closing_tag', 10, 2 );

    function tribe_venue_organizer_list_change_item_tag ( $item, $atts ) {

    $item = str_replace ( '<li', '<div' , $item );
    $item = str_replace ( '', '</div>' , $item );
    return $item;
    }

    add_filter( 'TEC_VenueOrganizer_List.list.item', 'tribe_venue_organizer_list_change_item_tag', 10, 2 );

    Feel free to modify as you see fits best your needs 🙂

    Cheers,
    Nico

    in reply to: Ticket image not visible in Cart #1166114
    Nico
    Member

    Hi there Jon,

    Thanks for getting in touch with us!

    I just did a quick test in my local install and could see this working as expected. You need to add the ticket, then ‘edit it in WooCommerce’ just like you would do with a regular product, and add a featured image to it. Once that’s in place then the pic should show in the cart as it does for other products.

    Can you please follow the steps described in our Testing for conflicts guide? This way we can see if this is a problem in our plugin or a conflict with the theme or other installed plugins. Also, it would be great if you could share your system information with me so I can check if everything looks right on that end.

    Please let me know about it,
    Best,
    Nico

    in reply to: iCal import some calendars start times are off #1166105
    Nico
    Member

    Hi Kara,

    Thanks for getting in touch with us and sorry to hear about this issue 🙁

    Can you please send me a link to the feed (you can make your reply private)? Also, if you can indicate the events you are having troubles with, it would be great so I can run the import and check the result in my local test site.

    We currently have a known bug affecting recurring events import, which might be the cause of this (if the events are actually recurring).

    Please let me know about it,
    Best,
    Nico

    in reply to: Events not showing in Jan 2017 month view #1166070
    Nico
    Member

    This reply is private.

    in reply to: Email Event notification/Schedule Email event reminder. #1166054
    Nico
    Member

    This reply is private.

Viewing 15 posts - 2,551 through 2,565 (of 6,506 total)