Forum Replies Created
-
AuthorPosts
-
Brian
MemberHi,
Sorry for the issues you are having.
You have to update Pro to the latest version of 3.12.
You can download the latest version from your account here on theeventscalendar.com
And follow these steps for manually updating it:
I would also recommend setting up your license and reading through these articles to get Automatic Updates working:
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi Joe,
Thanks for using our plugins. I can help out here.
The Login Form for Community Events uses the Standard WordPress form: wp_login_form
https://codex.wordpress.org/Function_Reference/wp_login_form
It does not have a template as a function checks if it should show or not and then calls wp_login_form if it should show.
If you want a custom login form the best thing to do is add a check at the top of the community template. Then you could add the form the way you would like and only let people pass to our coding once logged in and this would bypass our form.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
Thanks for using our plugins. I can help out here.
Can you show all the settings for an individual ticket you created. Include the Start and End Sale Dates.
Let me know and we can go from here.
Thanks
Brian
MemberHi,
Thanks for using our plugins. I can help out here.
It looks like the Multi Organizer Feature prevents the traditional Required Fields from working.
I got this snippet to work for me:
add_filter( 'tribe_events_community_required_fields', 'tribe_ommunity_required_fields_org_email', 10, 1 );
function tribe_ommunity_required_fields_org_email( $fields ) {$required_email = $_POST['organizer']['Email'];
foreach( $required_email as $email) {
if ( empty( $email ) )
$fields[] = 'Organizer Email';
}return $fields;
}Add that to your theme’s functions.php and let me know how that works out for you.
Thanks
September 21, 2015 at 7:01 am in reply to: Next event button disapears after 1 click event. #1007002Brian
MemberWe have this list of customizers that could help:
https://theeventscalendar.com/knowledgebase/find-a-customizer/
Or you could search in your local area for developers through a WordPress Meetup Group.
September 21, 2015 at 4:54 am in reply to: Fatal error: Class 'Tribe_Template_Factory' not found #1006971Brian
MemberFor the home page try this:
If you uncheck this setting here:
Events > Settings > General Tab > “Recurring event instances”
Does the home page work again?
If so that is a bug and we are working on a patch to release hopefully this week.
Let me know.
Thanks
Brian
MemberHi,
The coding goes in your theme. I do not know how your theme creates the titles, but you would use the conditionals to change the title output.
It is not an advanced level activity, but does take some knowledge of php.
The best I can do on this is provide some css that would hide it on the Events Views.
Let me know if you would like me to provide that.
Thanks
Brian
MemberHi,
You’re Welcome.
I am not sure what you mean by Donation Based Events.
If you would like to request Donation Based Events 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.
http://tribe.uservoice.com/forums/195723-feature-ideas
Cheers
Brian
MemberHi gonzalosanza,
We are working on the issue with both and hope to have a patch very soon to resolve.
We will update this ticket when it is released.
Brian
MemberHi,
That other coding is for the Filter Bar plugin, which is separate from Pro.
On clear you could maybe set it to go to the default view, which would clear everything.
I do not have any other coding for clearing and reloading the search bar unfortunately.
Brian
MemberHi Tom,
There is no shortcode argument to set the width.
That would have to be done by css.
Cheers
September 21, 2015 at 4:39 am in reply to: Additional Field URL displays as HTML on event page #1006956Brian
MemberGreat glad it helps.
I am going to close this ticket to new replies, but we will update it once we have a resolution for the additional field url issue.
If you need anything else related to this topic or another please post a new topic on the forum and we can help you out.Thanks
Brian
MemberThanks for the information!
I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
Brian
MemberI am glad to see you were able to fix this issue.
Since the issue is resolved I am going to go ahead and close this ticket. If you have a similar issue or another in the future, please do not hesitate to create a new ticket.
Thanks!
September 18, 2015 at 2:42 pm in reply to: Fatal error: Class ‘Tribe__Events__Pro__Geo_Loc_Filter’ #1006617Brian
MemberHi,
Ok lets take these two errors:
This warning looks to be coming from a custom function you have. Was this provided by us? Can you show the coding from that function so we can see what is wrong?
Warning: Missing argument 4 for mt_tribe_event_featured_image() in /nas/wp/www/staging/mauitime/wp-content/plugins/9s-core-functionality/inc/custom-tribe-events.php on line 49This error is from Advanced Custom Fields the_field() is their function to get a custom field. Is that plugin active:
Fatal error: Call to undefined function the_field() in /nas/wp/www/staging/mauitime/wp-content/themes/mauitime/tribe-events/single-event.php on line 58Let me know what you find out about these two.
Thanks
-
AuthorPosts
