Forum Replies Created
-
AuthorPosts
-
Nico
MemberHi Kamen,
Glad to hear you could finally fix this issue π
We have heard of similar strange behaviors with month view and recurring events in the past week, which finally ended in a bug being discovered. A maintenance release addressing this bug is going to be released in a couple of hours – version 3.11.1 for The Events Calendar and Events Calendar PRO.
Can you please check if this is still an issue after applying this updates to your site?
Thanks a lot,
Best,
NicoNico
MemberHi Marianna,
Thanks for the follow-up!
I must say I’m not sure about why this is happening. What text where you seeing there before the update? From the code I see you are using Atlantis theme, can you confirm this? Has a developer customized the theme for you?
Maybe I can contact the Atlantis developers to get an insight on this.
Please let me know about those and I’ll be happy to help,
Best,
NicoNico
MemberHi Jim,
Thanks for clarifying on #2 and glad to hear the update fixed #1.
Please try this updated snippet, tried it myself locally and it works like a charm!
#tribe-events-header .tribe-events-sub-nav li,
#tribe-events-header .tribe-events-sub-nav li a {
display: block !important;
}
Please let me know if it works for you,
Best,
NicoNico
MemberHi centmarket,
Glad you could find the root of the issue, and hope you can get that sorted soon π
@Andrew, sorry to hear yo are experiencing issues with our plugins. Can you please create a new thread of yours for this? As this is clearly unrelated to the original issue. Please note that we only provide support via our forums.
Before posting please go through the steps outlined in our Testing for conflicts guide and be sure to comment the result of the testing on the thread. Also please include your system information. Doing those and giving an elaborating as much as possible on the issue will surely spead things up.
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 help.
Have a great weekend folks,
Best,
NicoNico
MemberHey Matt,
Thanks for the follow-up! This one was a tricky one to get sorted I must say.
The thing is that ‘tribe-events-ajax-day’ script sets ‘tribe-events-bar’ as dependency, so that why it got in there anyway! I included the dependency clean up in this modified version of your script. PLease try it out and let me know if it works.
add_action( 'wp_enqueue_scripts', 'mw_enqueue_fonts' );
function mw_enqueue_fonts() {
wp_enqueue_style( 'google-fonts', '//fonts.googleapis.com/css?family=Lato:100,300,400,700,100italic,300italic,400italic,700italic|Roboto:400,700,500italic,500,400italic,300italic,300,100italic,100', array(), CHILD_THEME_VERSION );
wp_enqueue_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css', array(), CHILD_THEME_VERSION );
if ( tribe_is_day() ) {
global $wp_scripts;
$wp_scripts->registered['tribe-events-ajax-day']->deps = array();
}
wp_dequeue_script( 'tribe-events-bar' );
if ( tribe_is_month() || tribe_is_map() || tribe_is_photo() || tribe_is_day() || tribe_is_week() || tribe_is_list_view() ) {
wp_enqueue_script( 'pondhole-tribe-events-bar', get_stylesheet_directory_uri() . '/js/tribe-events-bar.min.js', array( 'jquery' ) );
}
}
Have a great weekend,
Best,
NicoJuly 24, 2015 at 2:44 pm in reply to: How to get all events to show in Map View without all events being listed below. #990148Nico
MemberHowdy Josiah,
Thanks for reaching out to us! Nice question indeed.
One thing that can be done on that end is to alter the query if you are on map view, but both the map and the list get the events from the same ajax call. So not sure if this will be useful for your particular case:
add_action( 'tribe_events_pre_get_posts', 'unlimit_map_view' );
function unlimit_map_view( $query ) {if ( defined( 'DOING_AJAX' ) && DOING_AJAX && $query->get('eventDisplay') == 'map' ) {
$query->set('posts_per_page', '-1');
}return $query;
}
Maybe you can alter the display of the events in the list, hiding them or just some of them. Further customization will probably require to refactor a bit how this actually works.
Do you think you can find a way around your need with this snippet?
Best,
NicoNico
MemberHowdy Cliffy,
Glad you found my tips helpful and that you are making good progress on that π
Regarding the date picker dropdowns, this might help you get started:
.ui-datepicker-month, .ui-datepicker-year {
padding: 0!important;
width: 70px !important;
display: inline-block !important;
margin: 0 !important;
}
Regarding the width of each category (which indeed looks really nice), you can adjust it like this:
ul.tribe-categories-with-children {
// you can also set a fixed width like 300px if it works best for the site
width: 50% !important;
}
There’s no need to embed the images, linking them is ok π
Hope you have a great weekend,
Best,
NicoNico
MemberHi Debora,
Thanks for your follow-up!
I get you now, redirecting the user to the checkout after adding the product to the cart then that’s more on the WooCommerce side: please take a look at this stackoverflow question. And let me know if you can make it work with the suggestions there!
Best,
NicoNico
MemberHi Mike,
Thanks for reaching out to us! Hopefully this is possible by modifying the ‘list view’ query, let’s jump into it:
Add this snippet to your functions.php file -located at ‘wp-content/themes/your_theme/’:
add_action( 'tribe_events_pre_get_posts', 'limit_list_view' );
function limit_list_view( $query ) {
if( tribe_is_list_view() or $query->get('eventDisplay') == 'list' ) {
$eventDate = $query->get('eventDate');
if( empty($eventDate) ) $eventDate = date('Y-m-d');
$query->set('end_date', $eventDate . ' 23:59:59');
}
return $query;
}
That should limit the results in list view to just the selected day in the picker or today’s date if none is selected.
Please try it out and let me know if it works for you,
Best,
NicoJuly 24, 2015 at 8:17 am in reply to: Events Calendar Pro required for iCal Importer with recurring events? #989927Nico
MemberDarren,
Glad that helped! Hope to have you on board as a customer soon π
Iβll go ahead and close out this thread, but if you have any other questions please donβt hesitate to create a new one and we will be happy to assist you.
Best,
NicoNico
MemberHi Tracy,
Welcome to our support forums, and thanks for reaching out! Really sorry to hear about your issue, I must say I haven’t heard of similar ones so far, so not sure what could be causing it.
First of all please check that all of our products are up-to-date. You should be running The Events Calendar, The Events Calendar PRO and WooCommerce Tickets versions 3.11. If any of them are not in version 3.11 and no update option is showing, I’m afraid you should manually update them.
If everything is updated please de-activate/flush any caching solution on your site. I see you indicated that this is also happening with all other plugins deactivated and with default theme, can you confirm this? Also if you de-activate Events Calendar PRO, events should be still visible as long as The Events Calendar -core- is active.
Please let me know about how this goes,
Best,
NicoNico
MemberHi Jerry,
Welcome to our support forums, and thanks for reaching out to us. I’ll try to help you out on this one!
Not sure what your customization is about but, please note you can access the different calendar views for an specific category like this: http://your_site_url/events/category/category_slug/view/ so that can be http://your_site_url/events/category/business/week/ or just http://your_site_url/events/category/business/ to access default view.
Regarding the shortcode, please bear in mind you can customize the output by passing parameters, for example: [tribe_mini_calendar category=”business”]. The article PRO Widget Shortcodes list all parameters to customize it.
Please let me know if those alternatives work for you,
Best,
NicoNico
MemberHi Debora,
Glad to hear our team could help you out on your previous issues, and thanks for searching for an answer for this one before posting!
I think the best way to achieve this customization is the perform a template override -the general process is described in our Themer’s guide. I’ll outline the steps for this customization here:
– Make a copy of the file ‘tickets.php’ located at ‘wp-content\plugins\wootickets\src\views\wootickets\’.
– Inside you theme folder create the following folders ‘tribe-events\wootickets\’.
– Drop the copied filed into the just created folder.
– At line 89 of the file you’ll find the ‘Add to cart’ button, you can replace it or add the ‘Checkout’ button as well.Please let me know if you can get this working,
Best,
NicoPS: Next time please post to the WooCommerce Tickets forum, instead of doing so in the Pre-Sale one. Thanks π
Nico
MemberHi Mark,
Welcome to our support forums, and thanks for reaching out!
One way to go on this can be to create an Event Category called ‘Exhibit’, then you can see the events for that category in ‘http://your_site_url/events/category/exhibit/’. To exclude it from other view you can add this snippet to the theme’s functions.php file -located at ‘wp-content/themes/your_theme/’:
add_action( 'tribe_events_pre_get_posts', 'exclude_events_category' );
function exclude_events_category( $query ) {
if ( !is_tax(Tribe__Events__Main::TAXONOMY) ) {
$query->set( 'tax_query', array(
array(
'taxonomy' => Tribe__Events__Main::TAXONOMY,
'field' => 'slug',
'terms' => array('exhibit'),
'operator' => 'NOT IN'
)
));
}
return $query;
}
That should remove ‘exhibit’ events from every view, unless it’s the ‘exhibit’ category view.
Please try this out and let me know how it goes,
Best,
NicoNico
MemberHi Steen,
Welcome to our support forums, and thanks for reaching out. Hope to make this right soon!
In the source code of the page you shared with me, I’m seeing that the view is recognizing there are events for Friday 31 -you can see the column header is linked to that day view as opposed to other that are not linked at all- but the actual event is not there. I only see recurring events in your site, can you try adding an non-recurrent event so we can see if this issue is just happening with recurring events?
Also to discard any possible conflicts with other plugins or with the theme, Can you please go over the steps described in our Testing for conflicts guide?
Please let me know about those,
Best,
Nico -
AuthorPosts
