Forum Replies Created
-
AuthorPosts
-
July 29, 2016 at 5:23 pm in reply to: Site slow and down due to Calendar Pro – wp_postmeta table #1145751
Cliff
MemberIt’s frustrating, disappointing, and a time-waste when things mess up this badly. Of course, we are sorry about this.
Our refund policy and request form is at https://theeventscalendar.com/knowledgebase/refund-policy/
Please let me know if there’s anything more you’d like me to help with on this support ticket.
July 29, 2016 at 5:20 pm in reply to: Past and future events buttons not shown on smartphone #1145750Cliff
MemberExcellent! Have a great weekend.
Cliff
MemberInteresting. Glad you smartly figured it out. 😉
Cliff
MemberGreat. Glad to hear it.
Cliff
MemberGlad to hear it.
Cliff
MemberHi. Sorry that happened for you.
I’ve seen that the “Your Start Date returned no results. Please adjust your Start Date.” message can appear even when the issue is actually something else entirely — just something to be aware of.
I tried your iCal URL in an iCal Validator and the issue is that it’s returning zero events.
I verified the result by downloading the .ics file from your iCal URL and opened with a text editor, and the Validator is correct that there are zero events.
I tried the code snippet on my local testing site again and it worked as expected. Maybe following our Testing for Conflicts Guide would help.
Please let me know how things go for you.
July 28, 2016 at 4:44 pm in reply to: Past and future events buttons not shown on smartphone #1145366Cliff
MemberHi. This was a bug that was recently fixed.
Could you please make sure all your Modern Tribe plugins (and WordPress core) are at their latest versions?
Once you verify you’re on the latest versions, please test to see if the issue is still happening for you.
If it is, please follow our Testing for Conflicts Guide (basically switch to TwentySixteen theme and deactivate all plugins and custom code other than Modern Tribe plugins) and see if that helps narrow down the cause of this.
If it doesn’t, please enable WP_DEBUG and WP_DEBUG_LOG and share any PHP errors you see while changing tickets quantity, navigating your site’s home page, events page, single-event pages, and any other of your site’s pages relevant to this ticket.
Then, please share your System Information (while in Testing for Conflicts mode).
You might also see if you can spot any console errors at your site. (If needed, you may reference our KB article Using Google Chrome Developer Tools.)
Let us know what you find out.
Thanks.
Cliff
MemberAwesome job, Sarah. Thanks, Frank, for letting me know that solved your issue.
Cliff
MemberHi Justin. Thanks for your purchase and for the system information report.
I see you have The Events Calendar and Event Tickets Plus installed, but you also need to install the free/core Event Tickets plugin.
Please let me know if you need any further help.
Cliff
MemberHi Dean. Thanks for your purchase and for the screenshots.
You need to obtain the installable .zip file for the add-on plugin from your Downloads and then upload/install/activate it on your WordPress site.
Please let me know if you need any further help.
July 28, 2016 at 4:20 pm in reply to: Community Events upload- How do I hide certain fields #1145358Cliff
MemberI believe I understand what you’re asking for, but we’re limited in helping with customizations, per our Scope of Support / Terms.
I’ve helped point you in the right direction. If a CSS solution is satisfactory (even for just the short-term), you could easily hide the ones you want removed. If you want a checkbox to act differently, you could check it or uncheck it in PHP or via jQuery.
Cliff
MemberThose times are in UTC, as stated after each row’s date and time. Maybe that will help them make more sense. I don’t see any WP_DEBUG errors there, just that you have our plugin’s logging turned on (I’m guessing you enabled The Events Calendar’s debug mode in addition to WP_DEBUG).
Since I couldn’t reproduce the issue and another one of your sites couldn’t reproduce the issue, I can really only continue assisting you if you provide your full system information report while in Testing for Conflicts Mode. In this case, please also share your System Information report from your other site where the iCal Importer is working properly for the iCal URL in question.
Thanks.
July 28, 2016 at 4:00 pm in reply to: Advanced List Widget customization with additional fields #1145354Cliff
MemberSorry, I don’t, but tribe_get_custom_fields() or tribe_get_option( ‘custom-fields’ ) might come in handy.
If you need some coding help, you may want to ask your developer or reference our documentation and list of known customizers.
Cliff
MemberI understand, Sabine. Thank you for your candid feedback.
I can tell you that our forums were recently updated to not auto-close tickets in Pending Fix status so I’ll put it in that.
While this code is untested, it might help you achieve what you want until such time that the feature is released:
/** * Allow HTML in custom field names. * * @param array $fields * * @return array */ function allow_custom_field_name_html( array $fields ) { $revised_field_list = array(); $alternate_names = array( 'I agreed to the terms and conditions' => 'I agreed to the <a href="#">terms and conditions</a>' ); foreach ( $fields as $name => $value ) { if ( isset( $alternate_names[ $name ] ) ) $name = $alternate_names[ $name ]; $revised_field_list[ $name ] = $value; } return $revised_field_list; } add_filter( 'tribe_get_custom_fields', 'allow_custom_field_name_html' );and then also copy (not move) /wp-content/plugins/events-calendar-pro/src/views/pro/modules/meta/additional-fields.php
to [your-child-theme]/tribe-events/pro/modules/meta/additional-fields.php
and edit this new file to as follows:replace:
<dt> <?php echo esc_html( $name ); ?> </dt>with:
<dt> <?php echo $name; ?> </dt>Maybe it’ll work for you; maybe it won’t. You’ll need to verify and vet the code on your own if you do want to try it.
July 28, 2016 at 2:44 pm in reply to: Month view causing php memory limit error with WP Super Cache #1145340Cliff
MemberThanks for the update. I’m glad to hear we’re at least moving in the right direction.
I’ll wait to hear back from you on this topic…
Please note that threads get Closed automatically after a couple weeks of inactivity. If it does get Closed, please open a new thread, adding your current problem description and also linking back to this thread.
Thank you!
-
AuthorPosts
