Nico

Forum Replies Created

Viewing 15 posts - 3,076 through 3,090 (of 6,506 total)
  • Author
    Posts
  • in reply to: Month View Customisation #1144144
    Nico
    Member

    Hey 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,
    Nico

    in reply to: Disabling page title on event calendar page #1144140
    Nico
    Member

    That’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,
    Nico

    in reply to: 3Clicks theme not working #1144131
    Nico
    Member

    Hey 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,
    Nico

    in reply to: Widget Link #1144126
    Nico
    Member

    Hi 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,
    Nico

    in reply to: Can I edit the default messages? #1144123
    Nico
    Member

    Hola 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,
    Nico

    Nico
    Member

    Hi 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,
    Nico

    in reply to: Change format date in the backoffice for events #1143941
    Nico
    Member

    Hi 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,
    Nico

    in reply to: Calendar Export Link Name #1143937
    Nico
    Member

    Hi 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,
    Nico

    in reply to: Venue map? #1143882
    Nico
    Member

    Hey @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,
    Nico

    in reply to: Should I clean up past events – to improve speed? #1143880
    Nico
    Member

    Hi 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,
    Nico

    Nico
    Member

    Hi 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,
    Nico

    Nico
    Member

    Hi 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,
    Nico

    in reply to: Event Dashboard Column In #1143873
    Nico
    Member

    Hi 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,
    Nico

    in reply to: How to add iCal export button to single event page? #1143870
    Nico
    Member

    Hey 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,
    Nico

    in reply to: City Default Content Not Working #1143867
    Nico
    Member

    Hi 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

Viewing 15 posts - 3,076 through 3,090 (of 6,506 total)