Forum Replies Created
-
AuthorPosts
-
Nico
MemberHi Tony,
Thanks for reaching out to us. I’ll be glad to help you out with this!
Adding this snippet to your functions.php file (located at ‘wp-content/themes/your_theme/’) should do the trick:
add_action( 'tribe_community_event_created', 'notify_organizer' );function notify_organizer ( $event_id ) {
$email = tribe_get_organizer_email( $event_id );if( !empty($email) ) {
$subject = 'Hey Organizer';
$message = 'Just wanted to let you now about a new event!';wp_mail( $email, $subject, $message );
}
}
Please try it out and let me know,
Best,
NicoNico
MemberHi Kamen,
Can you please open up a new thread to address this new issue you are having? We try to keep just one issue per thread so other’s can benefit from the replies. Also issues can be addressed simultaneously by different team members.
Please check on these tips before posting as they might help you out:
– Are you running the same version of all products? Make sure you are running the same version for all products.
– You can enable/disable and set default event views at ‘WP-Admin > Events > Settings > Display’.
– If everything looks good at Display settings please try to reset the default view and ‘Save Changes’.I’ll go ahead and close out this thread as the original question is answered, but if the tips above don’t help with your follow-up issue please don’t hesitate to create new a thread and one of the team will be happy to help.
Best,
NicoNico
MemberHi Cliffy,
Thanks for your patience so far 🙂
I finally jumped into this and crafted a quick snippet to achieve the hierarchical order:
https://gist.github.com/niconerd/bedd0734b5ecaa6114ac
Paste that code into your functions.php file (located at ‘wp-content/themes/your_theme/’) and test if it works as expected. The front-end will remain the same but categories should now be ordered by hierarchy.
Regarding the ‘display issue’ you later shared it’s surely a CSS ‘conflict’. Can you share the URL to check on this? Probably a simple CSS hack will make this right.
Please let me know about the snippet and also about the URL where I can see the conflict,
Best,
NicoNico
MemberHola Marcelo,
Gracias por ponerte en contacto con nosotros!
Podrías postear tu consulta en el foro de Events Calendar PRO? Solo usamos este foro para preguntas de pre venta, no para soporte.
En caso de que no tengas una licencia activa de nuestros productos, deberías dirigirte al foro de soporte en WordPress.org.
Te dejo un tip rápido, si queres ocultar la barra directamente podes agregar estas lineas de css a la hoja de estilos del theme:
.events-archive .fusion-page-title-bar {
display: none;
}
Desde ya muchas gracias,
Saludos,
NicoJuly 21, 2015 at 10:19 am in reply to: Featured Image Changes in plug-in not being synced with Eventbrite Event #988518Nico
MemberHi Steven,
Sorry to hear this is still unresolved 🙁
Is it possible the plugin “broke” the Eventbrite page because the “Event Image” link doesn’t work?
Maybe the ‘copied’ events in EvenBrite are the cause, not sure. Did you tried with a new EventBrite event (I mean not a copy of a past one)?
Do you have any workarounds to remove the image & it’s link?
To remove it from the WordPress Event or to remove it from the EvenBrite one?
hanks for your patience so far,
Best,
NicoNico
MemberHi there Paul,
Thanks for the follow-up! Hopefully we can hide the cost and the label with a little javascript.
Try pasting this snippet into your theme’s functions.php file (located at ‘wp-content/themes/your_theme/’), it should do the trick:
function remove_cost_js() { ?>
<script type="text/javascript">jQuery('document').ready( function(){
if( jQuery('.tribe-events-event-cost').length ) {
jQuery('.tribe-events-event-cost').prev().hide();
jQuery('.tribe-events-event-cost').hide();
}
});</script>
<?php
}
add_action('wp_head', 'remove_cost_js');
Please let me know if the snippet works as expected,
Best,
NicoNico
MemberHi Kamen,
Thanks for the follow-up! I think I get you now 🙂
The best way I can think of organizing this would be to split this ‘big event’ into ‘5 single day events’. Maybe the name of the events can be something like ‘Special Event Day 1 of 5’ or something similar.
You can also tag or categorize them under the same terms, so they become related events. If you do so make sure ‘Hide related events’ is not checked in ‘WP-Admin > Events > Settings > Display’.
Do you think my suggestions help? Is the any reason for this event to be a ‘one big event’ and not ‘5 smaller events’?
I don’t see any easy way of hiding the event from the rest of the days, as this behavior is quite unusual.Please let me know what you think about my suggestions,
Best,
NicoNico
MemberGlad to hear Stephen,
I’ll go ahead and close out this thread, but if you need assistance with anything else please don’t hesitate to create new threads and we will be happy to help.
Good luck with your project,
Best,
NicoNico
MemberC,
Sorry to say I had a very busy day and haven’t got time to look into this snippet. I’ll prioritize this tomorrow.
Thanks for your patience on this,
Best,
NicoNico
MemberHey Steffen,
Really glad to hear this is fixed 🙂
Thanks for the heads up on the Adore Church Theme ‘URL conflict’, I’ve seen a couple of customers using this theme lately so this info is much appreciated.
I’ll go ahead and close out this thread, but if we can assist with anything else please don’t hesitate to create new threads and one of the team will be only too happy to help.
Best,
NicoNico
MemberHi there Shmuel,
Thanks for reaching out!
Sorry to say there’s not a defined release date for this yet. It’s a complex feature, work has already been done towards getting it out but it’s still not ready. Be sure it’s still on our roadmap and we are trying to push it forward. I won’t expect this to be out on the upcoming months though 🙁
Thanks for your patience on this,
Best,
NicoJuly 20, 2015 at 1:06 pm in reply to: Order tickets by menu_order, how to extend woocommerce ticket. #988075Nico
MemberHi Marcelo,
Thanks for reaching out to us and welcome to our support forums 🙂
I crafted a simpler snippet to achieve the same. First add the following code to your functions.php file:
function get_reordered_tickets ( $event_id ) {
$woo_instance = Tribe__Events__Tickets__Woo__Main::get_instance();
$event_key = $woo_instance->event_key;$query = new WP_Query( array( 'post_type' => 'product',
'meta_key' => $event_key,
'meta_value' => $event_id,
'meta_compare' => '=',
'posts_per_page' => - 1,
'fields' => 'ids',
'post_status' => 'publish',
'orderby' => 'menu_order',
'order' => 'ASC', ) );$ticket_ids = $query->posts;
if ( ! $ticket_ids )
return array();$tickets = array();
foreach ( $ticket_ids as $post ) {
$tickets[] = $woo_instance->get_ticket( $event_id, $post );
}return $tickets;
}
Now you need to create a template override for the tickets form:
– Inside your theme folder create the following folder structure ‘tribe-events/wootickets/’.
– Copy the file ‘tickets.php’ from ‘wp-content/plugins/wootickets/src/views/wootickets/’ to the just created folder in your theme.
– Edit the file and add the following line bellow ‘ob_start();’ :
$tickets = get_reordered_tickets ( $post->ID );
Please try that out and let me know if it works for you,
Best,
NicoNico
MemberHi Kamen,
Welcome to our support forums and thanks fro reaching out! I’ll try to help you out on this.
Sorry to say I don’t clearly understand the scenario you are describing 🙁 Can you elaborate a bit more?
Is the event set in the Back-End (Wp-admin) as a recurrent event or you created 5 individual events?
Please let me know about it,
Best,
NicoNico
MemberHi Stephen,
Thanks for getting in touch and for your support as well 🙂
First of all it’s ok to use Event Rocket shortcodes! So they work better for you I see no trouble in using them.
I’ll show you how you can modify widgets, so you an alternative to Events Rocket. That can eb achieved via template override o via actions.
You can do a template override -please check our Themer’s Guide for details on the process- of the widget views. To add the excerpt to list view via template override follow this steps:
– Make a copy of the ‘single-event.php’ template located at ‘wp-content/plugins/events-calendar-pro/src/views/pro/widgets/modules/’.
– Create the following folder structure in your theme folder: ‘wp-content/themes/your_theme/tribe-events/pro/widgets/modules/’.
– Paste the copied file to the just created ‘modules’ folder in your theme.
– Add the following code at line 35 (for example):
<?php the_excerpt(); ?>
Other option to do the same is via actions. For example, to insert the excerpt via action, please add this code to your theme’s functions.php file:
/* add excerpt to list widget event, before the meta */
add_action( 'tribe_events_list_widget_before_the_meta', function(){
the_excerpt();
} );
To wrap this up: it’s ok to use Event Rocket shortcodes. I still wanted to show you the customization process of the widgets because you might find it useful for some cases.
Please let me know if this helped you to understand how widgets work in our products,
Best,
NicoJuly 20, 2015 at 8:03 am in reply to: Translation on first / active calendar page doesn't work #987834Nico
MemberHi Arinbjørn,
Thanks for reaching out to us!
We rely on community members (like yourself) for translations, so not all languages are 100% translated. I’m afraid it’s possible that the strings you mention are not translated to Norwegian yet.
Please re-download the mo and po files for the Norwegian translation to get the latest version for your language. From the site you can also contribute by translating missing strings, they will be approved and added to the translation.
Check out this article: Adding or updating a translation, for details on how translation submission process works.
Please let me know how this goes,
Best,
Nico -
AuthorPosts
