Forum Replies Created
-
AuthorPosts
-
May 17, 2016 at 7:20 am in reply to: Events Ticket Plus, Events Calendar Upcoming Events Widget by Category #1115331
Nico
MemberHi there Jeremiah,
Thanks for reaching out to us! I’ll help you here…
Events Calendar PRO comes packed with extra widgets (see all events calendar widgets). One of them is the advanced list widget which comes with the ability to add filter by event category or tag. I guess this is what you are looking for, right?
Please let me know about it,
Best,
NicoNico
MemberGlad to hear 🙂
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,
NicoMay 16, 2016 at 3:45 pm in reply to: Pre sales questions – bulk import & limit of owner id's #1115164Nico
MemberYou are welcome Afonso! Hope you can make that work 🙂
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,
NicoMay 16, 2016 at 3:41 pm in reply to: Unable to retrieve content from site within multisite (both using same plugin) #1115162Nico
MemberHey Nick,
Thanks for the heads up once again! As expected I was able to import the feed you sent into my local site without any troubles. And was able to do this within my local install.
Let’s check the importer without the multisite factor, maybe it’s a broader issue with the importer. Can you please try downloading this sample feed and try to import it to the main site tribe-test-2a084e55c87 ? It contains a sample event taking place in July 15.
Please let me know if the import works as expected,
Best,
NicoNico
MemberThanks for the follow-up Ajay! Interest to know how to import a feed into G Cal, thanks for the info 🙂
Well I changed the approach a bit, take a look at the following code:
/**
* Change month ical export time range to a year when the query var year is present
*/
add_action( 'pre_get_posts', 'tribe_custom_month_time_range_ics_export' );
function tribe_custom_month_time_range_ics_export( WP_Query $query ) {
if ( ! isset( $_GET['ical'] ) || ! isset( $_GET['year-feed'] ) || ! isset( $_GET['tribe_display'] ) || $_GET['tribe_display'] != 'month' ) {
return;
}$query->set( 'eventDisplay' , 'custom' );
$query->set( 'start_date' , 'now' );
$query->set( 'end_date' , '+ 365 days' );
$query->set( 'posts_per_page', -1 );
}/**
* Replace default export options
*/
if ( class_exists(Tribe__Events__iCal) ) {
// remove default export button
remove_filter( 'tribe_events_after_footer', array( 'Tribe__Events__iCal', 'maybe_add_link' ), 10 );
// add customized export options
add_filter( 'tribe_events_after_footer', 'custom_maybe_add_link' );
}function custom_maybe_add_link() {
global $wp_query;
$show_ical = apply_filters( 'tribe_events_list_show_ical_link', true );if ( ! $show_ical ) {
return;
}
if ( tribe_is_month() && ! tribe_events_month_has_events() ) {
return;
}
if ( is_single() || ! have_posts() ) {
return;
}$tec = Tribe__Events__Main::instance();
$view = $tec->displaying;
if ( defined( 'DOING_AJAX' ) && DOING_AJAX && isset( $wp_query->query_vars['eventDisplay'] ) ) {
$view = $wp_query->query_vars['eventDisplay'];
}echo '+ Export all year events';
echo '+ Add all year events to Google Calendar';
}
Please note I’m intentionally removing the tribe-events-ical class from the links in order for the URL to be skipper by the JS link filter. This will have a little effect on the element styling you can surely solve with some CSS.
To give the feed a custom URL is something you can achieve by adding a 301 redirect to the site or by creating the rewrite rules for it. I guess that would be a bit out of scope as the default options doesn’t have such permalink either.
Please give the code a try and let me know about it,
Best,
NicoNico
MemberThanks for following up Derek, and sorry to hear this is still an issue.
Please note that you need to input your API key in the snippet I sent you over. Also, the warning “You have included the Google Maps API multiple times on this page. This may cause unexpected errors.” might indicate the source of the issue. Can you please follow the steps described in our Testing for conflicts guide? Generally this error pop-up when the theme or other plugin is including the maps API as well, de-activating other plugins other than ours, and switching to default theme should prevent this.
Regarding having a UI to input the GMaps API Key, that’s scoped for next feature release 4.2 coming out in a couple of weeks.
Best,
NicoNico
MemberHi Robert,
Thanks for reaching out to us on this! I’ll help you finding out what’s going on with those orders…
First of all, were those orders generated manually or in a different way than other orders? Did you check those orders status in the E-Commerce plugin orders section? Finally can you follow up with your system information so I can check if everything looks right on that end.
Also, 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.
Please let me know about it,
Best,
NicoNico
MemberHi Robert,
Thanks for reaching out! I’ll help you here…
Basically there’s no setting or way to lock the stock down. Maybe the easiest way to do this is to create two different ticket types, one for General Tickets and the other one for Sponsored Tickets with a stock of 20 each and use the ticket start and end dates to display the correct ticket type, Does this makes sense?
Other way is to manually generate the orders from the back-end, and just have a stock of 20 for the front-end tickets.
can tickets be transferred from one user to another ?
You can edit the order, but I’m nor sure if this is the best method.
Please let me know if this answers your question or if you still need help,
Best,
NicoNico
MemberHi Ted,
Thanks for reaching out to us! I can help you here…
The image in single event doesn’t have any links, this was changed as the other thread states. If you want to make it link to the Event Website URL, you can go ahead and create a template override (details on our themer’s guide) of the single event template (located at wp-content/plugins/the-events-calendar/src/views/single-event.php). Once the copy of the template is in place you can change line 58 for the code below to make this work:
// print event featured image with event website link
$image_html = get_the_post_thumbnail( $event_id, 'full' );
$event_website = tribe_get_event_website_url();if ( ! empty( $image_html ) && ! empty ( $event_website ) ) {
echo '';
} elseif ( ! empty( $image_html ) ) {
echo '' . $image_html . '';
}
Please let me know if this works for you,
Best,
NicoMay 16, 2016 at 8:27 am in reply to: Display Ticket/Purchase before Description on Event page #1114947Nico
MemberYou are welcome Barry, glad to be of service 🙂
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
MemberHola Andrés,
Un gusto ayudarte nuevamente 🙂
Para modificar el email con los tickets tenes que crear un template override del archivo que los genera. Si no estas familiarizado con los templates overrides podes checkear esta guia al respecto.
El archivo original a copiar es el siguiente: /wp-content/plugins/event-tickets/views/tickets/email.php.
Avisame si podes solucionarlo o si todavÃa necesitas ayuda.
Saludos,
NicoNico
MemberHowdy Oliver,
Welcome to our support forums and thanks for reaching out to us. I’ll help you here, but first can you clarify on your request a bit?
The link you share points to a page, if you want to show all upcoming events in there you can use the advanced list widget via shortcode. Is that what you are looking for? Or is it something related to just recurring events and not regular events?
Please let me know about it,
Best,
NicoMay 16, 2016 at 7:29 am in reply to: I have the same issue with a 404 error on the "All Events" page archive. #1114895Nico
MemberHi @cforge,
Thanks for the report! I could confirm the issue and already created an internal ticket for it to be investigated. While I do not have a date for this to be ready I’ll link this thread with the issue ticket so once it’s resolved we will give you a heads up !
Until we have some more info on the conflict there’s not much I can do for you. Also, I see this is working on your site, Did you just de-activated the Post Type Order plugin?
Best,
NicoMay 16, 2016 at 6:38 am in reply to: Display Ticket/Purchase before Description on Event page #1114865Nico
MemberHowdy Barry,
Welcome to our support forums and thanks for reaching out to us!
In this knowledge base article you’ll find a snippet that allows you to move the form: Moving the tickets form. For what you want to achieve the last option ( tribe_etp_move_tickets_purchase_form( 'tribe_events_single_event_before_the_content' ); ) is the way to go.
Please give it a try and let me know if it works for you,
Best,
NicoMay 16, 2016 at 6:27 am in reply to: Pre sales questions – bulk import & limit of owner id's #1114857Nico
MemberThanks for the follow-up Afonso!
Indeed it’s a vague situation. Just to give you an estimate off the top of my head I would say, from 0-40 you should be fine, from 40-75 might need to extend timeout time and from from 75-100 it might need some more tweaks (maybe more memory and more timeout time) or it will fail.
Does this sound good to you? Or seems to be a limitation?
Best,
Nico -
AuthorPosts
