Forum Replies Created
-
AuthorPosts
-
August 24, 2015 at 7:12 am in reply to: Calendar defaults to no category, in month view, when advancing a month #998387
Brian
MemberHi,
Thanks for using our plugins and sorry for the issues with this.
That is fixed in The Events Calendar 3.11.1 please update all Events Calendar Plugins to at least 3.11 and it will resolve the issue.
If it does not let us know.
Thanks
Brian
MemberNo worries. Let us know how this works out.
Thanks
Brian
MemberHi,
You can try this css as that will force a height, but it might look strange in some devices and you would have to troubleshoot the css to get it how you would like:
.tribe-events-photo-event-wrap .tribe-events-event-image img {
height: 260px;
}Add that css to your theme’s stylesheet or through a plugin such as Simple Custom CSS.
Let me know if that helps.
Thanks
Brian
MemberHi,
Is there a way to make clicking the event on the Month view go to the Event post?
That is not a feature of the mini calendar.
The closest we have is you have to Activate Day View.
And set the Mini Calendar Number of events to show: to 0 in the Widget.
Then when you click on a day it opens up in Day View and shows just those events.
Unfortunately, that does not work in the shortcode like this:
[tribe_mini_calendar count="0"]However, if in this file
events-calendar-pro\src\Tribe\Shortcodes\Mini_Calendar.php
You replace this:
protected $default_args = array(
'before_widget' => '',
'before_title' => '',
'title' => '',
'after_title' => '',
'after_widget' => '','tag' => '',
'tags' => '','category' => '',
'categories' => '',
);With this:
protected $default_args = array(
'before_widget' => '',
'before_title' => '',
'title' => '',
'after_title' => '',
'after_widget' => '','count' => '',
'tag' => '',
'tags' => '','category' => '',
'categories' => '',
);You could then use that shortcode with count 0.
I have put in a ticket for us to add this into the plugin, but in the mean time that change will work.
However, it will have to be added back into the plugin after every update until we can get it in there.
That is as close as I can get to that with our existing features. The only other way to achieve what you are looking for is to build a new widget.
August 14, 2015 at 1:03 pm in reply to: adding past events to the database and order barcordes #996153Brian
MemberHi,
Thanks for the interest in our plugins.
You can add dates at anytime so if you like you can add the 200 past events into the Events Calendar.
We do not have a feature barcode checkin for our Ticket Plugins. We are working on that as a feature and hope to have a beta within the next couple of months if there are no more delays in development.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
Sorry for the issues here. We are working on a fix.
I do not have an update when that might be release, but I have added this thread to our bug ticket and we will update it once we have a fix.
I am going to close this thread to new replies for now, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
Brian
MemberHi,
Thanks for purchasing our plugins I can help out here.
What demo site are you referring too?
I visited your site here:
And the event list is very close to what our typical view is besides the changes that your theme brings to it. I can try to provide some css, but I am limit in providing all the css to cancel whatever your theme is doing.
Recurring Event Errors
As for 404 Errors please follow our 404 Error Guide:
If that does not help please try out our testing for conflicts guide and see if that finds a conflict causing this:
Event Archives
This message is displayed because of Yoast SEO, please add the following snippet to your Theme’s Functions.php to remove it:https://gist.github.com/jesseeproductions/f4937c82325ab152cb24
Let me know and we can go from here about these issues.
Thanks
August 14, 2015 at 12:51 pm in reply to: Adding a button on single events page to main events page #996145Brian
MemberHi Mike,
The Single Template of the Events Calendar includes a link that says All Events in the upper left corner.
If you are not seeing it, it could be some css is hiding it from your theme or another source.
Pro uses the same single template as the Events Calendar so if it is not showing now it will not show with Pro.
You can always add your own link following our themer’s guide:
https://theeventscalendar.com/knowledgebase/themers-guide/
Cheers
Brian
MemberGreat glad it helped and it worked itself out.
I am going to close this thread to new replies, but we have a bug ticket in our system to resolve this for good.
That snippet should help out until that happens.
If you have any new questions or concerns please create a thread and we can help out.
Thanks
Brian
MemberHi,
You can deactivate and delete each of the plugins and then install new copies to do a fresh install of the files.
This process should not delete any settings or events, but it is always a good idea to backup beforehand.
However, I just visited your site and now see the Event List under the mini-calendar.
Do you see it now?
Brian
MemberOk, I added it to my child theme of Genesis and did not get a white screen.
What does your error log say as it appears it is triggering a fatal error?
Brian
MemberHi Heather,
Thanks for your interest in our plugins.
As the Eventbrite API is written it is not possible to purchase tickets through your own site. It has to be purchased through Eventbrite.
Let me know if you have any follow up questions.
Thanks
August 14, 2015 at 8:22 am in reply to: Hiding events list by default in Pro Calendar widget #996057Brian
MemberHello,
I came up with this script to hide the Mini Calendar Event List on Page Load.
Then once the Mini Calendar is clicked it will show the list again.
Add this to your child theme’s (or theme) functions.php:
https://gist.github.com/jesseeproductions/e950af6c6cdfcfe7c78e
Let me know how that works for you.
Thanks
Brian
MemberHi,
I have this snippet to resolve this. Please add to your theme’s functions.php:
/**
* It's possible for a gnarly, unending update loop to spring up
* when events have been broken out of an existing chain of recurring
* events.
*
* This helper aims to detect such a situation and resolve it.
*/
function fix_rec_update_issue() {
$event_id = (int) $_POST['event'];// Nonce check
if ( ! wp_verify_nonce( $_POST['check'], 'generate_recurring_instances_' . $event_id . get_current_user_id() ) )
return;$queue = new Tribe__Events__Pro__Recurrence__Queue( $event_id );
$to_create = $queue->instances_to_create();
$to_exclude = $queue->instances_to_exclude();if ( count( $to_create ) !== count( $to_exclude ) )
return;foreach( $to_create as $timestamp ) {
if ( ! in_array( $timestamp, $to_exclude ) )
$mismatch = true;
}if ( @$mismatch ) return;
$queue->instances_to_create( array() );
$queue->instances_to_exclude( array() );
$queue->save();
}add_action( 'wp_ajax_tribe_events_pro_recurrence_realtime_update', 'fix_rec_update_issue', 5 );
Let us know if that helps resolve the issue.
Thanks
Brian
MemberHi,
I changed some things around and got this to work:
<div id="grotekerk">
<?// Retrieve the next 5 upcoming events
$events = tribe_get_events( array(
'posts_per_page' => 4,
'tribe_events_cat' => 'grotekerkplein',
'start_date' => new DateTime()
) );// Loop through the events: set up each one as
// the current post then use template tags to
// display the title and content
foreach ( $events as $event ) {
setup_postdata( $event );// This time, let's throw in an event-specific
// template tag to show the date after the title!
echo '<article><div class="meta">';
echo str_replace(
':',
'',
tribe_get_event_categories($event->ID, array('label'=>''))
);
echo tribe_get_start_date($event->ID, false, 'j F Y H:i');
echo '<h1>'.get_the_title( $event->ID ).'</h1>';
echo '</div></article>';
}
?>
</div>
<?php -
AuthorPosts
