Forum Replies Created
-
AuthorPosts
-
Nico
MemberHi there Sheri,
Thanks for getting in touch and for your interest in our products 🙂
Unfortunately we don’t have such option 🙁 This doesn’t mean it’s not possible, but that this will require some custom code to make it work. For example you can pull in events from a certain category or tag. We cannot offer unlimited help on customizations but something like this would be in the scope of our premium support.
If you decide to go ahead and buy Events Calendar PRO for this, please let me know and we can continue to work this out in this thread.
Best,
NicoSeptember 14, 2016 at 6:41 pm in reply to: Email Event notification/Schedule Email event reminder. #1164373Nico
MemberHi there Desical,
Thanks for getting in touch with us! Interesting question here, let me say we still don’t have that functionality baked into the plugin but maybe I can help crafting a snippet to accomplish this.
To send an email after the event is created should be fairly easy, just hook to the ‘publish_tribe_events’ (new-status_post-type) action make the needed checks and send email.
Scheduled notifications can be trickier, Can you elaborate a bit more what you expect from this functionality? A simple way can be to set up a cron job via wp_schedule_event to run everyday and check if events will be taking place in the given time (next day for example) and send notifications if needed.
Please let me know your thoughts about this,
Best,
NicoNico
MemberHi Mirja,
Thanks for getting in touch with us!
By default is there’s enough size the description and image will be shown in the same line. I’m not aware of any styling changes introduced recently but I’ll keep this in mind and see if other customers report changes after the update.
For now you can use this CSS snippet to make sure the image and description fit in the same line:
.tribe-events-list .tribe-events-event-image+div.tribe-events-content {
padding: 0;
}.tribe-events-list .tribe-events-event-image {
max-width: 30%;
}
Just paste it in your theme’s stylesheet or via Simple Custom CSS plugin.
Please let me know if it helps,
Best,
NicoSeptember 14, 2016 at 6:18 pm in reply to: Where is the h3 tag located for the main events page #1164364Nico
MemberHi there Kyle,
Thanks for getting in touch with us!
To change the markup of that page you’ll need to create a template override of the file: ‘Avada/tribe-events/list/single-event.php’. For this you’ll need to create a child theme (which you seem to have) and paste a copy of the mentioned file in the same path. Once the copy of the template is in place just edit the mark up. You can read more about this in our themer’s guide.
Please let me know if that helps,
Best,
NicoNico
MemberThis reply is private.
September 14, 2016 at 5:30 pm in reply to: iCal import not entirely working, recurring events #1164358Nico
MemberThis reply is private.
Nico
MemberThis reply is private.
Nico
MemberThis reply is private.
September 14, 2016 at 4:02 pm in reply to: show category with colour above event title views #1164316Nico
MemberHey Pau,
Here’s the snippet, add it to the theme’s (or child theme’s) functions.php file and let me know if it works for you:
/* Tribe add category after the title in list views and list widgets */
function tribe_add_category ( ) {$cats = get_the_terms( get_the_ID(), Tribe__Events__Main::TAXONOMY);
if ( empty($cats) ) return false;
$cat_titles = array();
foreach( $cats as $i ) {
$cat_titles[] = $i->name;
}// adjust markup if needed
echo '' . implode(', ', $cat_titles) . '
';
}
// you can also use tribe_events_before_the_event_title
add_action( 'tribe_events_after_the_event_title', 'tribe_add_category' );
// you can also use tribe_events_list_widget_before_the_event_title
add_action( 'tribe_events_list_widget_after_the_event_title', 'tribe_add_category' );
Please remove the previous snippet!
Best,
NicoSeptember 14, 2016 at 2:27 pm in reply to: Send notification email to different addresses based on event location? #1164248Nico
MemberHey Teresa,
Here’s the snippet to create a custom notification and change the email depending on the country:
/* Tribe, custom Comminity notifications */
function tribe_send_custom_ce_alert ( $tribe_event_id ) {$country = tribe_get_country ( $tribe_event_id );
$email = '[email protected]';
if ( 'United States' == $country ) {
$email = '[email protected]';
}$post = get_post( intval( $tribe_event_id ) );
$subject = sprintf( '[%s] ' . __( 'Community Events Submission', 'tribe-events-community' ) . ':', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) ) . ' "' . $post->post_title . '"';
// Get Message HTML from Email Template
ob_start();
include Tribe__Events__Templates::getTemplateHierarchy( 'community/email-template' );
$message = ob_get_clean();$headers = array( 'Content-Type: text/html' );
$h = implode( "\r\n", $headers ) . "\r\n";wp_mail( trim( $email ), $subject, $message, $h );
}
add_action ( 'tribe_community_event_created', 'tribe_send_custom_ce_alert' );
Just paste the code above in your theme’s (or child theme’s) functions.php file and let me know fi it works for you. Please note that you can leave the default plugin notice active if you want.
Best,
NicoSeptember 14, 2016 at 1:49 pm in reply to: ical importer imports google recurring all on the same date #1164214Nico
MemberThis reply is private.
Nico
MemberThanks for sending that over Gunnar!
I could run a test in my local install and all the venues are being imported correctly, so not sure what happened there! I’d say keep an eye open and let me know if this happens again (I’ll set the thread to ‘Pending Fix’ so it doesn’t get auto closed). Be sure to check the Facebook side settings but I guess it might be a momentary glitch.
Best,
NicoSeptember 14, 2016 at 12:58 pm in reply to: ical importer imports google recurring all on the same date #1164179Nico
MemberThis reply is private.
Nico
MemberHey Craig,
Thanks for following up and sorry for the delay in my reply, I was out yesterday.
I touched base with one of our devs on this and he told me that assuming you only have activated The Events Calendar, then if you move move the following scripts to the footer (but maintaining the same load order) then month view and mobile month view appear to continue working as expected:
– tribe-events-bootstrap-datepicker (vendor/bootstrap-datepicker/js/bootstrap-datepicker.min.js)
– jquery-placeholder (vendor/jquery-placeholder/jquery.placeholder.min.js)
– tribe-events-jquery-resize (vendor/jquery-resize/jquery.ba-resize.min.js)
– tribe-events-calendar-script (src/resources/js/tribe-events.min.js)
– the-events-calendar (src/resources/js/tribe-events-ajax-calendar.min.js)
– tribe-events-bar (src/resources/js/tribe-events-bar.min.js)So it seems that they are all safe to move into the footer (and doing so would leave none of our own scripts in the header).
Also, on the Critical CSS front he told me it’s something recently flagged for discussion on the dev team, but nothing they have decided on yet.
Please let me know if that helps,
Best,
NicoSeptember 14, 2016 at 8:46 am in reply to: Is it possible to create an event without end time? #1163934Nico
MemberHey Rajiv,
Unfortunately not but while we don’t have a backend demo, you can go ahead and purchase the products for testing. If you decide they are not what you are looking for, you can ask for a full refund within 30 days of purchase. For more information take a look at our refund policy.
I guess this is the only way to see if it works for you 🙂
Best,
Nico -
AuthorPosts
