Forum Replies Created
-
AuthorPosts
-
Nico
MemberHola Antonio, como estas?
Al parecer si hay un problema aqui. Podrias testear si esto mismo sucede con el theme default y con todos los plugins desactivados?
Desde ya muchas gracias,
NicoNico
MemberHi there Norbert,
Thanks for getting in touch with us! I can help you on this ๐
is there a way to display date and time seperate?
Sure, if you want to use ‘tribe_events_event_schedule_details’ you can use the filter ‘tribe_events_event_schedule_details_formatting’ to modify the arguments of ‘show end time’ and ‘time’. You’ll need to this conditionaly, not sure where you want to use this function with the time, Can you please let me know about it?
Another option is to use tribe_get_start_date and tribe_get_end_date, which have parameters to control the formatting of the output.
Please let me know if this helps,
Best,
NicoNico
MemberHi there Scott,
Thanks for getting in touch with us! I can help you here ๐
You should start by reading our themer’s guide first. In this article you’ll find the basics of how to customize our plugins.
If you still have doubts after reading the guide: Can you please describe a bit more what you are trying to do? In which views should it show, etc…
Please let me know about it and I’ll point you into the right direction,
Best,
NicoNico
MemberHola Antonio, como estas?
Gracias por escribirnos ๐
Podrias usar el filtro de ‘Costo’, disntingue entre eventos con costo y gratuitos. Lo probaste?
En caso de que no sea esto lo que buscas, como funcionaria el filtro que tenes en mente? Tickets: Todos / Con tickets / Sin Tickets?
Espero tus comentarios,
Saludos,
NicoNico
MemberHi there LMA,
Thanks for getting in touch with us! I can help you here ๐
First let me start by saying that I don’t think this is a great idea. The plugin is not built to work this way and most probably sooner or later there might be incompatibilities. Can totally be done, and as Geoff pointed out in his threads there will be some dirty work to do such as resetting database fields (which can be done from code). It’s probably easier to duplicate the event and add new tickets to it, Do you think that might work? This plugin might help.
Anyway, you can manually delete the generated tickets (from the attendee screen in the backend), and then reset the fields that Geoff mentioned. That should leave you in default state. You can also develop a script to do this.
Please let me know if this helps,
Best,
NicoNico
MemberHi there Oliver,
Thanks for the report, it’s a great catch!
I’ve logged this as a new bug and linked it with this thread. I’m not sure if this will make to the next maintenance release (as it has already being scoped). It does not seem to be a big lift so hopefully we can ship it sooner than later.
Thanks once again,
Best,
NicoJanuary 16, 2017 at 11:50 am in reply to: List Widget: Add Event Categories to Display Options #1219155Nico
MemberHi there,
Glad to help you out with this issue as well ๐
While it’s not possible to add this via widget settings, you can do so by pasting this snippet in your theme’s (or child theme’s) functions.php file:
/* Tribe, output event category in list widget */
function tribe_add_category_to_list_wdiget ( ) {
echo get_the_term_list( get_the_ID(), Tribe__Events__Main::TAXONOMY );
}
add_action ( 'tribe_events_list_widget_after_the_event_title', 'tribe_add_category_to_list_wdiget');
Please let me know if that helps,
Best,
NicoJanuary 16, 2017 at 11:23 am in reply to: Event Title Not Showing When Using Short Code Since The Last Update #1219142Nico
MemberThanks for following up Gary!
The culprit of the event title not showing is actually a CSS rule coming from Avada stylesheet (handle: avada-dynamic-css-css – URL:…/wp-content/uploads/avada-styles/avada-5.css?timestamp=1484200758&ver=5.0.6). The rule is the following:
.fusion-modal .modal-title, .fusion-modal h3, .fusion-widget-area h3, .post-content h3, .project-content h3, .single-tribe_events .fusion-events-featured-image .fusion-events-single-title-content .tribe-events-schedule h3, .single-tribe_events .fusion-events-featured-image .recurringinfo .event-is-recurring, .single-tribe_events .fusion-events-featured-image .recurringinfo .tribe-events-cost, .single-tribe_events .fusion-events-featured-image .recurringinfo .tribe-events-divider, .single-tribe_events .fusion-events-featured-image .tribe-events-cost, .single-tribe_events .fusion-events-featured-image .tribe-events-divider, .woocommerce-container .product-title, p.demo_store {
font-size: 0px;
}
Can you please report this issue to the Avada folks? It seems to be a style conflict.Regarding the positioning of the map, that part of the code displaying at the top of the page is stored in a different template part which for some reason is being inserted before the rest of the code. The easier solution is to move that into the right place with a JS snippet:
/* Tribe, fix map placement via shortcode */
function tribe_fix_front_page_map() {
// bail if not in the front page
if ( ! is_front_page() ) return;
// insert snippet to change the map location
?>
<script type="text/javascript" >
jQuery(document).ready( function ($) {
if ( $('#tribe-geo-map-wrapper').length ) {
$('#tribe-geo-map-wrapper').prependTo("#tribe-events");
}
});
</script>
<?php
}
add_action('wp_head', 'tribe_fix_front_page_map');
Can you please let me know what version of Avada you are using? I’d like to reproduce the issue of the map placement in the builder to log it.
Thanks,
NicoJanuary 16, 2017 at 10:45 am in reply to: Events List Widget: List-date not showing entirely #1219126Nico
MemberHi there @sfzc,
Thanks for getting in touch with us! I can help you here ๐
Can you please provide a link to the page where I can see this? This why I’ll be able to inspect the code, hence try to find a snippet that fixes this.
Best,
NicoNico
MemberHi there @agcreate,
Welcome to our support forums and thanks for getting in touch with us. I can help you here!
I guess this is possible if the information is available. Can you please let me know if you are asking for this information per attendee (with attendee information fieldsets)? By default the plugin collects one set of name / email per ‘RSVP’, and not per ticket. Maybe this name is the one you are referring to? Can you send me a screenshot of the ‘My tickets page’ and highlight which is the place you are trying to show this?
Some of our RSVP listed may have up to 50 attendees and I need to make it easy to see the attendees to be able to edit them.
Just for the record each user sees just their ‘RSVP’ tickets, so not sure about the questions above. Probably the screenshot you send will clarify.
Please let me know about it,
Best,
NicoJanuary 16, 2017 at 10:14 am in reply to: Filter "tribe_events_community_stylesheet_url" broken in latest version #1219113Nico
MemberThanks for following up Jonas! I’ve tried the code and it’s not working for me also, sorry for that. It seems it was working for the dev when he tried it out. In any case, there’s another way of doing this:
add_filter( 'tribe_asset_pre_register', function( $asset ) {
if ( in_array( $asset->file, array(
'tribe-events-community.css',
'tribe-events-community.min.css'
) ) ) {
$asset->url = 'http://some.url/some-stylesheet.css';
}return $asset;
} );
Give that a try and let me know if it works for you,
Best,
NicoNico
MemberHi there Christopher!
Thanks for getting in touch with us! Let’s see what alternatives we have here…
With pro can i import 1 google calendar if we can combine all the g calendars to one.
This is not possible. Google Calendar imports (all imports but CSV) need Event Aggregator, so this is not an option.
What I can offer, is to make a shortcode to get all venues with events. This list won’t filter events in the current view (as Filter Bar would do) but each venue will link to the venue page, in which all upcoming events for that venue are listed. If you think this might help let me know and I’ll provide the code for you!
Best,
NicoJanuary 16, 2017 at 8:32 am in reply to: Mini widget date link direct to event (only have 1 event each day) #1219034Nico
MemberHi there Erik,
Thanks for getting in touch with us! Although we cannot provide much help with customizations, this one is mostly done so I’ll just add the missing step ๐
Try pasting this snippet in your theme’s (or child theme’s) functions.php file, it should make the link go directly to the event:
/* Tribe, minical link directly to first the first event of the day */
function minical_custom_links( $html ) {
// We only want to modify links!
if ( false === strpos( $html, 'href="#"' ) ) return $html;
if ( false === strpos( $html, 'data-day' ) ) return $html;// Get the date
$matches = array();
$match = preg_match( '#data-day="([0-9\-]{10})"#', $html, $matches );// Did we find what we were looking for?
if ( ! $match || ! isset( $matches[1] ) ) return $html;
$date = $matches[1];// get event
$events = tribe_get_events( array( 'posts_per_page' => 1, 'start_date' => date( $date ) ) );if ( !empty($events) ) {
$event_link = tribe_get_event_link( $events[0]->ID );
$day = tribe_events_get_current_month_day();
$html = '' . $day['daynum'] . '';
}return $html;
}// Hook up our custom calendar widget links function
add_filter( 'tribe_events_the_mini_calendar_day_link', 'minical_custom_links' );
It might slowdown things a bit, but hopefully not too much. Give it a try and let me know if it works for you,
Best,
NicoJanuary 16, 2017 at 8:02 am in reply to: Images don't load when the add-on "Facebook Events" is enable #1219009Nico
MemberHi there Phil,
Thanks for getting in touch with us! I’ll help you here ๐
From what you describe ‘Facebook Events’ seems to be the add-on causing the slowdown after updating the site. Let me say that this is add-on has been replaced by Event Aggregator, a new service baked in The Events Calendar. You already have a license for this new add-on (automatically granted when we released the new plugin), and switching is actually really easy. You’ll find all details here โ Moving to Event Aggregator.
If for some reason you don’t want to make this move, I can still help you out but I strongly encourage you do this plugin change as all new features and improvements are now included in Event Aggregator and support for Facebook Events will be dropped in the short term.
Before doing the migration to the new plugin, I recommend you do a full back up of the site and data if possible!
Please let me know your thoughts on this,
Best,
NicoJanuary 16, 2017 at 7:42 am in reply to: Warning: file_exists(): open_basedir restriction in effect. #1218995Nico
MemberHola Oscar, como estas?
Gracias por ponerte en contacto con nosotros! Me tome la libertad de contestarte en espaรฑol ya que todo indica que ese es tu idioma nativo ๐
Bรกsicamente hay dos opciones aquรญ:
- Deshabilitar el loggueo (via WP-Admin >Events > Help > Event Log – cambiar a Disabled)
- Cambiar el directorio del log, esto se puede hacer con un simple filtro: add_filter( 'tribe_file_logger_directory', function() { return '/my/custom/logging/location'; } );
Espero haber sido de ayuda,
Saludos,
NicoPD: if you prefer we can continue the conversation in English.
-
AuthorPosts
