Forum Replies Created
-
AuthorPosts
-
Nico
MemberHey tuberb,
Thanks for following up! After inspecting the code I’ve tried a couple of things to try to reproduce the warning message but I was unable to force this π
Can you identify the error with any event or page in your site? Are there any steps you are aware of to reproduce this?
@deichenlaub, feel free to add any additional info if you have.Best,
NicoAugust 25, 2016 at 6:30 am in reply to: Exclude events, venues, organizers from inline link search #1155767Nico
MemberYou are welcome, no problem with the delay π
It’s seems to be a formatting issue, try pasting the snippet in a plain text editor before doing so in the functions.php file. Sometimes this helps, but if it doesn’t then try to remove the spaces/tabs and add those again.
Also please note that you don’t need to add the PHP closing tag ?> to the end of the file, although I don’t think it causes this issue.
Please give this a new try and let me know,
Best,
NicoNico
MemberHi there Darion,
Thanks for reaching out to us on this!
Unfortunately this issue is a known bug logged in our backlog. For the time being there’s no workaround for this available π
I’m adding your case to the internal bug ticket and also bumping the priority of the issue. Although the fix for this doesn’t have a date set yet, you’ll get a heads-up in this thread when it’s out.
Sorry for the hassle until this gets fixed and thanks for the report,
Best,
NicoNico
MemberHi there Matt,
Thanks for getting in touch! Indeed we introduced a fix in Community Events for the old validation code because it broke at some point, this was reported by other users and developers decided to do this in a different way although the knowledgebase article isn’t reflecting these changes yet (but will be updated soon).
Try using this code instead (be sure to modify it to match your required fields):
/* Tribe make community fields require */
add_filter( 'tribe_events_community_required_fields', 'my_community_required_fields', 10, 1 );
function my_community_required_fields( $fields ) {
$fields = array(
'post_title',
'post_content',
'venue',
//'organizer',
);return $fields;
}add_filter( 'tribe_events_community_required_venue_fields', 'my_venue_community_required_fields', 10, 1 );
function my_venue_community_required_fields( $fields ) {
$fields = array(
'Venue', //name
//'Address',
//'City',
//'Province',
//'State',
//'Zip',
'Phone',
//'URL',
);return $fields;
}add_filter( 'tribe_events_community_required_organizer_fields', 'my_organizer_community_required_fields', 10, 1 );
function my_organizer_community_required_fields( $fields ) {
$fields = array(
'Organizer', //name
'Phone',
'Website',
'Email',
);return $fields;
}
Please try this code instead and let me know if it makes thing right,
Best,
NicoAugust 25, 2016 at 5:48 am in reply to: Event RSVP's or Tickets – Can we limit ticket sales or RSVP's to 1 per user? #1155749Nico
MemberHi there Mark,
Thanks for reaching out to us!
It’s possible to limit the form selector to just one ticket per submit (here’s a js snippet to achieve this). Adding a more complex logic (just 1 ticket per event per registered user) is possible but that would require custom code on your side. This means we can point you in the right direction and helping out with doubts but not craft this custom code for you.
Please let me know your thoughts about it,
Best,
NicoNico
MemberHowdy Amir,
Welcome to our support forums and thanks for reaching out to us. I’ll help you getting this right!
Before continuing let me point you to the translation resources we have in place:
It’s very likely you stumble upon un-translated string as only 12% of The Events Calendar and 20% of Events Calendar PRO are translated to Hebrew. As you will find the process of contributing translations for our premium plugins is pretty straight forward and I think the best way for you to have more strings translated is to actually submit your translations to the site β http://translations.theeventscalendar.com/projects/tribe-events-calendar-pro/he/default. This way yo won’t have a separate translation set (different from the ‘official’ one) and won’t benefit from future contributions to the plugin translation. At the same time you’ll be helping the hebrew community have a more complete translation π
Regarding the error message ‘(error)’ message that might be coming from a bad translation. Can you please let me know what’s the text in English when you can make it work?
Thanks,
NicoNico
MemberThanks for following up with the complete snippet code!
You can use the tribe_get_city passing the event id as parameter. Internally this function will look for the ‘_VenueCity’ meta just like you are doing which seems to be fine as well, not sure why it’s failing.
This is the actual function code (the-events-calendar/src/functions/template-tags/venue.php line 201):
/**
* City
*
* Returns the venue city
*
* @param int $postId Can supply either event id or venue id, if none specified, current post is used
*
* @return string City
*/
function tribe_get_city( $postId = null ) {
$postId = tribe_get_venue_id( $postId );
$output = esc_html( tribe_get_event_meta( $postId, '_VenueCity', true ) );return apply_filters( 'tribe_get_city', $output );
}
Give this a try and let me know if it works for you, and make sure the events queried actually have a venue with complete address π
Best,
NicoAugust 24, 2016 at 3:07 pm in reply to: Eventbrite “Event Image” is not imported to WordPress at its normal size #1155562Nico
MemberThanks for the follow-up @sparxoo!
You actually just need The Events Calendar and Eventbrite Tickets. Maybe I was a bit vague on where to find this option. You’ll find it in the edit-event screen once the event is in sync β https://cloudup.com/c4Ru0RIcjoV
If you need to force this for all events, I can create a snippet for that.
Please let me know about it,
Best,
NicoNico
MemberThanks for the update Ken!
That’s a great finding, good job. I see you are using ‘Postman SMTP version 1.7.2 by Jason Hendrik’, con you please confirm this is the plugin generating the conflict? If that’s the case I’ll try to reproduce this in my local site and see if I can find the issue.
If you have an staging site can you try with a similar SMTP plugin? Also, are tickets emails actually sent?
Also qtranslate doesnβt display multi lingual windows for portfolio types. So it actually reflects the changes.
Good news indeed π
Please let me know about it,
Best,
NicoNico
MemberThanks for following-up Tien!
Let me start by saying this will sound a bit like an overkill but to enable community submission of tickets you’ll need Community Tickets add-on, which need Event Tickets Plus and WooCommerce. This combo also allows user to sell paid tickets.
Now, if you only want to add one simple RSVP ticket (if the user selects that option) to the event then we can probably do this with a snippet. On the other hand if you would like users to manage more complex RSVP options (like creating different ticket types for an event, setting start and end dates for each ticket, etc) then the Community Tickets + Event Tickets Plus + WooCommerce will be needed. If this is the case I can provide a discount coupon given you actually need a basic feature and not actually the main feature which is to allow users to sell tickets.
Please let me know your thoughts on this,
Best,
NicoAugust 24, 2016 at 11:46 am in reply to: Have rolling calendar OR more than one month event view listing OR both #1155483Nico
MemberHi there Nic,
Thanks for getting in touch with us! I can help you here…
Is it possible to have a rolling calendar view? One where the rows of weeks continually shift upwards, so that you always see the next four weeks or so in advance?
Unfortunately, this is not possible out of the box with our plugins but I guess you can custom code it.
Alternatively, at least have more than one month of event listing below the actual calendarβ¦
This sounds doable for sure. Are you referring to month view or the mini calendar widget? Can you please share a link to it?
Thanks,
NicoNico
MemberHi there Sandeep,
Thanks for getting in touch and for your interest in our products π
Hopefully you can change the location of the RSVP form without using Events Calendar PRO. This knowledgebase article will help you getting it done β https://theeventscalendar.com/knowledgebase/moving-rsvp-ticket-forms/
Please let me know if there’s anything else I can help you with,
Best,
NicoNico
MemberThanks for the heads-up Stuart π
Just let me know if you can work this out!
Best,
NicoAugust 23, 2016 at 4:24 pm in reply to: Event Tickets Plus & WooCommerce Product Pre-Orders #1155121Nico
MemberHi there Regina,
Thanks for getting in touch with us! I can help you here…
Can you describe a bit more what you are trying to achieve here? Are you talking about Early Bird tickets? If this is the case then you can create a new ticket type for the event and just name it Early bird and set a lower price for this ticket type. You can restrict star and end sales date, and also enable global stock for the event so all ticket types share a unique stock (if that makes sense for your event of course).
Please let me know about it,
Best,
NicoNico
MemberHi there Janeane,
Thanks for getting in touch and for your interest in our plugins π
You can actually change these without Events Calendar PRO. Be sure to review the themer’s guide to get more info on template overrides.
You can also find this article interesting β Change the wording of any bit of text or string, and it might help you out as an alternative to creating a template override.
Please let me know if this answers your questions,
Best,
Nico -
AuthorPosts
