Forum Replies Created
-
AuthorPosts
-
Brook
ParticipantHowdy prservices,
That is certainly not normal. I am trying to reproduce this problem on a test server with no success. Do you have a timezone set for this event?
Would you mind grabbing your system information and pasting it here? Make sure to use the ‘Set as private reply’ checkbox to protect your private information from the public. You can find the system info by going to WP Admin > Events > Settings, clicking on the “Help” tab, and scrolling down to the ‘System Information’ box. (Or by going to [yoursite]/wp-admin/edit.php?post_type=tribe_events&page=tribe-events-calendar&tab=help) That will give me a lot of extra information to help diagnose the problem.
If I’m not able to reproduce this using your exact settings I will need you test if a “conflict” is happening, and if so narrow it down so we can find a fix for it. This guide walks you through how to test for a conflict, and then identify what is conflicting. But, sometimes it take a while to run through that test so first I’d like to try one last shot at reproducing this locally before asking you to run through those steps.
Cheers!
– Brook
Brook
ParticipantYou’re welcome Sofia. Please let us know if we can be of further help.
I should clarify one thing, your website appears to only use List View which makes this a lot easier to do. If you wanted to do something similar for Month or Week view it would a bit more complicated to pull off. In that case I would recommend a different strategy involving using WP Cron to actually change the event date. Let me know if this is your goal and I can dive into detail here.
Cheers!
– Brook
April 7, 2016 at 10:09 am in reply to: Show past events if upcoming there are no upcoming events on homepage #1099663Brook
ParticipantHowdy Ghilaine,
Thanks for taking the time to post. If this is something you’d like to see please suggest it as a feature for our calendar. I don’t think Faith has yet. But if you do post it you both should vote on it and give this idea a jump start!
- Brook
Brook
ParticipantFor sure I can shed some light on that. It only shows up when its needed. You need to first type something into the Events Near ______ field in order for it to limit how far away from this location to show events.
– Brook
Brook
ParticipantHowdy Sofia,
That’s an interesting idea, never seen this thought of before. It’s definitely possible for a programmer to accomplish this using our API, might take 1-2 hours of time for an experienced dev to build and test.
If you have such a dev here’s what to do:
- Checkout the function tribe_events_event_schedule_details(). This outputs the date range in most places on the calendar.
- You could override its output using the filter ‘tribe_events_event_schedule_details_inner’ I would copy/paste the logic from that function and just override this filter with a rennamed version of the same function.
- Now just check if tribe_get_start_date() < now but tribe tribe_get_end_date() > now, if so override it the start date with the current one.
- Finally you might wish to override the data in more place on the calendar. You probably don’t want to override the date in the backend, but perhaps you would want to override the single event details area. You could do this by following our Themer’s Guide. You might prefer to not even override the date in this the full details area, but instead add some kind of note about the event continuing today. This is totally up to you.
Does that all make sense? Will that work for you? Please let me know.
Cheers!
– Brook
Brook
ParticipantHowdy Sebastian,
That field is purposefully hidden on Event Tickets Plus because the front end uses your tickets data to populate the field. If you have a ticket available for $49 it shows that, it you have one multiple ones available it shows the entire range.
However we do have a tutorial for enabling this field even with Event Tickets Plus installed. It works great for events with no tickets. But if you have tickets on your event, their data will override anything you input into the field.
Does that all make sense? Will that work for you? Please let me know.
Cheers!
– Brook
Brook
ParticipantHowdy Alan,
Thanks for sharing the links and detailing the problem. When I visit your site and try to reproduce I get the following error:
tribe-events-ajax-list.min.js:1 Uncaught TypeError: a(...).tribe_spin is not a functionBut that does not tell me what is causing the error, only that there is one. Would you mind walking through a few steps so we can determine the source of the error? In order to proceed we will need to test if a “conflict” is happening, and if so narrow it down so we can find a fix for it. This guide walks you through how to test for a conflict, and then identify what is conflicting.
Cheers!
– Brook
Brook
ParticipantHowdy Ly,
Thanks for elaborating so thoroughly on this. It makes me wonder if your WP site is able to send emails at all. Sometimes it has difficulty doing this because it’s not yet configured for your server. Could you try downloading and using this plugin? It will help you send a test email via WP. Did you receive it?
Cheers!
– Brook
Brook
ParticipantHowdy Diane,
Thanks for pointing this out. Technically all URL are case sensitive. In fact a website can event serve a different page for example.com/ than it does just example.com. But, WordPress does its best working hard to swap improper URLs for the proper one, and we should too. We’ll have to add some code in the plugin to fix this, but that is definitely something we’d be interested in doing. Thanks for the bug report! In the mean time your solution of using a third party plugin to redirect is spot on, that’s exactly what I’d do.
Let me know if you have any questions. Cheers!
– Brook
Brook
ParticipantHowdy Brandon,
Good question. We are thinking of adding a manager for delete iCal events. Technically when you delete them it does not remove all trace of them. Many people who delete the event on their calendar do not wish for it to reappear next time the import runs. But some folks, like you, want exactly that to happen…
If you inset this script into your functions.php file it will permanently delete any iCal event you trashed. Visit any admin page, wait for it to load, then you can delete this script from your functions file.
/* * Deletes the saved copy of "deleted" events generated by iCal Importer * This allows you to re-import events. The script deletes 50 instances per page load */ $posts = get_posts( array( 'numberposts' => 50, 'post_type' =>'deleted_event') ); if (!empty($posts)) { foreach ($posts as $post) { wp_delete_post( $post->ID, true); } } else { echo 'Done deleting!'; }With that done you should now be seeing all of the events available when you try to reimport.
Does that all make sense? Will that work for you? Please let me know.
Cheers!
– Brook
April 6, 2016 at 11:56 pm in reply to: How to hide Enable Global Stock and Hide Attendees List On Event Page #1099398Brook
ParticipantHowdy Again!
I can definitely walk you through this.
Remember last time I had you create a theme override for tickets.php ? You will need to modify that. Find this line:
$global_stock = new Tribe__Tickets__Global_Stock( $event->ID );and change it to:
$global_stock = false;To hide the attendees list you will want to attach a function to this filter ‘tribe_tickets_plus_hide_attendees_list’ and return false if the person is an admin.
Did that help get you where you need to be?
Cheers!
- Brook
Brook
ParticipantYou are welcome Corey. I will this topic here open for a couple of weeks just in case you have any followup questions. But it is very likely the theme author will give you exactly what you need if you show the page and maybe a screenshot of the exact date whose format you are trying to change.
Cheers!
– Brook
Brook
ParticipantThis reply is private.
Brook
ParticipantHowdy Kropstar,
Such a thing is definitely possible. The only plugin from us you would need is Event Tickets Plus. This will allow you to sell tickets as products through an ecommerce store like WooCommerce.
From there you will want to apply dynamic pricing rules. I have not personally used this plugin and cannot speak to its fuoll capabilities, but it comes highly recommended from some of our customers and looks ideally suited for your task. If you would like to see if it can limit purchases to only one per customer you would need to double check with folks who run that plugin. It definitely allows membership discounts. If it does all you want then you can simply apply its rules to the “tickets” product category and you’re off!
Does that all make sense? Will that work for you? Please let me know.
Cheers!
– Brook
April 6, 2016 at 4:43 am in reply to: Show past events if upcoming there are no upcoming events on homepage #1098846Brook
ParticipantHowdy Faith,
That’s a great idea for a modification. You have a few options for moving forward with this:
- Do you have a license to one of our plugins? If you login I can move this topic from the presales area here to our Premium Support Forum and we can take it from there.
- Or, if you don’t have/want a license (which includes a year of support) you should checkout the volunteer community on WordPress.org: The Events Calendar. It’s not the same level of support, but it’s free! We even check those forums once each week and help to the extent we can.
- Suggest this idea as an official feature request. I could see some other folks being interested in it too and thus something we would be interested in building. The only caveat is that this will take a couple of months minimum before something becomes popular enough that we can slot it in amongst all the other ideas.
Does that all make sense?
Cheers!
– Brook
-
AuthorPosts
