Forum Replies Created
-
AuthorPosts
-
George
ParticipantHey Craig,
I was able to take a deeper dive into other records and found that indeed, your second purchase was an Upgrade of your existing Personal License to a Business License.
The original purchase of the Personal License was $89; the Upgrade to Business was $60. That’s $149, which is the same exact cost as just buying a new business license which is $149. This enables license activation for three websites.

I hope this information helps.
— George
George
ParticipantThis reply is private.
October 30, 2015 at 8:26 am in reply to: Events page completely blank but events still there in system #1020261George
ParticipantCheers! 😀
October 30, 2015 at 8:22 am in reply to: organizer page does not list events by that organizer #1020256George
ParticipantThanks for sharing this @Yasir! I have two further questions:
1. Can you share your “system information” with us? Here’s how → https://theeventscalendar.com/knowledgebase/sharing-sys-info/
2. Do any errors pop up on your site if you head to your site’s wp-config.php file and change this line of code:
define('WP_DEBUG', false);to this:
define('WP_DEBUG', true);That will display PHP errors if any exist, which might be quite useful here.
Thank you!
GeorgeGeorge
ParticipantThank you for verifying @Sean!
Adding the following code to your theme’s functions.php file will do this for you:
add_filter( 'tribe_events_event_schedule_details', 'custom_tribe_events_event_schedule_details' );function custom_tribe_events_event_schedule_details( $details ) {
$event = get_post( get_the_ID() );
$datetimes = array(
'start' => tribe_get_start_date( $event, false, 'Y-m-dTh:i' ),
'end' => tribe_get_end_date( $event, false, 'Y-m-dTh:i' )
);return date( 'ga', strtotime( $datetimes['start'] ) );
}
To tweak that display at all, you’ll need to play around with that date() function and the format it displays the date/time in – you can learn about that here: http://php.net/manual/en/function.date.php
Cheers!
GeorgeGeorge
ParticipantThank you for your input and for updating this thread with your resolution, @Glenn. I will close up this thread for now but wish you the best of luck with your site!
George
George
ParticipantThe debug file is not very helpful for two reasons:
1. First, you said that the URL they came from is actually not a good one, at least assuming the DEBUG output is from the URL you said wasn’t a good one:
2. The code referenced in the file references outdated code from within The Events Calendar. For example, the static-method errors refer to a class method called addMinToStartDateInFields(), which is a long-deprecated and now non-existent method. In other words it doesn’t exist in our current code, so the DEBUG output is not referring to issues that exist with current The Events Calendar code.
George
ParticipantNo worries at all @Brian! 😀
We’re here to help so come on back and open a new thread any time another issue arises.
Cheers,
GeorgeGeorge
ParticipantHey @Ludo,
Sorry to hear about this!
1. What is the error statement you receive?
2. Did you download the .zip in the “Safari” Web browser?
Thank you!
GeorgeGeorge
ParticipantHey @Josh,
I’m sorry to hear about this! This is not behavior that I can create at all, so I’m wondering if we can first get started here by your sharing your “System Information” – here’s how to do that: https://theeventscalendar.com/knowledgebase/sharing-sys-info/
Share that information, and I’ll use it to try and figure out what the problem is here.
Thank you!
GeorgeGeorge
ParticipantHey @Amber,
If you have made your purchases within the last thirty days, we can indeed issue a full refund. If not, then we might be able to depending on your payment processors and such.
In either case, to act on this please email [email protected] with copies of all of your order receipts. We’ll help out from there and try to sort this out!
Thank you,
GeorgeOctober 29, 2015 at 9:51 am in reply to: shortcodes for embedding events list in wordpress page #1019861George
ParticipantHey Susan,
Thanks for reaching out!
The answer here is YES, we have shortcodes in Events Calendar Pro that literally emulate the output of the widgets that you mentioned.
Check out all of these shortcodes and learn about them in detail here → https://theeventscalendar.com/knowledgebase/pro-widget-shortcodes/
Let me know if this helps and/or if you have any other followup questions 🙂
— George
October 29, 2015 at 9:49 am in reply to: Combination of Events Calendar Pro and Community Events #1019859George
ParticipantHey Pauli,
This indeed sounds possible – you would simply need to buy and install both Events Calendar Pro and The Events Calendar: Community Events on your site. Then, let the 50 people register for your site and then turn off registrations so that other people cannot register.
As for your other questions about requiring specific fields, this unfortunately requires custom code 🙁
We cannot help with writing custom code, but we do have a knowledgebase article on this topic that should help get you started → https://theeventscalendar.com/knowledgebase/required-fields-for-events-submission-form/
Specifying character limits for each field would unfortunately require even more additional code 🙁
I hope this information is clear and helps you move forward with your project!
Cheers,
GeorgeGeorge
ParticipantHey @Brian! No worries! I’m really sorry about the stress you seem to be dealing with at present; I want to let you know that I have issued a full refund for your WP eCommerce Tickets plugin – you should have every cent back in your accounts within a few days at most (depending on PayPal itself and such).
Can you proceed with buying a WooCommerce Tickets license now? Let me know!
Cheers,
GeorgeGeorge
ParticipantHey @Mad Dog,
Commenting out the table headers is fine; there’s really no difference in using another method like writing CSS. If you would like to write CSS instead, definitely check out a [free!] tool like Firebug if you use FireFox, or the Developer Tools for either Safari or Chrome. They have “Inspector” tools that let you zoom right over the elements you’d like to remove, like table columns etc., and so would be very helpful in finding out what CSS selectors to use for you.
Cheers,
George -
AuthorPosts
