Nico

Forum Replies Created

Viewing 15 posts - 5,311 through 5,325 (of 6,506 total)
  • Author
    Posts
  • Nico
    Member

    Hi there Stengade,

    Thanks for reporting this issue! I’m seeing the same error in the Events Settings page in the back-end with Danish language. I’ll report this to the dev team and hope to a have an easy fix for this!

    Can you please send me over the other thread so I can update that one as well when this is solved?

    Best,
    Nico

    in reply to: Filter not working after update #1023450
    Nico
    Member

    Hi Soren,

    Thanks for reaching put to us and sorry to hear about this issue 🙁

    At your events page I’m seeing a javascript error in the browser console from WP Spamshield plugin. It’s probable that this error is causing Filter Bar (and other javascript related behaviour) to fail. Please try to solve this or de-activate the plugin and re-test.

    Please let me know if this solves the issue,
    Best,
    Nico

    in reply to: Event cost field as number field instead of text? #1023444
    Nico
    Member

    Howdy @hippies,

    Welcome to our support forums and thanks for reaching out to us. Hopefully I can help you modifying this behavior 🙂

    You’ll need to add the following snippet to the site’s functions.php file (located at wp-content/themes/your_theme/functions.php):

    add_filter( 'tribe_get_cost', 'cost_show_full_meta_field', 10, 2 );

    function cost_show_full_meta_field( $cost, $post_id ) {
    $full_cost = tribe_get_event_meta( $post_id, '_EventCost', false );

    if ( isset( $full_cost[0] ) ) {
    return sanitize_text_field( $full_cost[0] );
    }

    return $cost;
    }

    With this snippet in place you should be able to input strings in the cost field,
    Best,
    Nico

    in reply to: Facebook API Error returned for (#4) Application request #1023438
    Nico
    Member

    Hi @holmfirthevents,

    Thanks for reaching out to us! I’ll try to help you here!

    Have you gone trough the New User Primer: Facebook Events and Configuring Facebook Events articles? If everything is correctly set-up you should be able to import events without any hassle.

    I just managed to succesfully import the event you shared (and pulled events from the page) on my local install. Are you sure you are all set with configuration?

    Please let me know and I’ll help you out troubleshooting this,
    Best,
    Nico

    in reply to: Modify cost section #1023417
    Nico
    Member

    Hey Jacob,

    Thanks for reaching out! Glad to help you out on this issue as well…

    You can customize the event submission template just like any other template/view in the plugin. The general process is described in our themer’s guide: Themer’s guide. You can also benefit from ‘Events Calendar PRO’ additional fields which are displayed in the community sumission form: https://theeventscalendar.com/knowledgebase/pro-additional-fields/.

    I guess the later solution is lot easier to implement! Please let me know if it works for you,
    Best,
    Nico

    in reply to: Varias cosas #1023410
    Nico
    Member

    Hola Carlos,

    Gracias por contactarnos! Voy a intentar ayudarte con tus consultas 🙂

    Cómo puedo poner sidebars uno a derecha y otro a izquierda en la pagina /events/ ? supongo que cambiando algún archivo php, pero ¿Cómo puedo hacer esto?

    Esto es posible! En caso de que la configuracion de sidebars sea la misma que utilizan las paginas del sitio podes directamente indicarle al calendario que use el template de página desde WP-Admin > Eventos > Ajustes > Visualización > Plantilla de Eventos > Plantilla de páginas predeterminada. En caso de que la configuración sea distinta entonces sera necesario sobre-escribir el/los templates de las vistas deseadas o el template general de eventos. Podrías indicarme en que vistas (“páginas de calendario”) deberían mostrarse los sidebars? En todas? Los pasos para crear template overrides se encuentran detallados en nuestra Themer’s guide. Con un poco más de información voy a poder guiarte en el proceso.

    ¿Hay alguna manera de importar en el csv imagenes destacadas de los eventos?

    Al momento el importador de eventos en CSV no permite la importación de imágenes. Te invito a sugerir este feature en nuestra página de User Voice donde recolectamos información sobre los features que la comunidad necesita en nuestro producto.

    The events calendar PRO tiene un campo precio, ¿se puede poner que sea un rango de precios?

    Si, es posible insertando este código en el archivo functions.php del theme (ubicado en wp-content/themes/tu_tema_activo/functions.php). Esto hara que no valide que en el campo haya solo números:

    add_filter( 'tribe_get_cost', 'cost_show_full_meta_field', 10, 2 );

    function cost_show_full_meta_field( $cost, $post_id ) {
    $full_cost = tribe_get_event_meta( $post_id, '_EventCost', false );

    if ( isset( $full_cost[0] ) ) {
    return sanitize_text_field( $full_cost[0] );
    }

    return $cost;
    }

    Espero tu respuesta,
    Saludos,
    Nico

    Nico
    Member

    Hi Scottlyttle,

    Thanks for reaching out to us and also for testing extensively before posting!

    To correctly troubleshoot this you should switch the theme to default TweentyFifteen, and disable all plugins that are not ours. I understand you tested the theme already but not sure if you did it while deactivating other plugins.

    If you downgrade the plugins to the previously working version, Does the form show? Also when you created a new event from the backend, it saved and synced correctly with EventBrite and tickets are showing in the backend?

    Please let me know about your findings,
    Best,
    Nico

    Nico
    Member

    Hi there,

    Thanks for following up! Oh didn’t know about that log policy, what a bummer!

    From what you show me the local behaviour is the default behavior for sure. Do you have any configuration that might be messing up with user roles/capabilities? If you allow anonymous submissions in the live site, Does it allow new venue/organizer creation?

    The code itself that outputs the Add New option is the following:

    $venue_pto = get_post_type_object( self::VENUE_POST_TYPE );
    if ( ! empty( $venue_pto->cap->create_posts ) && current_user_can( $venue_pto->cap->create_posts )) {
    echo '<option value="0">' . esc_html( sprintf( __( 'Use New %s', 'tribe-events-calendar' ), $this->singular_venue_label ) ) . '</option>';
    }

    So maybe there’s some configuration on user roles that is preventing this from printing out?

    Best,
    Nico

    in reply to: View More link not working #1023223
    Nico
    Member

    This reply is private.

    in reply to: Import function doesn't create events #1023212
    Nico
    Member

    Hey Jacob,

    Thanks for following up! I find it really strange that this code not working due to server configuration as it’s very simple and uses default WordPress functions. Maybe you are inserting it in the wrong place? Can you share with me the full functions.php code so I can take a look at it? You can share via GIST (or any other code sharing service), make sure to mark the reply as private.

    Another way of doing this would be to directly modify the site’s database, deleting entries with post_type = deleted_event from the wp_posts table. Be sure to back up the table first in case the edit goes wrong!

    Please let me know so I can continue to help you on this,
    Best,
    Nico

    in reply to: Event Category Names and Events missing in Calendars #1023211
    Nico
    Member

    Hi there,

    I just want to keep you posted on this issue! It’s been slated for 4.0 first maintenance release as the code for version 4.0 is in QA phase and close to be released.
    Thanks again for the patience on this,
    Have a great week,
    Nico

    Nico
    Member

    Hey Joe,

    Thanks for the heads-up! Attendees meta will surely make integrations like this one a lot easier 🙂

    I’ll be waiting for further info to help you out troubleshooting the code,
    Best,
    Nico

    Nico
    Member

    Hi Lois,

    Thanks for your patience on this! I’ll walk you trough the process of customizing the tooltip:

    Passing additional data to the tooltip

    • Create the following folder structure ‘tribe-events/month/’ inside your theme folder (‘wp-content/themes/your_theme/’).
    • Make a copy of the file ‘single-event.php’ located at ‘wp-content/plugins/the-events-calendar/src/views/month/’.
    • Drop the copied file into the ‘tribe-events/month/’ folder you just created in your theme.
    • Edit the copy of ‘single-event.php’ like shown below. Please note that apart from creating the $additional_data array, we are passing it as the second parameter to tribe_events_template_data on line 9:

    https://gist.github.com/niconerd/23416e3b69db753a6017

    Displaying additional data in the tooltip

    • Make a copy of the file ‘tooltip.php’ located at ‘wp-content/plugins/the-events-calendar/src/views/month/’.
    • Drop the copied file into the ‘tribe-events/month/’ folder in your theme.
    • Edit the copy of ‘tooltip.php’ like shown below:. Line 18 is the one I added to display the variable we just added in ‘single-event.php’ template, the name for the variable is the same as the one in the $additional_data array key

    https://gist.github.com/niconerd/75a7ed329285073ce73a

    Removing data from the tooltip

    Now that you have a copy of the ‘tooltip.php’ template inside your theme folder, you can customize it to fit your needs: delete or add the html and variables you need for your site!

    Hope this step-by-step helps you out,
    Best,
    Nico

    in reply to: iCal Importer not updating changed events #1023060
    Nico
    Member

    Hi @designoneweb,

    Thanks for confirming this! I’ve also made some tests (with multi-day events and events sync) and everything is working as expected on my end!

    Regarding the WP-Engine cache configuration I’m not familiarized on how their cache system works, so not sure what the recommended configuration might be for this case! I’ll surely ask the team tomorrow about this but maybe the WP-Engine support team has better answer for that.

    Best,
    Nico

    in reply to: iCal Importer not updating changed events #1022649
    Nico
    Member

    This reply is private.

Viewing 15 posts - 5,311 through 5,325 (of 6,506 total)