Forum Replies Created
-
AuthorPosts
-
Nico
MemberHi there Nikolaus,
Thanks for getting in touch with us!
I was reviewing this in your site and I can see the two different links. Is the heading linking to the ‘Event Website’ field?
Do you need to tweak this for list view or other views as well?
Please let me know about it,
Best,
NicoNico
MemberHi there Dan,
Thanks for getting in touch with us!
Can you please let me know which information you need to show apart from the fields you mentioned? Also, which is the view you are trying to pull this info to? List view?
Please let me know about this and I’ll craft a snippet to do this customization,
Best,
NicoNico
MemberHey Stuart,
Sure, let’s continue to work on this:
1) The map seems to be appearing twice. How do I remove the larger one?
To remove the larger one, make sure the following line is deleted or commented in the functions.php file:
add_action ( 'tribe_events_after_the_meta', 'tribe_print_map_in_list_view' );
2) Can we remove the “View Full Map” link beneath the map and make the map itself a link to the map? Looks like this part of the code is controlling that in the functions.php file.
Unfortunately this is not possible as the map is actually an interactive element so wrapping it in a link won’t make it clickable. To remove the ‘view full map link’ remove or comment out this line:
echo 'ID ) . '">View full map';
Please let me know if the above help, and what else you need to have this done 🙂
Best,
NicoSeptember 12, 2016 at 7:21 pm in reply to: Send notification email to different addresses based on event location? #1163157Nico
MemberThis reply is private.
September 12, 2016 at 6:59 pm in reply to: show category with colour above event title views #1163153Nico
MemberPerfect Pau, thanks for confirming!
I’m a bit out of time today but I’ll look into this tomorrow and make sure I find a solution for list, photo and day views + event lists widget.
Thanks for the patience while I work on this,
Best,
NicoSeptember 12, 2016 at 6:53 pm in reply to: How to include Mobile numbers to Attendees Report and Export? #1163151Nico
MemberThanks for confirming Tac!
To show this column in the attendee report in the dashboard and also add the phone to the CSV export:
/* Tribe, inject phone column header */
function tribe_inject_phone_column ( $columns ) {// bail if no tickets column present
if ( !array_key_exists('ticket', $columns) ) return $columns;return array_merge( array_slice ( $columns , 0, 5 ), array('phone' => 'Purchaser Phone' ), array_slice ( $columns , 5 ) );
}
add_filter( 'manage__columns', 'tribe_inject_phone_column' );
add_filter( 'manage_tribe_events_page_tickets-attendees_columns', 'tribe_inject_phone_column' );/* Tribe, inject phone column value */
function tribe_inject_phone ( $value, $item, $column ) {if ('phone' == $column && 'woo' == $item['provider_slug'] ) {
if ( !class_exists( 'WC_Order' ) ) return '';
$order = new WC_Order( $item['order_id'] );
$billing = $order->get_address('billing');$value = $billing['phone'];
}
return $value;
}
add_filter( 'tribe_events_tickets_attendees_table_column', 'tribe_inject_phone', 10, 3);/* Tribe, add the phone to CSV export as well */
function tribe_csv_export_add_phone ( $post_id ) {add_filter( 'manage_' . get_current_screen()->id . '_columns', 'tribe_inject_phone_column', 20 );
add_filter( 'tribe_events_tickets_attendees_table_column', 'tribe_inject_phone', 10, 3);
}
add_action( 'tribe_events_tickets_generate_filtered_attendees_list', 'tribe_csv_export_add_phone' );
Give it a try and let me know,
Best,
NicoNico
MemberHey Ben,
Thanks for chiming in! I’ll be working with Jeff’s request here. You are welcome to follow along while we work his issue out or you can open up a new thread for this. Having just a user/issue per thread makes them move faster and we can address specific request (if they are in the scope of the support we privde in the forums). You can also include a link back to this thread if you want.
@Jeff, please let me know about the questions asked in my previous reply when you have some time.
Best,
NicoNico
MemberThis reply is private.
September 12, 2016 at 2:46 pm in reply to: ical importer imports google recurring all on the same date #1163019Nico
MemberThis reply is private.
Nico
MemberHowdy Gunnar,
Welcome to our support forums and thanks for reaching out to us!
Let me start by saying this is indeed a weird issue I’ve never seen before! Can you please send me over the Facebook events ID (or page ID) you are importing from? I’d like to try to reproduce this locally in my test site.
Also, I don’t see any Arabic related configuration in your site. Is the Facebook profile in which you created the Facebook APP in an Arabic language or something you can relate?
Please let me know about it,
Best,
NicoSeptember 12, 2016 at 9:24 am in reply to: Is it possible to create an event without end time? #1162853Nico
MemberThanks for following up Rajiv!
Yes, the same can be achieved in our calendar. Again, you’ll need to add an end date & time at event creation and somehow indicate that event to ignore the end time (by adding a custom category o tag, or using additional fields or similar). Then a snippet (or template override) will be needed to hide the end time for those ‘marked’ events.
Please let me know if there’s anything else I can help you with,
Best,
NicoSeptember 12, 2016 at 9:17 am in reply to: iCal import not entirely working, recurring events #1162846Nico
MemberThis reply is private.
Nico
MemberThis reply is private.
Nico
MemberHi there Craig,
Thanks for getting in touch with us!
Regarding the JavaScript in our plugin, I’d say start moving the scripts and check at what point it fails. We have heard in the past about issues with minification of our scripts (which are already minified) but I haven’t heard of issues with re-locating the JS to the footer.
On the Critical CSS feature can you elaborate a bit more about what you’d expect our plugins to do on that front?
Please let me know about it,
Best,
NicoNico
MemberThanks for following up Bruno!
I guess there will be no problem with that. As stated in my previous reply, if you are looking to enable front-end submissions you’ll need Community Events add-on which will enabled every poster to manage their own events. Above this you can always edit submitted events from the site back-end.
Please let me know if this clarifies a bit,
Best,
Nico -
AuthorPosts
