Nico

Forum Replies Created

Viewing 15 posts - 1,711 through 1,725 (of 6,506 total)
  • Author
    Posts
  • in reply to: Event Updating Incorrectly #1207024
    Nico
    Member

    Hi there,

    Just wanted to inform that the fix for this issue has been pushed to the Event Aggregator server! There’s no need to update the plugins, although I recommend using the latest version of The Events Calendar.

    Please let us know if this is working as expected for you,
    Best,
    Nico

    in reply to: Events are not updated from our google calendar feed ! #1207023
    Nico
    Member

    Hi there,

    Just wanted to inform that the fix for this issue has been pushed to the Event Aggregator server! There’s no need to update the plugins, although I recommend using the latest version of The Events Calendar.

    Please let us know if this is working as expected for you,
    Best,
    Nico

    in reply to: New question about old thread #1206810
    Nico
    Member

    Stocked to hear Murray! Thank YOU for the patience while we worked 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,
    Nico

    in reply to: Moderating Community Posts #1206808
    Nico
    Member

    Hey Tom,

    Sorry for the delay here, please give me a bit more time to review this!

    Best,
    Nico

    in reply to: No se ve el texto al escribir en el campo descripción. #1206761
    Nico
    Member

    Excelente Antonio! Gracias por confirmar šŸ™‚

    Estoy seguro que montar el sitio de desarrollo es una inversion que pagara a futuro!

    Si en algun momento queres retomar este tema, solo tenes que abrir un nuevo hilo. Por el momento voy a cerrar este.

    Saludos,
    Nico

    in reply to: Error con API #1206749
    Nico
    Member

    Hola Antonio,

    Gracias por correr la prueba!

    Podrias intentar contactar con los desarrolladores de Divi para ver si ellos estan al tanto de algun problema con la API. Aunque probablemente (como ya charlamos en otro hilo) ellos tambien requieran una ‘prueba de conflictos’ para entender de donde viene el problema en concreto.

    Saludos,
    Nico

    in reply to: Import Issues #1206742
    Nico
    Member

    Hey Bobbie! Thanks so much for doing the conflicts test, now we know no other plugins (or the theme) are interfering here.

    Can you please let me know about this question before we continue to look into this?

    If you create a new event in the site with a venue with full address information, is it shown correctly in the front-end of the site?

    Hopefully this will reveal if this is related to imports or if it’s just something that changed sitewide.

    Cheers,
    Nico

    in reply to: hide community visibility to group #1206738
    Nico
    Member

    Thanks for following up Aaron!

    Sure, the conditional in the sample provided was only working form month view. Try this modified version (and add your own logic):

    add_action( 'pre_get_posts', 'exclude_events_category' );
    function exclude_events_category( $query ) {

    // add you own conditions to the check
    if ( tribe_is_event_query() && !is_admin() ) {

    $query->set( 'tax_query', array(
    array(
    'taxonomy' => TribeEvents::TAXONOMY,
    'field' => 'slug',
    'terms' => array('results'),
    'operator' => 'NOT IN'
    )
    )
    );
    }

    return $query;
    }

    The code above should affect all front-end queries for the calendar. If you want this to affect the back-end just remove the !is_admin() condition.

    One thing I’m not sure about is ‘the next event’ you mention. You mean the next event upcoming event link in the single event view?

    Please let me know about it,
    Best,
    Nico

    in reply to: Remove event title on EVENTS LIST widget #1206374
    Nico
    Member

    Glad to hear Toby! You are welcome šŸ™‚

    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: Applying License Key – Events Calendar Pro #1206373
    Nico
    Member

    Stoked to hear Ant! I hope you enjoy Events Calendar PRO šŸ™‚

    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

    Nico
    Member

    Antonio,

    Disculpa la demora en contestarte, estaba esperando que suban algunos cambios al servidor que procesa los imports para escribirte. Se demoro un poco pero ya estan subidos desde hace unas horas.

    Hoy mas tarde voy a intentar reproducir el error que mencionas con respecto a los cambios no respetados. Lo que pienso a priori es que tal vez esos campos no esten contemplados dentro de los que deberian ‘proteger’ contra los cambios, lo cual seria algo a mejorar desde nuestro lado seguramente.

    Con respecto a las imagenes, estoy trabajando con otro cliente que reporta lo mismo. He realizado varias pruebas desde que el fix fue lanzado y la realidad es que no puedo reproducir el problema. Has notado que esto suceda con eventos nuevos, existentes o ambos? Este fix deberia solucionar el problema con las imagenes duplicadas en la libreria tambien.

    Desde ya muchas gracias,
    Nico

    in reply to: No se ve el texto al escribir en el campo descripción. #1206366
    Nico
    Member

    Hola Antonio,

    Entiendo totalmente tu punto, y lamento no poder hacer mucho mas para ayudarte con este problema. Cuando un sitio tiene varios plugins y/o un theme complejo no es tan raro ver conflictos.

    Entiendo también que para muchos clientes no es posible cambiar el theme o desactivar plugins en producción (sitio live). De aquí la importancia de tener un sitio staging o de desarrollo, cosa que te recomiendo enfaticamente no solo para continuar con el debug de este error sino como buena practica de desarrollo web en general! El sitio de desarrollo puede ser local con un servidor local en tu computador y no requiere de un hosting adicional. Hasta en algunos casos las compañias de hosting ofrecen soluciones para esto también. Si bien requiere un esfuerzo extra hay algunos plugins que pueden ayudarte con esto, por ejemplo WP Staging.

    Esperemos que algĆŗn dĆ­a WP evolucione y no se permita que un pluging o un tema pueda interferir en el funcionamiento de otro.

    Seria ideal! Pero no veo que sea posible šŸ™ La arquitectura de plugins propia de WordPress (y otras plataformas similares) hace que este sea un problema con el que hay que lidiar lamentablemente.

    Contame si queres hacer alguna prueba mas y continuar revisando este problema, o si podemos cerrar este ticket por ahora,
    Saludos,
    Nico

    in reply to: Remove event title on EVENTS LIST widget #1206253
    Nico
    Member

    Thanks for clarifying Toby šŸ™‚

    I get you now! If you just want to remove the event title and don’t make other customizations, it might be better to use a CSS snippet (add it to the theme stylesheet or via Simple Custom CSS plugin):

    .tribe-events-adv-list-widget .tribe-events-title {
    display:none;
    }

    If the above doesn’t work for you just send me the link to the URL where I can see this and I’ll adjust the code.

    On the other hand if you prefer doing the template override, you’ll need to override the file event-calendar-pro/src/views/pro/widgets/modules/single-event.php. Once you have a copy of the file in the correct folder inside your theme, just comment out or delete lines 41, 42 and 43. Important note: this template is also used by the mini calendar widget (it displays a list of events under the mini calendar).

    Please let me know if you are able to make it work as you need to,
    Best,
    Nico

    in reply to: Recurring Events yearly #1206250
    Nico
    Member

    Glad that worked Pete! Love to see an unusual use of our plugins šŸ™‚

    My next question is, and let me know if you want this in a new thread, is there an easier way to choose a start date that is far older? The only way I see now is to keep going backwards with drop down, but that only allows 10 years at a time. Most of my start dates will be 1-2 hundred years ago

    It’s ok, we can continue in this thread. No quite sure I follow you here, just to be sure can you send a screenshot of the input you are referring to? Dates can be manually entered in the backend fields if that is what mean.

    Please let me know about it,
    Best,
    Nico

    in reply to: Display organizer's calendar in a different website #1206247
    Nico
    Member

    This reply is private.

Viewing 15 posts - 1,711 through 1,725 (of 6,506 total)