Forum Replies Created
-
AuthorPosts
-
Nico
MemberThanks 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,
NicoNico
MemberExcelente! 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,
NicoSeptember 20, 2016 at 9:07 am in reply to: How to show events in a grid with featured images? #1166412Nico
MemberHi 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,
NicoNico
MemberHi 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,
NicoNico
MemberHi 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,
NicoNico
MemberHi 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,
NicoNico
MemberHi 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,
NicoNico
MemberHowdy 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,
NicoNico
MemberHi 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,
NicoNico
MemberHola 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,
NicoSeptember 19, 2016 at 3:05 pm in reply to: Change output markup of the list organizer shortcode to div #1166123Nico
MemberHi 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,
NicoNico
MemberHi 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,
NicoNico
MemberHi 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,
NicoNico
MemberThis reply is private.
September 19, 2016 at 12:54 pm in reply to: Email Event notification/Schedule Email event reminder. #1166054Nico
MemberThis reply is private.
-
AuthorPosts
