2765 comments found.
I’m Interessed to buy the plugin but i have one question : is-it possible to reuse the guests (keep it in memory when you create one).My website has many guest who are présents at many events
The guest feature is really interesting for me… only if i don’t have to create them each time 
Thank you
Hi,
At the moment only organizers and locations are stored separately as they are often reused.
Most likely the guests section will follow if not this update then the next one.
Hello, i in interessting in buying this plugin but need first to hame some clarifications: 1 – is it possible to display like 15 events in a day? 2 – i would like to customize the link for each event and display simple article instead of event detail? 3 – Can i filter by categories and sub-categories ? 4 – Can i add one time the same event but for differents dates like 3 times per a year ? Thank you so much.
Hi,
1) It is possible.
2) It is possible. In the admin Add/Edit Event page -> Introduction tab there’s external link option. You can set the link and text there.
Then from General settings set “Open Events In” to “External link”.
3) Only by categories. There are no sub-categories at the moment.
4) There’s built-in repeater for the events.
There’s online admin demo where you can test the calendar.
Link to admin demo: https://stachethemes.com/wp-demos/tbb/wp-admin/
User/Pass: demo / demo
CAn you please respond to my tickets? I have a very urgent project and I am having some issues with a few things.
PUBLIC TICKET #2531240
PRIVATE TICKET #2530911
PUBLIC TICKET #2530863
Hi, is there any way to show the main event image in the background of the calendar day? Like this example: https://i.gyazo.com/1109101ccdc7d56e333987172281ae7f.png (on the left what I want, on the right what I see in your demo)
Thanks!
Hi,
That’s very specific and requires certain conditions in order to look ok so it’s not built-in the calendar by default.
It’s possible to do it via custom filter though.
The filter:
add_action('wp_footer', function() {
global $post;
if (!is_a($post, 'WP_Post') || !has_shortcode($post->post_content, 'stachethemes_ec')) {
return;
}
?>
<script type="text/javascript">
(function ($) {
$(function () {
if (typeof $.stecExtend === 'undefined') {
return;
}
$.stecExtend(function (m) {
if (m.glob.options.view === 'month') {
m.$instance.$month.find('.stec-layout-month-daycell-image').remove();
}
}, 'onLayoutSet');
$.stecExtend(function (m) {
if (m.glob.options.view === 'month') {
$.each(m.$instance.$month.find('.stec-layout-month-daycell-events').filter(':not(:empty)'), function () {
let $container = $(this).parents('.stec-layout-month-daycell-wrap').first();
let event = m.calData.getEventById($(this).find('.stec-layout-month-daycell-event-start:first').data('id'));
let imageSrc = '';
let $image = '';
if (!event.images || event.images_meta.length <= 0) {
return true;
}
imageSrc = event.images_meta[0].thumb;
$image = $('<div class="stec-layout-month-daycell-image" />').prependTo($container);
$image.css({
backgroundImage: 'url(' + imageSrc + ')',
backgroundSize: 'cover',
position: 'absolute',
width: '100%',
height: '100%'
});
});
}
}, 'afterFillEvents');
});
})(window.jQuery);
</script>
<?php
});
Hello,
When I go to Go to Dashboard -> St. Event Calendar -> General -> Single Page tab. There are no options.
I have deactivate and reactivate the calendar to refresh the settings but nothing happens, still doesn’t show nothing.
Hi,
If your version is 3.0+ it should display single page settings.
Check your browser console for javascript errors on that page.
Why pre-sale questions are left unanswered?
Hello,
With the newest update of the plugin I can’t find this file:
stachethemes_event_calendar\assets\js\front\caldata.js
By default the calendar looks 12 months ahead for upcoming events but in this file I could have change it for as many months ahead as I wanted to.
Where can I find this options now ?
Greetings
Hi,
Use shortcode attribute future_months_ahead={MONTHS}
[stachethemes_ec future_months_ahead=24]
So cool it’s in a shortcode now, thank you very much 
Hi, can I achieve the following with this plugin:
1. Create an event with countdown timer
2. Show count of registered people and spaces left
3. Once there are no spaces left, allow user to RSVP or add to waitlist before the end date
4. Display a simple registration form that takes name, phone, email, number of spaces, and message
5. Hide Time and Location ( Optional)
Our events are online we only need users to register and get an email with all the necessary details.
If any of the functions above doesn’t currently, exist but can be customised at an extra cost, please specify the price range. Thank you
Hi,
1) Yes as seen in the demo
2) Attendance tab dispalys places left on the front-end and who will be attending.
3) No, sorry.
4) The RSVP popup by default requires Name, Email and Places to reserve. The other options can be inserted via wordpress filter.
5) If you set the event to “All Day” the time will be hidden. Location by default is optional.
You can check the admin demo and see if it fit your needs.
https://stachethemes.com/wp-demos/tbb/wp-admin/User/Pass: demo / demo
Unfortunately we don’t offer customizations.
You can check https://studio.envato.com/ for custom work.
I like the plugin compatibility with Elementor and styling but I never can get it to make it do the same thing as in your demo here https://stachethemes.com/wp-demos/the-calendar/agenda/
I have tried following the documentation, created a calendar, event and tickets to show the tickets limit. But when I save and go to view, nothing shows up. Can you please send me how do to create an event and make visible just like the way you have on your demo or at least update your documentation to have a step by step guide. Thank you
Hi,
Please open ticket at https://stachethemes.ticksy.com/tickets/ and provide me with link to the front-end to take a look.
I’ve had problems with mobile after the update. Events are not clicking and giving a jquery error. For this, I downloaded both my csv and ics backups. I canceled the keep data mode, deleted and reinstalled the plugin. Mobile problem is still ongoing and I ran into another problem. I’m trying to upload the backup I got with CSV and it always looks like 0. When I upload the backup with ICS, this time my data in the timeline does not appear and my mobile problem still continues. Before the update, everything was working perfectly. How can I solve this?
Hello, bevore I will buy. 1. Is it possible to show two different calendars in one the widget or Sidebar? 2. Is it possible to set the number of events shown? 3. Is it possible to define a distance between the events in the Box Grid? 4. Is the single event page just like the other blog pages? With Sidebars, Counters, and so on?
Thank You.
Hi,
1. Yes, you can specify which calendar you want to display via shortcode attribute cal=... example:
[stachethemes_ec cal=1] [stachethemes_ec cal=1,2,3]
Also standalone widget for sidebars will be coming next week.
2. In Agenda, Grid and Box Grid views you can limit the events by shortcode attributes.
[stachethemes_ec agenda_get_n=3] [stachethemes_ec grid_per_click=3] [stachethemes_ec boxgrid_per_click=3]
3. Only Grid view at the moment. I’ll see if I can add gutter option in the next update for the box grid view.
4. Events’ Single Page uses your theme single page template layout.
Hey, thats great,
And are events that are over invisible?
If you set in the shortcode upcoming_only=1 attribute they won’t be, otherwise they will remain visible.
Thank You
I bought these calendar for a project three years ago, but never managed to use. I am thinking of it using again, but my license no longer works. Is it possible to clear it?
Also, my project involves tracking over a number of years an exploration expedition. Is it possible and easy to set up calendar events in the 1800s and can you set the calendar to default open to a day 200 years ago?
Hi,
Send me your license key to stachethemes@gmail.com and I’ll reset it.
To start the calendar in specific date you can use the “start_date” attribute. Example:
[stachethemes_ec start_date=1800-01-01]
Ok, thanks! Sent from prayaga.org@gmail.com
i have small problem. sent mail sir.
Hi,
Please open ticket at https://stachethemes.ticksy.com/tickets/
i fixed sir thank you so much
5 stars pllugin.
Hey, sorry to bother again, just some questions:
1. So the new front end builder need elementor free plugin installed and active after this update? Can you also show via elementor woocommerce products in the frontend event builder?
2. Will you also support gutenberg as an alternative to elementor? Maybe next update? I know you think elementor is better, but gutenberg is faster and doesn’t add lots of DOM elements…
3. Will you also adress a more in-depth integration with woocommerce in next update? I mean a way to get woocommerce products or categories in the event page through event front-end builder (not only tickets) – this is somehow related to the question above, as this can easily be done through woo (gutenberg) blocks…
Also, another integration is related to the woocommerce “client” type of wordpress account, to be more integrated with the calendar (for example some fields’ values to be easily importable in the event builder – ex the email or phone or other values can be pre-filled via the client account values).
If you also consider these changes, when do you think they’ll be live in your plugin (an ~ ETA)?
Thanks.
1. After the 3.0.9 update the old builder is gone. To build pages you’ll need elementor installed. Single Page builder has “Shop” widget element that displays the products added to the event.
2. Once we’re done with elementor, yes. You will be able to switch between the two builders.
3. Shop page is planned for complete re-design.
In variables where predefined values can be set (like emails) we’ll do so.
ETA is too early to tell.
Hi,
1) Do you support WPML?
2) Can we turn-off tabs in single event page?
3) Can I install and use this theme without woocommerce. I do not want to sell anything right now.
4) How this affects speed? Any gtmetrix, pagespeed data?
5) Is this compatible with SEOPress and WP-Rocket?
Best
Hi,
1) Yes.
2) Yes via Elementor or via wordpress filters.
3) Yes, WooCommerce is optional.
4) Not measured.
5) Yes, although you may have to exclude the javascript compression of the plugin files in your wp rocket settings.
Hello,
I believe your plug-in is almost everything I need. But I have a small problem now. I have seen that it is possible to have 2 different kind of tickets (children and adult). But I have set the attendance on max 18 persons. But I can order 18 tickets for adult and 18 for children. How can I fix that? So it’s only possible to buy 18 tickets.
If someone buys 16 adult tickets and 2 children tickets the event is full. But now I can order 18 tickets of both.
Best regards. Michel Rikkert
Hi,
We’ll address this in future update after the elementor update next week.
I have the following Pop Up message : “Internal Server Error” after Submit Event Details, How to fix this, thanks
Open your wp-config.php and turn on the debugger:
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true);
Then check the debug.log file in wp-content folder for the error.
Hello! I see you mentioned smth about Elementor above. Will you plugin need elementor to work? Why not integrating gutenberg as it’s less resource (database queries) dependant? Sorry to bother, just wanted to understand what you are planning for the next update, which btw is it coming soon? Thanks 
Hi,
Elementor will not be required in order to run the calendar. It’s extra for those who want to customize things.
Elementor will only be needed if you want to customize the Single Page and the Event’s Submission Form.
Note: you don’t have to buy the Elementor Pro version. The free version will be sufficient.
Gutenberg builder will most likely come after Elementor.
The reason for implementing elementor is in my opinion currently this is the best builder out there.
The update is nearing final stage. Can’t give you ETA but will be this month for sure…
it’s possible change the GIF for Event preload?
Only via modifying core files ( wp-content\plugins\stachethemes_event_calendar\view\front\default.php lines 5-9 and wp-content\plugins\stachethemes_event_calendar\assets\css\front\style.css lines 4738 – 4849)
Ok, Thank you! In the future could you open the editing on dashboard Wp 
Hi, I used Loco Translate. I can’t translate some words of the plugin Stachethemes Event Calendar … like some Words in the page for added front-end an event: Event Details, or another titles … I translated the single words: “Event” and ” Details ”...but nothing. You can see here: https://prnt.sc/tt9uue
Hi,
This text is coming for the builder submission page and it’s not translated via Loco.
To edit the text edit the Event Submission Form from the Dashboard -> St. Event Calendar -> Builder
Ok, thank you. I edited the “Default” project. And the plugin created a new project, i renamed this in “Scheda Eventi – API” but when i open the editing event in front-end, my project is not active but there is the Default with the titles in english language. How I set my project like default for my events?
OK i just read the private ticket, sorry! For other people the reply is: “After you’ve created your own Event Submission Form make sure to change the default template from General settings -> Event Submission Form tab -> Default form.”
Thank you! Best regards
When I make a new page and put a calendar inside I get this message to the console and the calendar dows not appear
Uncaught (in promise) TypeError: moment.tz is not a function at Object.<anonymous> (caldata.js?ver=5.3.2:125) at Function.each (jquery.js?ver=1.12.4-wp:2) at window.StecCalData.proto.addToEventsPool (caldata.js?ver=5.3.2:124) at stec.js?ver=5.3.2:5515 at new Promise (<anonymous>) at StachethemesEventCalendar.prepareEvents (stec.js?ver=5.3.2:5514) at StachethemesEventCalendar.init (stec.js?ver=5.3.2:5805) at Object.<anonymous> (stec.js?ver=5.3.2:5849) at Function.each (jquery.js?ver=1.12.4-wp:2) at a.fn.init.each (jquery.js?ver=1.12.4-wp:2)
any answer????
The calendar uses moment.js and moment-tz.js (Timezones addon) libraries.
Your website is loading secondary moment.js library without the moment-tz.js addon and this causes the crash.
Make sure your plugins and the theme is loading the wordpress’ included moment.js library. It’s been shipped with wordpress for some time now…
Example how to load the moment.js library properly:
wp_enqueue_script('moment');
The version of the wordpress I use is 5.3.2. that should be compatible according to your specs. To update to the 5.4.2 I need to change the php version of my server to 7.4 and this will be done after september. So I would like to ask if there is a quick fix I could use to solve this for now
I’ll need wp-admin credentials and link to the front-end to take a look which plugin is loading the secondary moment library.
You can PM to stachethemes@gmail.com