Forum Replies Created
-
AuthorPosts
-
Nico
MemberThis reply is private.
Nico
MemberHey Shah,
Thanks for the follow-up!
Got, you jumping to #2 then. I’m not sure how the shortcodes in SB Welcome work, or if you are able to insert PHP code there, so my suggestion is to input the URL directly like this:
... Username: [user_login]
Password: [user_password]
http://medicalevents.com/events/community/add
That will surely work! If you prefer not to have that hardcoded URL in there, you should look for SB Welcome documentation or ping the author/s about it.
Do you think this can work for you?
Best,
NicoNico
MemberHi Zach,
Thanks for reaching out to us! I’ll help you out on this π
Can you please check out this thread: WooTickets add column to attendees list. There Barry puts together a simple snippet to add data to the attendees list in the back-end.
Please let me know about if this is what you are looking for,
Best,
NicoNico
MemberHey Anton,
Not sure about your last reply, Did the snippet work? Partially?
In case it doesn’t work, Have you tried clearing your site’s cache? It’s also worth trying this with default WP theme and no other plugins active, Can you give that a try?
Please let me know,
Best,
NicoNico
MemberHi Oliver,
Thanks for reaching out to us! I’ll help you out on this π
I’ve tried to re-create this locally -with Berlin timezone also- but it working fine for me. Are you sure you correctly mapped the columns to the fields on the csv file?
In case you are sure the error is not coming from that end, Can you try to change your site timezone to UTC -WP-Admin > General > Timezone- and re import those?
I see you marked this was tested with default theme and no other plugin active, Can you confirm this? Any difference in the import with this settings?
Please let me know about those,
Best,
NicoNico
MemberGlad to hear buddy, it’s a pleasure to help π
Iβll go ahead and close out this thread, but if you need help with anything else please donβt hesitate to create a new one and we will be happy to help.
Best of luck with your project,
NicoNico
MemberHi Shah,
Thanks for reaching out to us, and also for taking the time to fully describe this π Let’s jump into your questions…
#1
Is there any way we can get rid of the first three items (View Event, Add Event, Edit Event) to avoid confusion?
Hopefully there is, just add the snippet below to your theme’s functions.php file -located at wp-content/themes/your_themes/- and it should do the trick:
add_action( 'wp_before_admin_bar_render', 'remove_wp_nodes' );function remove_wp_nodes() {
global $wp_admin_bar;
$wp_admin_bar->remove_node( 'tribe-events-group' );
}
#2
Is there any way that the new registrants goes directly to event adding page?
I think we can find a way around this. How are you customizing the registration email? Surely we can hook in the Community Add Event URL there.
Please let me know about these two,
Best,
NicoPS:
I have solved the problem of login emails not being received by new users for hotmail after a lot of research. Let me know if you want me to send you the details.
For sure, please send it to support /at/ theeventscalendar /dot/ com.
I deactivated woocommerce and Tickets etc. since, it created a lot more problems. Simplify commerce would not accept using community events.
Sorry to hear about this, if you would like to receive support for this please create a new thread and someone in the team will be happy to assist you on it.
Nico
MemberHi Anton,
Thanks for the follow-up once again!
Can you please try with this code? Paste it in your functions.php file – wp-content/themes/your_theme/ – and change ‘Events’ for it’s appropriate Russian translation.
add_filter( 'tribe_event_label_plural', function () { return 'Events'; } );
Please let me know if it works for you,
Best,
NicoNico
MemberHey Tony,
Thanks for the follow-up! I’m sorry that didn’t work it was my bad π tribe_event_link function echos the link, so you should use tribe_get_event_link to get that instead. Here’s the updated snippet:
add_action( 'tribe_community_event_created', 'notify_organizer' );function notify_organizer ( $event_id ) {
$email = tribe_get_organizer_email( $event_id );if( !empty($email) ) {
$subject = 'Hey Organizer';
$message = 'Just wanted to let you now about a new event: ' . tribe_get_event_link ( $event_id );wp_mail( $email, $subject, $message );
}
}
PLease try it out once again and let me know,
Best,
NicoNico
MemberHey @flamencoagenda,
Glad you could find the way around it. Sorry if my instructions weren’t clear enough, luckily you received a good advice -it’s another way of achieving the same- π
Iβll go ahead and close out this thread, but if you need help with anything else please donβt hesitate to create a new one and we will be happy to help.
Best of luck with your project,
NicoNico
MemberHey Stephan,
Thanks for following up, and no problem with the delay. I see the error now and my guess is you pasted the code after the PHP closing tag, sorry if my instructions were not clear enough. Just to be sure we get this right this time I’ve uploaded the modified template for you to copy it into your theme.
Just replace the content of the template override file you created at ‘wp-content/your_theme/tribe-events/community/modules/venue.php’, with this code:
https://gist.github.com/niconerd/f923cbccf6a9252c1642
Save, test and let me know π
Best,
NicoNico
MemberHi Dwayne,
Thanks for the follow-up, and sorry to hear that the map view isn’t working yet π
Can you confirm you tested this with default WordPress theme and no other plugins active? That’s not what I’m seeing in the URL you shared but maybe you tested and then made further changes to the site. What I’m seeing now in that URL is a JS conflict which you can see in this screenshot: https://cloudup.com/cBaSqslB_TC. Next step would be to solved this conflict and see if that makes the Map View work.
Please check on that and let me know,
Thanks,
NicoNico
MemberHey Erwin,
Glad to hear pal π
Iβll go ahead and close out this thread, but if you need help with anything else please donβt hesitate to create a new one and we will be happy to help.
Best,
NicoAugust 6, 2015 at 7:28 pm in reply to: Updated The events Calendar and Pro plugin uninstalled #994098Nico
MemberThanks Aoife,
I thought you were talking about the Download section at our site π I get you know.
Please review this article explaining how to Manually Update the plugins. Note that deleting/replacing the plugin files won’t delete your events or settings. This process solves most of the updating issues.
Please let me know if you can manage to update it manually,
Best,
NicoNico
MemberHey Sarah,
Thanks for the follow-up! I clearly get you know.
Can you please try to test this with WordPress default tweentyfifteen theme and no other plugin active apart from our’s? Another thing worth trying is to set WordPress timezone to UTC, because this seems to be an date/time offset.
Also, did you notice this after updating our product or after making any changes to the calendar configuration?
Thanks for your patience on this,
Best,
Nico -
AuthorPosts
