Brian
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Shortcode not workingHi,
Thanks for using the Events Calendar.
That shortcode is a feature of Pro only and we only have shortcodes for our Pro widgets. We are developing a shortcode for the full month view and hope to release that in the next major release, but I do not have a timeline for that.
If you are Pro user here on the WordPress.org forum, I’m afraid we do not provide technical support for our premium plugins. I would ask that you take any technical support questions across to our premium forum where we will respond to you within 24 hours during the week:
https://theeventscalendar.com/support/forums/
Thanks again!
Hi,
I changed my site language to Brazilian Portuguese and your example translated correctly for me:
#: src/admin-views/tribe-options-general.php:37
msgid “Number of events to show per page”
msgstr “Número de eventos a mostrar por página”Have you tried on a clean install if you still have the issue?
What about if you run through our testing for conflicts:
https://theeventscalendar.com/knowledgebase/testing-for-conflicts/
If you do that is there still an issue?
Unfortunately, the bug Caroline referenced was part of a fix in 4.2.1.1 and not seeing any new reports of this in our Premium Forums.
For now there is no solution or fix as the source of the issue on your site is unknown. If you do those above tests that could help us get closer to the cause of the issue whether it be a conflict or bug.
Thanks
Forum: Plugins
In reply to: [The Events Calendar] Ongoing EventHi,
The [ecs-list-events] shortcode is not developed by us and we are not able to provide support on 3rd party coding.
Please bring your questions to them:
https://wordpress.org/plugins/the-events-calendar-shortcode/
Cheers
Forum: Plugins
In reply to: [The Events Calendar] Events Calendar Short codeHi,
Thanks for using our plugins. I can help out here.
This shortcode is a Pro Feature:
[tribe_mini_calendar]
It only displays the Pro Mini Calendar Widget
We currently do not have shortcodes for the main views of Month, List, Day, etc.
We are developing those shortcodes, but I do not have a timeline for their release.
Thanks
Forum: Plugins
In reply to: [The Events Calendar] How can i mark not to Change own PHP Code for UpdateHi,
Thanks for using the Events Calendar.
You can find coding to disable updates for an entire plugin.
Otherwise any changes made to the core of our plugin or any plugin in WordPress will be lost on updates.
In WordPress it is recommended to always use hooks and coding in a custom plugin to make changes.
Cheers
Forum: Plugins
In reply to: [The Events Calendar] Links below calendar is not workingHi,
Thanks for the information.
Do both sites you have the issue on run WPML?
Forum: Plugins
In reply to: [The Events Calendar] wrong day highlighted as current dayHi,
Sorry for the late reply.
It looks like you are using an older version of the plugin.
Please update to 4.2.2 and that should resolve the issue.
Let us know how that works out.
Thanks
Forum: Plugins
In reply to: [The Events Calendar] Issues with recurring events email datesHi,
Thanks for using the Events Calendar.
Here on the WordPress.org forum, I’m afraid we do not provide technical support for our premium plugins. I would ask that you take any technical support questions across to our premium forum where we will respond to you within 24 hours during the week:
https://theeventscalendar.com/support/forums/
Having said that. We do not support individual events for tickets or rsvp in recurring events. If you create one with a recurring event it is always tied to the first event in the series. We are working on a feature for individual tickets, but I do not have a release date for that feature.
Thanks again!
Forum: Reviews
In reply to: [Coupon Creator] Pro Version worth the moneyThanks for the review and using the Coupon Creator!
Forum: Plugins
In reply to: [The Events Calendar] Ascending order of events in listHi,
This is in visual composer the settings right? We do not support any features in visual composer.
Have you tried contacting them about it?
Most likely it is because in event loops we change the query to order by the event start date and the loop is ignoring the orderby in visual composer.
Unfortunately, there is not much else we can do to support 3rd party plugins or customizations such as this.
But we can try to help out some more.
Thanks
Hi,
Thanks for the information.
So by the sounds of things you have images that have been manually rotated, don’t match the meta data and this plugin is flipping them. Do you think this sounds correct?
Correct, it does look like it is in the meta data.
I scanned the file and it has this in it:
Orientation Rotate 90 CW
I tested on your demo site and it did the same thing there.
Even though when viewing the file on my computer (windows) it shows as a portrait.
So what you propose at the end sounds like a good solution to me.
Forum: Plugins
In reply to: [The Events Calendar] Shaded Box?Hi There,
We had a customer report this worked for them when all else failed:
So, I created a new API key (for the third time), and the only change I made was to add _two_ URLs to the Google Maps javascript API key authorization list:
domain.org (without wildcards) and *.domain.org/* (with wildcards)Not sure why that is the case, but something else to try.
Cheers
Hi,
Sorry for the issues on this.
I can help resolve this. The function giving the fatal error, tribe_events_single_event_meta() was deprecated 24 months ago in 3.6 and removed in 3.11.
To fix this you need to update your custom template single-events.php in your theme.
You want to replace:
echo tribe_events_single_event_meta();with this function:
tribe_get_template_part( 'modules/meta' );Let me know if that resolves the issue for you.
Thanks
Just wanted to let you know the new filters work great for me. Thanks for adding them!
I appreciate the addition.
This is what I was able to use to get videos as the default and images for two other forms:
/** * Filter Filter Types for Wedding Form on Upload */ add_filter( "itsg_gf_upload_file_options", "prefix_ajax_upload_file_options", 10, 2 ); add_filter( "itsg_gf_ajaxupload_options", "prefix_ajax_upload_file_options", 10, 2 ); function prefix_ajax_upload_file_options( $options, $form_id ) { if ( 3 == $form_id || 8 == $form_id ) { $options['filetype'] = 'png|gif|jpg|jpeg'; } return $options; }Cheers!
Forum: Plugins
In reply to: [The Events Calendar] Shaded Box?And to add to this that last error is from a change to Google and to quote ekelareva:
The Google Maps APIs require an API key for new domains as of today. See announcement: http://googlegeodevelopers.blogspot.com.au/2016/06/building-for-scale-updates-to-google.html
We added this guide yesterday to setting up the API Key to provide more instructions on it:
https://theeventscalendar.com/knowledgebase/setting-up-your-google-maps-api-key/