Code

Discussion on Stachethemes Event Calendar - WordPress Events Calendar Plugin

Discussion on Stachethemes Event Calendar - WordPress Events Calendar Plugin

Cart 6,885 sales
Recently Updated

Stachethemes supports this item

Supported

This author's response time can be up to 2 business days.

2765 comments found.

Help me please?? cURL error 28: Connection timed out after 5000 milliseconds

I get this error when I want to activate my plugin

Hi,

Perhaps there’s problem with your cURL configuration.

If you provide me with wp-admin access I could activate your calendar manually.

You can send wp-admin credentials to stachethemes@gmail.com

hello, I want to activate my plugin and it says domain does not match, this is the only theme and site the plugin is used on.

Hi,

Please send me your purchase key to stachethemes@gmail.com

also can I also send an email to event attendees to ask them for rating

No, we don’t have such option.

Text alignment can be set from Dashboard -> STEC -> Fonts & Colors settings menu.

hi, can the organizers have account and add their events?

Hi,

You can define in the calendar settings who can add events from the front-end submission form.

You can try it out at our admin demo here:

https://stachethemes.com/wp-demos/tbb/wp-admin/

User/Pass: demo / demo

Hi guys, we have pre-purchase question: Is it possible to have a free event (free bookings) not using woocommerce? Just to collect name and email adress. Something like here https://demo.wp-events-plugin.com/events/nero-2021-01-22/

Hi,

Yes, if you turn on the RSVP function for the event.

Hello,

I have a last question regarding the calendar after finishing the implementation: is there a way to put a ‘back to calendar’ link inside the single event’s page?

Because I see the event takes the single layout page, but I don’t find a way to put a return back to calendar link. Any solution? :)

Example: https://ihteamlingue.it/evento/start-with-team-lingue-20012021-2/ Calendar (where single event should point after user reading): https://ihteamlingue.it/calendario

Thanks!

Hello, thanks a lot for your support, I really appreciate it. I have only one feedback, I see it generates the text but it’s not a link but simple text, this is what I have with copy/past of your code with before_content hook

https://ihteamlingue.it/evento/webinar-aisli-22012021-2/

Thanks a lot :)

Could you send me your exact code you’re pasting?

As you can see in the code the text should be inside tag.

Hello, thanks! I made an error in copy/paste and it’s correctly working now :)

Hi Guys, For the [stec_submit_form] event submission interface, how can I control where the submission notification emails gets sent?

Hi,

By default the notification goes to the site admin email.

You can change the email via filter.

Example:

Place the filter in your theme or child-theme functions.php file:

add_filter('stec_send_event_submitted_admin_mail', function($data){
    $data['to'] = 'your@email.com';
    return $data;
});

Thanks, spot on.

Any way the location , city, etc could be typed in by the person creating the event? I really don’t want users accessing the back end of the site. I’d rather they type in their locations and admins approve once the event is verified.

Hi,

Do you have elementor plugin installed?

If you have it you could create your own event submission template and exclude the location field.

From Dashboard -> STEC -> Builder menu page. Create new event submission form.

In your elementor widgets panel (the panel on the left) you will have new widgets section named “Stachethemes Event Calendar” containing all available elements for the submit form.

After you’ve created your new template go to Dashboard -> STEC -> General -> Event submission tab and selected your new template from the “Template” selector.

If you don’t have it open ticket at https://stachethemes.ticksy.com/ and I’ll provide you with alternative solution.

Thank you for the response, I have submitted a ticket.

I have had an open ticket for 5 days, can you answer my questions please?

Sorry, we are having a medical emergency and are unable to serve support for the next couple of days. Really sorry for the inconvenience we’ll answer all tickets next week.

Can`t activate License! cURL error 28: Connection timed out after 5001 millisecondsNote:

Upon activation or deactivation the plugin will connect to api.stachethemes.com server to validate your purchase key.

Hi,

Please open private ticket at https://stachethemes.ticksy.com

Perhaps your cURL is not configured properly or the server is blocking connection to our api server.

I’ll need wp-admin access to activate your calendar manually.

Hello there, is it possible to show the available RSVP slots for example after an event title ? If so, can you explain how to do this ? Thanks in advance for the feedback and with kind regards.

Hi,

Open your theme/child-theme functions.php file and add following code:

// Stec mod
// Places rsvp slots left below event title
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 !== 'function') {
                return;
            }

            $.stecExtend(function (m) {
                m.$instance.on('stecBeforeReturnEventPreviewHtml', function (e, data) {

                    var event = data.event;
                    var $preview = $(data.temp.EventPreviewHtml);
                    var extraHtml = [];
                    var slots = 0;

                    if (1 !== event.rsvp || 0 < m.helper.getEventState(event)) {
                        return;
                    }

                    slots = m.helper.attendanceHasFreeSlots(event, data.event.start_date.split(' ')[0]);

                    extraHtml.push('<div>');
                        let extraCSS = [];
                        extraCSS.push('padding: 3px 6px');
                        extraCSS.push('border-radius: 3px');
                        extraCSS.push('display:inline-block');
                        extraCSS.push('margin:2px 5px 0 0');
                        extraCSS.push('font-size: 10px');
                        extraCSS.push('text-transform: uppercase');
                        extraCSS.push('color: #fff');
                        extraCSS.push('background: ' + event.color);
                        extraCSS = extraCSS.join(';');
                        extraHtml.push('<span style="' + extraCSS + '">' + slots + ' slots left</span>');
                    extraHtml.push('</div>');
                    $(extraHtml.join('')).insertAfter($preview.find('.stec-layout-event-preview-left-text-title'));

                    data.temp.EventPreviewHtml = $preview.get(0).outerHTML;
                });

            }, 'onAddToEventsPool');

            });
        })(window.jQuery);
    </script>
    <?php
});

Thanks, that works like a charm :-). With kind regards.

I’ve seen that the update doesn’t break the layout anymore …. good job and thanks :-)

Hello!

One question, my client is asking if there’s a way to add a second category filter to the calendar or tags. I see there’s the option to select more categories, but I need something distinct like categories and tags.

I see there’s a featured option which is a kind of second category feature, a feedback by you would be helpful. Thanks!

Yes, in your theme or child-theme functions.php file

thanks again. My last question: is it possible to add different categories for different calendars? ex: calendar 1- cat xyz,abc • calendar 2 – cat efg,hij

Categories are globally available for all calendars.

However, the category won’t be visible on the front-end (in the top menu filters) if no events from selected calendar use it.

Hello there. Version 3.2.2 breaks the (Divi) theme, no error to display but it doesn’t show anything (blank). Roll-back to version 3.2.1 solves this issue. With kind regards.

Hi there, it’s no crash and there’s no error – it simple doesn’t display anything. No stress, take your time :-). Thanks in advance and with kind regards.

One more question … is there a way to add a (custom) field to the RSVP model window like age or something else ? Thanks in advance and with kind regards.

Hi there, never mind my last question – I found your article for custom fields in RSVP (https://stachethemes.ticksy.com/article/16037/) :-).

Hello, I am considering this plugin but does your plugin provide privacy information(GDPR). What data does it collect from visitors and also when a customer register , how can I provide information about what I do with their data “email adress, name, etc…” and how can I get their consent before they submit their registrations. Thank you

Well my point is that before submiting any personel data such as email on rsvp or booking form… shouldn’t it be a consent tick box in the form before the user receive the email. a consent checkbox to the bottom of your booking event submission forms. this must be checked for users to proceed with submitting their data.I am concerned because I live in europe and I need to make sure that I am GDPR compliant with the form.

hello , no answer. Shall i take this as negative answer?

Sorry for the late response.

I’ll look into this. Currently the reminder and rsvp make use of double-opt-in proccess but don’t have checkboxes. These features can be turned off from the settings if you’re concerned. I’ll make sure to include the checkboxes for these two features this week.

The event submission form uses check box and your ToS above.

Booking is handled by WooCommerce so you should check your plugin settings (WooCommerce -> Settings -> Accounts & Privacy)

I need help for PRIVATE TICKET #2650031. It has been a day, so I had to highlight here as well. Thanks.

We’ve just uploaded fix for this (version 3.2.3). It should be available within an hour.

No one is looking at my ticket. It has been 4-5 days.

Sorry for the delay I’ll take a look now.

Hello , I have some pre sale questions:

I have used the stachethemes event calendar wp events demo

1/When I try to set the booking tickets to my event , it did work but only once. Whenever I’d come back to the event, the booking section has gone. How comes ? I have to reset a brand new event to see it applied.

2/Also I have managed to set multi-day Event , with 4 different sessions at 4 different dates . Can I set for any session a specific price for the booking ticket? In my case, my client want to set an event of 4 sessions. He wants either way the user to pay the first session at a cheaper price (like a trial) or to pay the full event in integrality made of 4 sessions.

3/Is there any possibility to just pay a deposit for the event ?

4/ Is there any video to show how to set the payment when a user pay a ticket entrance for the event. Do I have to use only woocommerce plugin or woocommerce booking plugin which is very expensive.

Many thanks

We’ll add checkbox for the rsvp and the reminder this week.

As for the booking – check your WooCommerce -> Settings -> Accounts & Privacy tab.

many thanks :) Last question I believe and then my client will make up his mind . So we find it great to be able to put details of an event schedule. In our case , it will be multiple days events at different times . Is it possible to display this on the sidebar widget upcoming events minimalist (details of the dates and times)? And also can a registrant decide to unsuscribe to an event once he booked? if so how? many thanks

Here’s link to the widget sidebar:

https://stachethemes.com/wp-demos/the-calendar/widget/

Schedule data is not included in the widget.

I believe once woocommerce purchase is complete you will have to contact the shop owner to cancel the purchase.

Can you guys please enable Google Recaptcha V3?

I’ve added your request to my todo list.

Hi Guys, another quick query: On the front-end, it seems that the individual events listed under “Agenda” view is no longer ‘active’. So one can’t click on it to expand and the icons are also inactive. Under the “Month” view, when clicked on a specific date and events appear, then everything is active and works fine. Please advise how to activate under “Agenda” view.

Hi,

May I take a look at your front-end? This isn’t normal behaviour.

You can open ticket at https://stachethemes.ticksy.com/

Hello, I would like to know how to extend or override templates into my theme.

Thank you.

Hi,

Which template you want to override?

view/front/tabs/intro.php

And how can I get the event object in this template?

Please help – it is very slow (UX) – https://exec-edu.ro/calendar/

Hi,

First go to STEC -> General -> Misc and check if you see the option “Events per request”. The default value is 500. If you don’t see this option disable and enable the calendar from Dashboard -> Plugins to refresh its settings.

Additionally you can try to turn off “Ajax Events” option from General -> Misc tab.

Thank you :)

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey