Santiago
Forum Replies Created
-
Hi @isabelolivares,
Thanks for reaching out,
I visited your calendar page and the links seem to be working now. I wonder if you sorted it out already?Let me know
Best
SantiagoHey @gelly34,
Are you sure you want to leave the empty header?
This is the css to hide just the title..post-type-archive-tribe_events .hero-inner .page-title-container{
display:none !important
}Let me know how it goes
BestHi @gelly34,
You should be fine adding this CSS from Appearance->Customize->Additional CSS.
.post-type-archive-tribe_events .hero-inner {
display:none !important
}Let me know if it works for you
BestHey @gelly34,
Sure! Please let me know when you have a public url. I’d be happy to take a look and help you finding the right CSS selector.Cheers
Forum: Plugins
In reply to: [The Events Calendar] Change Events URL Slug programmaticallyForum: Plugins
In reply to: [The Events Calendar] Quitar Imagen DestacadaGenial!
Voy a marcar el thread como ‘Resuelto’No dudes en contactarnos por cualquier consulta.
Saludos
Forum: Plugins
In reply to: [The Events Calendar] Warning on settings pageHello all,
@cirowordpress , thanks for the workaround you suggested.
@alessiosester , @ghery , @lllor .
Besides the warning message, do you experience any functional issue on the front end? e.g. navigation arrows not working, datepicker failing, not being able to switch views?Forum: Plugins
In reply to: [The Events Calendar] Quitar Imagen DestacadaHola @cwpv,
Perdón por el error. El template que debés modificar es /the-events-calendar/src/views/single-event.php
El custom template va en [your-theme]/tribe-events/
La linea 59 renderiza la imagen.
Espero que funcione!
SaludosForum: Plugins
In reply to: [The Events Calendar] problem with the pluginHi @puntocomestudio,
Thanks for reaching out,I’d like to have some more context on this issue:
– Was it working and it stoped working after an update?
– What is the current version you are running?
– Do you get an error message when trying to create an event, do you get to see the new event page? A detailed description of the failure would help a lot.– If it fails only when trying to save the event, activating or deactivating block editor from Events->Settings “Activate Block Editor for Events”
Looking forward to your reply
BestForum: Plugins
In reply to: [The Events Calendar] Change Events URL Slug programmaticallyHey @laiconsulting ,
I’m happy to hear it helped.
The following snippet will set the default API key whenever a custom one is not set.add_filter(‘init’, ‘tribe_set_google_api_key’);
function tribe_set_google_api_key(){
Tribe__Events__Google__Maps_API_Key::$default_api_key = ‘asdasdasdasdasdasdasdasd’;
}Let me know how it goes
BestForum: Plugins
In reply to: [The Events Calendar] Change Events URL Slug programmaticallyHi @laiconsulting,
Thanks for reaching out,If I understand correctly you don’t want to have the site owners to change the slug but instead changing it automatically by code?
The events slug is stored in the table wp_options (for each subsite wp_x_options) under the option name ‘tribe_events_calendar_options’ in a serialized array. Changing that manually would be highly discouraged unless you know exactly what you are doing.
Now, there you could use the method set_option wraped in a function and hooked in your functions.php
Something like this would work to keep the slug set to ‘mySlug’ everytime the site loads.add_filter(‘init’, ‘tribe_set_events_slug’);
function tribe_set_events_slug (){
Tribe__Settings_Manager::set_option( ‘eventsSlug’, ‘mySlug’ );
}Let me know if this helps
Best
SantiagoForum: Plugins
In reply to: [The Events Calendar] Quitar Imagen DestacadaHola @cwpv,
Remover la imagen en la vista del evento es relativamente sencillo. Requiere una pequeña customizacion del siguiente template: /the-events-calendar/src/views/blocks/featured-image.phpPara crear el custom template debes hacer una copia de este archivo en la siguiente ubicación: [your-theme]/tribe/events/blocks/featured-image.php
Luego simplemente borrar la linea 18 en donde se renderiza la imagen del evento.
Saludos
SantiagoForum: Plugins
In reply to: [The Events Calendar] Hide Location Search Option Missing From Settings PageHi @markbosky,
Thanks for writing in,This is the expected behavior when Google Maps API key is not working correctly, or when using the default API key instead of a custom one.
Could you take a look on the API tab and see if there is anything missing there?
Plase keep me posted about it
Best
Santiago- This reply was modified 6 years, 2 months ago by Santiago.
Forum: Plugins
In reply to: [The Events Calendar] /events/ is redirecting to /event/Hi @mike-ism,
Thaks for reaching out,By default our plugin sets the slug for the main calendar page to ‘events’. If you were to use the same slug for a custom page, then you will need to change the slug for the main calendar page.
Go to Events->Settings->General and scroll down to ‘Events URL slug’ and change it to something else.Let me know if that works.
Best
SantiagoForum: Plugins
In reply to: [The Events Calendar] Postcode before City