Forum Replies Created
-
AuthorPosts
-
October 27, 2015 at 7:09 am in reply to: Different number of results for list view and photo view. #1018845
Brian
MemberHi,
I do not think we have documentation on this exactly. It is more of a WordPress snippet then a Events Calendar Snippet.
Here is more information about WordPress’s pre_get_posts hook:
https://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts
All I did was use a standard WordPress snippet and add one of our conditionals to it:
https://gist.github.com/jesseeproductions/903f5ca75877b713c674
Since this is marked resolved I am going to close this ticket, 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
MemberIf that is not going to work for you. We do have a themer’s guide where you can move and edit any of the event templates in your theme:
Brian
MemberGreat glad it helps.
I am going to close this ticket, 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,
I use them all the time in the theme’s functions.php you have to load them inside of WordPress’s action and filter system to work correctly.
http://codex.wordpress.org/Plugin_API/Hooks
That is all we have for conditionals too.
Brian
MemberGreat glad it helps.
I am going to close this ticket, 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
October 27, 2015 at 5:26 am in reply to: Facebook API Error: (#803) Some of the aliases you requested do not exist #1018800Brian
MemberGreat glad it helps.
I am going to close this ticket, 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
MemberGreat glad it helps.
I am going to close this ticket, 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
October 26, 2015 at 2:39 pm in reply to: Events Calendar List widget shows only one date in display "list-date" #1018695Brian
MemberHi Everyone,
I am going to jump in here and I apologize I missed something in QA and we introduced a bug here that you are experiencing.
You can replace the contents of this file:
plugins/events-calendar-pro/src/functions/template-tags/widgets.php
With the coding here:
That will fix the issue until we can release a patch.
Let me know if that works.
Thanks
Brian
MemberYou’re Welcome.
I am going to close this ticket to new replies, but the issue is still open and we will update this ticket once we release a fix.
If you have any new questions or issues please create a new ticket and reference this one.
Thanks
Brian
MemberHi,
Thanks for using our plugins. I can help out here.
To link from the menu in WordPress you can use the custom link option as outlined here:
https://codex.wordpress.org/Appearance_Menus_Screen#Custom_Links
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
I apologize I missed something in QA and we introduced a bug here.
I see you already fixed it, but here is my fix as well:
You can replace the contents of this file:
plugins/events-calendar-pro/src/functions/template-tags/widgets.php
With the coding here:
That will fix the issue until we can release a patch.
We are working on that patch and at worse it will be out with 4.0.
Thanks
October 26, 2015 at 11:50 am in reply to: Facebook API Error: (#803) Some of the aliases you requested do not exist #1018072Brian
MemberHi,
Thanks for using Facebook Events and our other plugins. I can help troubleshoot this with you.
It looks like a username has not been setup for this page and alias you are trying is not working, because it is not valid.
I used just the id instead:
1489159701297780
And it worked for me.
Although that page has no upcoming events so it will not be able to import anything.
Let me know if you try just the id it removes that error.
Thanks
Brian
MemberHi,
Thanks for using our plugins. I can help out here.
Try changing this:
remove_action('parse_query', array('TribeEventsQuery', 'setupQuery'), 0);To this:
remove_action('parse_query', array('Tribe__Events__Query', 'setupQuery'), 0);Let me know if that helps.
Thanks
October 26, 2015 at 11:39 am in reply to: Month to Month navigation CSS solution still won't appear above grid view #1018059Brian
MemberHi,
Thanks for using our plugins. I can help out here.
I took a look at your site and see why the css solution is not working.
It appears the theme has custom templates in it for the Events Calendar and they have removed the navigation above the month view.
You could add it back by modifying the template in your theme.
It should be in this file:
yourtheme/tribe-events/month/content.phpThere look for this text:
<!– Month Header –>
And the area below should look like this:
<!-- Month Header -->
<?php do_action( 'tribe_events_before_header' ) ?>
<div id="tribe-events-header" <?php tribe_events_the_header_attributes() ?>><!-- Header Navigation -->
<?php tribe_get_template_part( 'month/nav' ); ?></div>
You are most likely missing this part or it is commented out:
<!-- Header Navigation -->
<?php tribe_get_template_part( 'month/nav' ); ?>List View
As for the list view.The file is in this location:
yourtheme/tribe-events/list/content.php
And look for this coding:
<!-- List Header -->
<?php do_action( 'tribe_events_before_header' ); ?>
<div id="tribe-events-header" <?php tribe_events_the_header_attributes() ?>><!-- Header Navigation -->
<?php do_action( 'tribe_events_before_header_nav' ); ?>
<?php tribe_get_template_part( 'list/nav', 'header' ); ?>
<?php do_action( 'tribe_events_after_header_nav' ); ?></div>
<!-- #tribe-events-header -->That should get the navs back in place then you would be able to use that css show them.
Let me know how that works out.
Thanks
October 26, 2015 at 11:28 am in reply to: Adding custom fields to collect attendee information #1018050Brian
MemberHi,
Thanks for using WooCommerce Tickets. I can help out here.
I am not aware of any plugin to do as you ask. We are working on the feature ourselves and it is being developed, but not ready for release yet. I am not sure on the exact release for it either.
A customer did provide a customization that might help here:
Want to change the label and placeholder text at checkout? Check this out!
You might be able to use that to get the information you need.
Let me know if you have any follow up questions.
Thanks
-
AuthorPosts
