Forum Replies Created
-
AuthorPosts
-
Nico
MemberHey Rob,
Glad to help you out on this one too! You can use the PRO color customizer to easily change the style of the calendar. If you need to target that specific part you can also do it via a CSS by pasting the snippet below in your theme’s (or child theme’s) stylesheet or by using the Simple Custom CSS plugin:
/* modify month view header */
.tribe-events-month .tribe-events-calendar thead th {
background-color: blue;
border-color: blue;
color: red;
}
Please give the code a try and let me know if it works for you,
Best,
NicoNico
MemberThat’s great David!
Can you please enable the title part so I can take a look at the mark-up and craft the snippet? Maybe you can do it in a staging site so it doesn’t affect the live site?
Please let me know about it,
Best,
NicoNico
MemberHey Barry,
Thanks for the heads-up and for sharing your solution as well 🙂
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 Rob,
Thanks for reaching out to us! I’ll help you here…
By default widget titles only accept plain text (this is not specific to our widgets), so you’ll need to find a workaround this limitation. This article describes a technique to get it working: How to Add a Link to Widget Titles in WordPress (the article seems to be a bit outdated but I guess it should still work).
Hope that helps, please let me know if there’s anything else I can do for you,
Best,
NicoNico
MemberHola Jorge, como estas?
Me tome la libertad de responderte en español, pero si preferÃs podemos volver al ingles.
Con respecto a tu consulta, podrÃas aclarar que mensajes necesitas editar? Cuando seteas el idioma del sitio en español, el calendario deberÃa mostrarse en este idioma también. Puede ser que algunos ‘strings’ todavÃa no tengan una traducción aprobada pero en su gran mayorÃa deberÃan estar en español.
Si pensas que puede ser mas claro enviar capturas de pantallas, podes adjuntarlas en tu respuesta.
Espero la información para poder darte una mano.
Saludos,
NicoJuly 25, 2016 at 7:15 pm in reply to: Question with “View your Tickets” and editing the meta #1143946Nico
MemberHi Dan,
Thanks for reaching out to us on this! I gave it a quick test locally and I can confirm that what you state is indeed a bug in our code.
I could track this down to the line that’s causing the issue. I will reach out to the front-end dev that was working on this feature to see if we can provide a patch or a workaround until the fix is included in a maintenance release.
I’ll give you a heads-up when I have some extra info to share about this,
Best,
NicoNico
MemberHi there Alexander,
Thanks for getting in touch with us! I can help you here…
First of all, date format is set in WP-Admin > Events > Settings > Display > Date Format Settings but I’m not seeing the same date format in the events list in the back-end. Can you please send a complete screenshot of the page + listing you are viewing?
Thanks,
NicoNico
MemberHi there Fabian,
Thanks for getting in touch with us! I can help you here…
Just paste the following snippet in your theme’s (or child theme’s) functions.php file:
/* Change the iCal export text in views */
add_filter( 'tribe_events_ical_export_text', function () { return 'Other text'; } );
Please let me know if that works for you,
Best,
NicoNico
MemberHey @wheretogokiddo,
Glad to help out on this issue as well!
There’s actually no easy way of doing this, but if you have some basic coding skills and I can point you in the right direction to build this page.
Please let me know about it and we can explore some options to get this working,
Best,
NicoNico
MemberHi there @wheretogokiddo,
Thanks for getting in touch with us! Interesting question, I’m mostly sure that won’t create a huge impact on the calendar performance but the only way to really confirm this is to give it an actual try. If you have a staging site you can import a copy of the live database and perform some test deleting past events and measuring load times. Does this makes sense?
You might also take a look at other ways of improving the site performance: The Events Calendar Performance considerations.
Please let me know if there’s anything else I can help you with,
Best,
NicoJuly 25, 2016 at 4:11 pm in reply to: Fatal Error when transitioning from WPEC Tickets to Events Tickets Plus #1143878Nico
MemberHi Yolanda,
Thanks for getting in touch with us and sorry to see these warnings come up in the site!
I’m sharing these error descriptions with the dev team to see where they are coming from and how to wipe them out! In the meantime you can disable warning messages in the production site: https://aristath.github.io/blog/wp-hide-php-errors
Thanks for the report, I’ll give you a heads-up when I have a reply from devs,
Best,
NicoJuly 25, 2016 at 4:07 pm in reply to: Calendar Search Date Picker Box is Hidden Under Main Navigation Bar #1143876Nico
MemberHi there Erinn,
Thanks for getting in touch and sorry to hear about this glitch!
Can you please send over the website URL where I can see this? I’ll try to craft a CSS snippet to make it right 🙂
Best,
NicoNico
MemberHi Sara,
Thanks for reaching out to us on this! I’ll help you out on this…
First of all let me say this is an issue I haven’t seen in the past so not sure about it! In order to get more information about it, 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. And also, it would be great if you could share your system information with me so I can check if everything looks right on that end.
Do you see the same issue when navigating Posts or Pages or any other post type in the admin? Can you see in errors in the browser console (more on this here)?
Please let me know about it so I can help you out,
Best,
NicoNico
MemberHey Yun,
Thanks for reaching out to us on this! It looks like the theme is actually hiding these links on purpose:
/* http://omark.hk/wp-content/themes/venuex/tribe-events/tribe-events.css?ver=4.5.3:1044 */
.single-tribe_events .tribe-events-cal-links {
display: none;
}
You can revert this by adding the following CSS snippet to your child theme or via Simple Custom CSS plugin:
/* force display of ical export link */
.single-tribe_events .tribe-events-cal-links {
display: block!important;
}
Please let me know if this works for you,
Best,
NicoNico
MemberHi there Gene,
Thanks for reaching out to us and thanks for the report!
I could confirm this is a legit bug as I was able to reproduce it in my local install as well. I went ahead and logged this bug in the system, I also attached this thread to the ticket so you’ll get a heads up when a fix for this is available.
Thanks once again for the report,
Best,
Nico -
AuthorPosts
