Forum Replies Created
-
AuthorPosts
-
Nico
MemberHi Dario,
Thanks for reaching out to us and for your interest in our plugins 🙂
I’m not quite sure I understand you question. Basically there’s no way of creating an event from an existing post. You’ll need to port the information manually, if this is what you mean.
Please let me know about it, and I’ll help you out,
Best,
NicoNovember 9, 2016 at 11:16 am in reply to: I pasted a code you gave me, my site is not working #1189844Nico
MemberExcelente!
Podes aprovechar algunas de las acciones presentes en el template de ‘list view’ e insertarlo desde código sin necesidad de editar los templates. Agrega el siguiente código al archivo functions.php de tu theme (o child theme):
/* Tribe, echo shortcode before events */
function tribe_add_shortcode_before_events ( ) {// bail if not in list view
if ( !tribe_is_list_view() ) return;// insert output of the shortcode
echo do_shortcode( '[vc_wp_search]' );}
add_action( 'tribe_events_after_header', 'tribe_add_shortcode_before_events' );
Básicamente el script checkea si estas en ‘list view’ y en ese caso imprime el shortcode.
Avisame si funciona correctamente en tu sitio,
Saludos,
NicoNico
MemberThis reply is private.
Nico
MemberThanks for sending over the site URL!
THe issue should be solved with the following CSS snippet. Paste the code in your theme (or child theme) stylesheet or use it via Simple Custom CSS plugin:
.tribe-events-tickets .quantity > input {
width: 65px !important;
}
Please let me know if that works for you,
Best,
NicoNico
MemberThis reply is private.
November 9, 2016 at 10:35 am in reply to: thumbnail image in week view widget – make it link to event and not `/`… #1189807Nico
MemberStocked to hear Chris! Good job with it 🙂
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
MemberHi Katherine,
Thanks for getting in touch with us! I can help you here 🙂
For the text changes, you can use the snippet in this article → Change the wording of any bit of text or string. This should be the easier way as you don’t need to override templates or such.
To cancel the RSVP email, just paste this snippet in your theme’s (or child theme’s) functions.php file:
/* Tribe, cancel rsvp email */
add_filter( 'tribe_rsvp_email_recipient', '__return_empty_array' );
Please give this a try and let me know if it works for you,
Best,
NicoNico
MemberHi there Oliver,
Thanks for getting in touch with us! I can help you on this 🙂
I think an easier way might be to alter the output of the function that displays the event featured image. This way it will be changed in all the site with just one hook.
Do you know how you will be generating this notice? Is the author of the image saved as meta data of the ‘attachment’ or the event?
Please let me know about it and I’ll try to build this customization for you,
Best,
NicoNico
MemberHey Jennifer,
Thanks for getting in touch with us! Sorry to hear about your issue, which I was about to checkout but it looks like your site has been locked down by WordFence.
Can you please let me know when it’s publicly visible again? 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.
Thanks,
NicoNico
MemberHi there Math,
Thanks for getting in touch with us!
Also thanks for including the screencast, I’m mostly sure it’s a CSS issue, adding some more width to the input should solve this. Can you please send me the URL to the page you showed me? I can write that small tweak for you.
Best,
NicoNico
MemberHi there Calvin,
Thanks for your purchase and for getting in touch with us!
Community Events is in fact a separate add-on. Please note it doesn’t need Events Calendar PRO to run, you can just use it with The Events Calendar. If you want to swap licenses (PRO for Community) just let me know and I can process that as the plugins are the same price.
Best,
NicoNico
MemberThat’s great @quesada! Thanks for the heads-up and glad to hear you could sort this out 🙂
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
MemberHi there Trent,
Thanks for getting in touch with us and also for your interest in our plugins 🙂
Regarding your inquire I’m aware there are some problems with Outlook giving different event IDs to events after edit, which causes duplication issues. But I’m not sure if this affects recurring events as well. If you think it’s a good idea please send me the feed URL and I’ll give this a try locally. After the test I’ll let you know if I see problems with it or not.
Best,
NicoNico
MemberHi there Suus,
Thanks for reaching out to us! Unfortunately we are not able to provide support in the pre-sales forum 🙁
We are happy to assist our premium users with support issues via our premium forums, please log into the account that has been created when the purchase was made. If you have not purchased one of our premium plugins, you can post in our open source forum. We review that forum weekly, mainly for bug reports.
To give you a quick tip, following the Testing for conflicts guide should help identify is this is an issue with the theme or other plugin, or if indeed there’s something wrong with The Events Calendar. I should also say that we haven’t received any other reports of this glitch so it’s likely to be a theme conflict.
I’ll go ahead and close out this thread, but please do post in the appropriate forum and we will be happy to assist you.
Best,
NicoNico
MemberHi there @quesada,
Thanks for getting in touch with us! I can help you here 🙂
By default when you query events the scope is indeed set to get just upcoming events. Can you please elaborate a bit more on what you are trying to do with the query? It might also help if you share the actual coded you are using.
Thanks,
Nico -
AuthorPosts
