Forum Replies Created
-
AuthorPosts
-
Brian
MemberHi,
Thanks for the interest in WooCommerce Tickets.
Tickets are created per event and we do not support recurring events. So you would have to manually create tickets and events for each time slot and tour type.
So it is possible, but would take a lot of manual work on your end to manage.
Let me know if you have any follow up questions.
Thanks
Brian
MemberThe Event List Widget is showing today’s date?
If so looks like a theme conflict, can you please follow our testing for conflicts guide:
And see if that resolves the issue.
Thanks
Brian
MemberHi,
We just have the single year license.
Thanks
Brian
MemberHi,
Thanks for using WooCommerce Tickets. We do not have a feature to send reminders. It maybe possible to add to the plugin, but it is beyond the support we can provide on the forum to provide that coding (nor do we have that coding).
If you would like to request that feature please head to our UserVoice Page and add your own or upvote that feature as they will increase the chances of it being added to a future version.
Brian
MemberUnfortunately, you caught us right when we removed the discount so the system kicked it out.
You will not see the reduced price again so it is not a bait and switch the price is now $89.00.
I apologize for the confusion.
Thanks
Brian
MemberHi,
Thanks for the interest in the Events Calendar.
I have answered your questions below:
Can we easily place our leaderboard, sidebox and other ads being served by our Double Click for Publishers program?
We have a themer’s guide that shows you how you can edit any event template so you should be able to add your coding anywhere you would like:
https://theeventscalendar.com/knowledgebase/themers-guide/
Can we sell featured listings?
We do not have a feature to do this and do not have featured events.
Can we feed results to the homepage of the site it is install on for example layoga.com?
There is an RSS feed you can use, but beyond that we do not have support for a direct feed.
Can we feed results from a separate install of The Events Calendar to another WordPress website?
Same as the above answer.
Let me know if you have any follow up questions.
Thanks
March 10, 2015 at 5:47 am in reply to: Question About WPML + TEC PRO Solution fom Other Thread #947184Brian
MemberHi,
WPML and TEC do have conflicts together and it is unclear on exactly what those conflicts are. It is true it has been on the roadmap for awhile, but we are finally moving forward on making them compatible with each other, but I do not have a timeline for when that might happen.
I will leave this thread open for now, but there is not much we can help out with right now.
Thanks
March 10, 2015 at 5:43 am in reply to: Problem installing The Events Calendar (to support WooCommerce Tickets) #947183Brian
MemberHi,
Sorry for the issues. Where are you getting the Events Calendar zip file from? It could be corrupted somehow.
Does getting a new copy solve the issue? Or can you install by searching for the Events Calendar in the Add New Plugins screen in the admin of your site?
Also, please make sure there is not installed copy of The Events Calendar in your plugin directory.
Let me know if you can get that to work.
Thanks
Brian
MemberI reduced the coding down to this and got it to work:
$startDate = strtotime( $post->EventStartDate );
$endDate = strtotime( $post->EventEndDate );
$today = time();
/* If the event starts way in the past or ends way in the future, let's show today's date */
if ( $today > $startDate && $today < $endDate )
$postDate = $today; else
$postDate = $startDate;?>
<div class="icon-date">
<h3><?php echo date_i18n( 'M', $postDate ) ?></h3>
<h4><?php echo date_i18n( 'd', $postDate ) ?></h4>
</div>You have to remove the filter for it to display.
Also you will have to grab the css or use your own to style how you would like.
That should get you started on your customization so you can take it from here.
Thanks
Brian
MemberHi,
Sorry for the issues you are having. I can help troubleshoot this with you.
Not sure what happened to the site, could have been a setting change or a new conflict could have been created.
To help narrow down the issue can you please follow our testing for conflicts guide:
Let me know if that helps find the issue and we can go from there.
Thanks
Brian
MemberHi,
Thanks for purchasing our plugin.
I can help troubleshoot this with you.
get_the_permalink() was added to WordPress in 3.9, which is also the minimum requirement for the Events Calendar.
Are you able to update to WordPress 4.1.1 to fix the issue?
Let me know and we can go from here.
Thanks
Brian
MemberOk thanks for that.
Have you included this above that coding:
$startDate = strtotime( $post->EventStartDate );
$endDate = strtotime( $post->EventEndDate );
$today = time();/* If the event starts way in the past or ends way in the future, let's show today's date */
if ( $today > $startDate && $today < $endDate ) {
$postDate = $today;
} else {
$postDate = $startDate;
}If you add that does it work then?
Let me know.
Thanks
Brian
MemberGrad glad you got one thing down.
You can add content to the default template. That will put it on all the event views and single events.
You can dig deeper from the default template to target individual event views (month, list, photo, etc) or the single template.
Also, in the settings there is a field to add content above and below the event content on all the event pages.
Let me know if that helps.
Thanks
Brian
MemberSorry I still seem to be missing something.
I visited this page:
http://maastricht-students.com/events/list/
And did not see past events there, what page are you referring to?
Brian
MemberHi,
The tribe_is_event_query() still exists it is now found here:
https://theeventscalendar.com/function/tribe_is_event_query/
Here is two other lists of conditionals I have used before as well:
https://gist.github.com/jo-snips/2415009
Let me know if you have any follow up questions.
Thanks
-
AuthorPosts
