Forum Replies Created
-
AuthorPosts
-
Nico
MemberMarta, I see you marked my reply as correct so 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
MemberHey Andreas,
Thanks for getting in touch with us! No problem about the double posting 🙂
I’ll close this one out and help you with the other folks with this problem in https://theeventscalendar.com/support/forums/topic/widgets-edit-link-missing/
Hope we can nail this one soon,
Best,
NicoNico
MemberHi there Felix,
Thanks for getting in touch with us!
I just did a couple of test to see if there was any workaround to make this work but couldn’t find any 🙁
There are other 3rd party plugins that let you import external images into WordPress sites, maybe those can help out for this case. I know WP All Import has some great functionalities for bulk importing content, maybe you can give that plugin a try.
Anyway I’ll touch base with the rest of the team on Monday and ask them if they are aware of any possible workaround for this.
Best,
NicoNico
MemberHi Daan,
Thanks for reaching out to us! I can help you here 🙂
Let me start by saying there’s actually no setting for this, but maybe I can craft a JavaScript snippet to change the month once the mini calendar is loaded in the page.
Just to be sure, you want the mini calendar widget to show January 2017 instead of the current month right?
One last thing I’m not sure about the ‘shortcode pro’ purchase you mention. It doesn’t sound like nay of our products. Can you clarify a bit on this (maybe send a link to where you saw this)?
Best,
NicoNovember 11, 2016 at 2:40 pm in reply to: Country Filter in Filter Bar possibly still borked #1191197Nico
MemberHey Damion,
Sorry to say I couldn’t jump into this yet 🙁 I need a bit of time for testing test possible solutions and make sure it doesn’t break how the plugin works. Additionally I have to do this with your data to make sure it’s performs well. So just hang in there a bit more!
Thanks for the patience, have a great weekend,
Cheers,
NicoNico
MemberThis reply is private.
Nico
MemberHola, como estas?
Gracias por ponerte en contacto con nosotros 🙂
Para poder usar Events Calendar PRO debes instalar primero el plugin The Events Calendar (gratuito). Básicamente PRO funciona como una extensión de este plugin base.
Espero esto sea de ayuda,
Saludos,
NicoNico
MemberHey Audrey!
Thanks for the patience while I worked on this 🙂
Paste the following code in your theme’s (or child theme’s) functions.php file:
/* Tribe, load today's events in the minicalendar if any */
function tribe_hack_mini_calendar_widget() {
?>
<script type="text/javascript" >
jQuery(document).ready(function ($){$('.tribe_mini_calendar_widget').addClass('hidelist');
function after_mini_calendar_init(){
if( $('.tribe-mini-calendar .tribe-events-present a').length ) {
$('.tribe-mini-calendar-list-wrapper').html('');
$('.tribe-mini-calendar .tribe-events-present a').click();
}$('.tribe_mini_calendar_widget').removeClass('hidelist');
}window.setTimeout(after_mini_calendar_init, 100);
});
</script>
<style>
.hidelist .tribe-mini-calendar-list-wrapper {
display: none;
}
</style>
<?php
}
add_action('wp_head', 'tribe_hack_mini_calendar_widget');
If the current day doesn’t have any events, the default list with upcoming events will be shown.
Please let me know if it works for you,
Best,
NicoNico
MemberThis reply is private.
Nico
MemberThanks for the quick follow up Jeseph!
You’ll certainly need to create a template override for the tickets email and include the fields output. The template you should override is located in ‘event-tickets/src/views/tickets/email.php’. Check out themer’s guide for more details on template overrides.
Please let me know if you need further assistance on this,
Best,
NicoNovember 11, 2016 at 10:41 am in reply to: Vertical Filter Bar Opens at 100% Width on Desktop #1191075Nico
MemberHey Misty,
Thanks for chiming in and for adding your fix 🙂
Hopefully next maintenance release 4.3.3 coming out next week will fix this!
Cheers,
NicoNico
MemberHi there Jeseph,
Thanks for reaching out to us on this!
I’m not quite sure of how we can make this work as intended. Maybe including the time in the ticket name and then hiding the event start time in the email works for you? Do you see a problem in including the time in the ticket name? This might be the simplest way around this.
If for some reason you think this won’t work for the site we can think of other options. What kind of tickets are these: RSVP, Woo, EDD, etc?
Please let me know about it,
Best,
NicoNico
MemberHi there John,
Thanks for getting in touch with us! I can help you here…
Can you please let me know where you want to hide/show the tickets stock?
I don’t think we are not taking this Woo feature but maybe I can craft a snippet for this.
Please let me know about it,
Best,
NicoNico
MemberStocked to hear the snippet work almost for every place in the site 🙂
Regarding related events, you are right for some reason it’s not using the tribe_event_featured_image function but default get_the_post_thumbnail WordPress function. I think the best option here is to do a template override of the file wp-content/plugins/events-calendar-pro/src/views/pro/related-events.php and insert the conditional in there:
..." class="url" rel="bookmark">ID ) ) {
$custom = tribe_get_custom_fields( $post->ID );
if ( isset( $custom['custom_1'] ) ) {
echo 'Image copyright sample: '. $custom['custom_1']. '';
}else{
echo 'nop';
}
} ?>...
Please let me know if this works for you,
Best,
NicoNico
MemberThis reply is private.
-
AuthorPosts
