2765 comments found.
Hello, As an organizer in an association, I am interested in your plugin for free events. 1 / Can the event organizer easily retrieve the list of registrants and how? with all the details (name, first name, email, phone)? is this list easily printable? 2 / Can we attach an attachment other than a ticket with the acknowledgment of receipt following an event reservation? Best regards.
An extra question : For a reservation, is it possible to show the maximum number of registrants and the remaining places? Can the names of the registrants be visible to all? Many thanks.
Hi,
RSVP list can be exported in a CSV file from Dashboard -> STEC -> Export Events menu.
The CSV contains following fields:
Event ID,Event UID,User ID,User Name,People,Email,Invitation Sent,Status
Upon RSVP the user receives an email that can be edited to include additional information. The emails are edited from Dashboard -> STEC -> General -> Email Notifications
Front-end Attendance tab displays “Places left” and attendees’ name and how many places they’ve reserved.
You can try the admin demo of the calendar here:
https://stachethemes.com/wp-demos/tbb/wp-admin/user/pass: demo / demo
Ok. Thanks for your answer.
Hey, what I’ve seen comments about Dokan integration. But actually WCFM is better and more popular, what do you think of integration with a marketplace?
Hi,
I’ll give it a try and see if it’s compatible.
REDACTED
Yes
Is it possible to create an event that repeats for example 4 times but has specific dates, December 1, 2020, January 3, 2021, February 7, 2021 and March 4, 2021.
Then is it possible to mark canceled on an event?
jpg@expertrobert.chHi,
It’s possible although you may have to use the advanced option for this.
Yes, you can mark the event as Scheduled, Postponed, Moved Online and Cancelled.
I noticed you had multi site on one of your lists… can I sync across two platforms or just use the embed code?
No, there’s no sync between multi-sites.
Hi, another question. Is there possible to export the data of the booking events? I want to know hoy many people is booking to the events and in which time schedule.
Hi,
There’s option to export the booking info to CSV but currently these are the fields that will be exported:
Event ID, Event UID, Product ID, Title, SKU, URL, Purchesable, In Stock, Quantity, Quantity limit per Event, Price, Currency, Total Sales
I’ll see if we can include the time schedule as well in future update.
Hi there, I have an event which repeats daily and a for this event I create a ticket. Is it possible that to limit only 15 tickets for each day of the same event?
Yes, check in Dashboard -> STEC -> Tickets -> Add / Edit Ticket
“Quantity limit per event occurrence” field
Thanks a lot
Is it possible within the plugin to display one calendar (and/or event) per user and only the associated events? Or could this plugin able to handle that users only access events what the admin associated with their profile?
In fact, it’s important that a user can only see their own events once they’ve logged into their account and we as admins can upload those events to them.
Hi,
If you set the event’s visibility to “Just me” and assign the event’s author to certain user, only they (and the superadmin) will be able to see and edit this event.
Hello. When used in buddypress does the event image post to the activity feed automatically with a description as well?
And does it also put an add event tab on user profile or groups? I am using Youzer. Thank you.
Hi,
When you submit an event in your activity it would display “Submitted an event” with the event title and link to the event’s page.
Example from out admin demo site:
https://stachethemes.com/wp-demos/tbb/members/demo/activity/It doesn’t put “add event tab” at least for now. We’ll see to add more features like this in the future.
Hello,
We have a nursery for kids, where parents want to be able to book multiple days in advance, which are then paid for immediately.
Is that something you can do, i.e., specifically, a workflow which allows the user to select multiple days from a single view, which then proceeds to payment, etc.?
Hi,
You can create an event and attach a ticket to it. This way your customers will be able to book for this event.
The payment is then processed via WooCommerce.
You can give it a try on our admin demo here:
https://stachethemes.com/wp-demos/tbb/wp-adminUser/Pass: demo / demo
Hi there, with Open Street Maps, markers are no longer showing on the map… They do appear when using Google Maps though. Any ideas?
Hi,
Make sure front-awesome is not disabled from Dashboard -> STEC -> General -> Misc tab
Currently to sell tickets for events we are using Woocommerce products with variations (the date of the event is the variation name). What is missing is a nice calendar with all events so we are looking for a solution.
It seems like that all ticket plugins require to fill in the event information in the ‘events’ part and that the Woocommerce product page is not used anymore. Is that right? I don’t want to say goodbye to my Woocommerce product pages because they do rank really well (and a redirect is a tricky thing).
So can I just add events/tickets to a Woocommerce product and that people can select the preferred date in the Woocommerce product page? So they add the tickets from the product page to the shopping cart?
Or you always have to do that through the Events page (in the Woocommerce tab).
If both are possible it will be even better.
Hi,
Calendar tickets can be purchased only from the calendar itself or the events’ single page.
You can’t add it to your Woocommerce products’ page because the meta data (the event and event dates) will be missing.
Is there a possibility to set the contact-mail and phone-number to the confirmation-mail? .. e.g. -> {{attendee_phone}}
Which email template are you talking about exactly?
Notify author when new attendee has been added via RSVP
What’s the name value of your phone number field?
<input type=”text” name=”attendee_phone” placeholder=”Telefon” />
In your theme / child-theme functions.php file add following filter:
add_filter('stec_send_event_author_new_attendee', function($data, $event, $attendee) {
add_filter('stec_mail_add_special_words', function($filter, $text, $event) use ($attendee) {
$filter['replace'][] = '{{attendee_email}}';
$filter['with'][] = $attendee ? $attendee->get_email() : '';
$filter['replace'][] = '{{attendee_phone}}';
$filter['with'][] = $attendee ? $attendee->get_custom_data('attendee_phone') : '';
return $filter;
}, 10, 3);
return $data;
}, 10, 3);
Then in your template you should be able to use {{attendee_email}} and {{attendee_phone}}
great work. thx
Hi again.. mail is working – phone not
in the past you gave me this to include in function.php:
/* * This code intercepts the custom fields when the form is submitted * \Stachethemes\Stec\Admin_Helper::post is same as $_POST[...] but returns default value (false) if !isset */ add_filter(‘stec_rsvp_to_event_before_add’, function(\Stachethemes\Stec\Event_Meta_Attendee $attendee) { });
$phone = \Stachethemes\Stec\Admin_Helper::post('attendee_phone', false);
if ($phone) {
$attendee->set_custom_data('Phone', $phone);
}
return $attendee;
/* * This code will display the customs fields in the admin area * When clicking on attendee edit button */ add_action(‘admin_footer’, function() { ?> <script type=”text/javascript”> (function ($) { });
$(document).on('stecOnAdminAddAttendee', function (e, data) {
</script>
<?php
var attendeeIndex = data.$attendee.index('.stachethemes-admin-attendance-list-attendee');
$.each(data.attendee.custom, function (key) {
var customHTML = [];
var inputKeyName = 'attendee' + attendeeIndex + '[' + key + ']';
customHTML.push('' + key + '
');
customHTML.push('<input class="stachethemes-admin-input" type="text" name="' + inputKeyName + '" value="' + this + '" />');
$(customHTML.join('')).insertBefore(data.$attendee.find('.edit a[data-action="update-attendee"]'));
});
});
})(window.jQuery);
Are there any errors?
I’ve just tested the function locally and it works for me.
Could the problem be a typo?
there are no errors. in admin-area the data is shown. – only in the notification-mail there is nothing. {{attendee_email}} works and is displayed in the mail.
I’ve just reviewed the code I’ve sent you previously and noticed the custom data name value is Phone not attendee_phone…
Here’s the updated filter:
add_filter('stec_send_event_author_new_attendee', function($data, $event, $attendee) {
add_filter('stec_mail_add_special_words', function($filter, $text, $event) use ($attendee) {
$filter['replace'][] = '{{attendee_email}}';
$filter['with'][] = $attendee ? $attendee->get_email() : '';
$filter['replace'][] = '{{attendee_phone}}';
$filter['with'][] = $attendee ? $attendee->get_custom_data('Phone') : '';
return $filter;
}, 10, 3);
return $data;
}, 10, 3);
Pre-sale question. 1. Can this plugin work with the Dokan marketplace? Every “seller” will manage his calendar 2. I have video post type with title, description, and movie length. Can I drag and drop videos into my calendar? 3. Is there an auto option to fill the calendar with custom post types?
1. Sorry, I haven’t tested Dokan but if it’s WooCommerce driven then it should work.
2. You can attach videos to your events in the event’s description as html elements.
3. Calendar supports only its own custom post types stec_event
Can this pull events from facebook?
You can import ics files from facebook.
Here’s guide how to export your Facebook events:
https://www.facebook.com/help/work/897976446932009i have renewed my support but cannot reply in support site due to it is saying that my support is expired.
Could you try again please?
Still does not work my ticket id is: #2375813
I’ve refreshed your ticket. Try once more time please.
Hello! some pre sale question:
1) Can I use Rewards Points with the plugin? How? 2) Can I have different prices in events to user types (Subscriber, Public) or the Admin apply discounts only to Subscribers? (example: Event $100 to public, $20 to susbscribers) 3) Can I show the events by categories and subcategories? 4) Can I import data to plugin from another platform (opencart)?
Thanks!
Hi,
1) If your WooCommerce has such functionality (perhaps via custom plugin) then it should be possible since all calendar products are processed via WooCommerce.
2) You can display different tickets with different price depending on the customer role (subscriber, admin, public etc…)
3) Yes by categories. There are no sub-categories at this point.
4) I don’t think so. Perhaps you could migrate your other products to woocommerce but tickets must be created via the calendar -> tickets menu because they are custom product type.
Hi, is it possible to add a custom field “Phone” to the RSVP-Form?
Hi,
Please open ticket at https://stachethemes.ticksy.com/tickets/ I’ll send you an example.
I’m attempting to import plugin settings from my staging site. I’ve exported a backup file from “Backup Settings” from staging, which downloads to my system with the file extension .stec.txt.
When I attempt to import on my production site, I get the error “File extension is not .stec” I’ve tried deleting the .txt from the file name (leaving the .stec extension) but I get the same error. What am I doing wrong?
Hi,
The file should end with just .stec not .txt
Yes, but as I mentioned, when I remove the .txt and leave the .stec file extension, I’m getting the same error.
Could you open ticket at https://stachethemes.ticksy.com/tickets/ and send me your file to take a look?
Thanks for the offer, but I tried this again on a different computer and it worked fine. It’s weird, but I guess there’s no problem here after all.
Hi, hope you’re fine. I have a problem when I read the QR code generated after a user makes a ticket purchase and it sends me to a link that says “Calendar notification – No Tickets Were Found in This Order” I don’t know why is this happening. Can you help me? Thanks
Hi,
Could you open ticket at https://stachethemes.ticksy.com/tickets/
and send me a screenshot of the qr code?
I’ll need wp-admin credentials as well to take a look at the order.