Okay

Public Tickets

intel Prevent guest to change/edit en event they didn't created.Closed   Stachethemes Event Calendar   Updated June 15, 2021 at 1:31pm   6 Most recent comment from Zhivko Bozhilov:This filter will allow only event authors to edit their own events. add_filter('stec_user_can_edit_event', function($default, $event) {          // prevent non logged in users to edit ... Andres Bustamante I need that the wordpress users can be the event organizers in event calendarClosed General Information   Updated June 11, 2021 at 12:39pm   2 Most recent comment from Zhivko Bozhilov:Hi,No, the separate organizers list is required.However, I could provide you with a custom hook that will automatically add the event author as organizer.Code attached.You can place it in your theme o ... Dan Gaiser multiple email addresses (Cc) for rsvpClosed   Stachethemes Event Calendar   Updated June 11, 2021 at 12:34pm   2 Most recent comment from Zhivko Bozhilov:Hi,Yes, via headers filter in your theme/child-theme functions.php file.Example: add_filter('stec_wp_mail_headers', function() {     $headers   = [];    $headers[] = 'Cc: copy_to_ ... javiercastilloc hide field when adding events from front endClosed   Stachethemes Event Calendar   Updated June 10, 2021 at 12:42pm   4 Most recent comment from Zhivko Bozhilov:I've attached a modified file of the default submit form.Unzip the file and place it in your theme or child-theme main folder.This way it will override the default calendar submit form. javiercastilloc translations of textsClosed   Stachethemes Event Calendar   Updated June 7, 2021 at 5:03pm   2 Most recent comment from Zhivko Bozhilov:Hi,There should be no problem translating the calendar with Loco Translate plugin.The new version feature will affect the dynamic content of the calendar like the events.Currently, translating the dyn ... javiercastilloc Plugin functionalitiesClosed General Information   Updated June 5, 2021 at 7:19pm   3 Most recent comment from javiercastilloc:I understand, thank you very much! Dan Gaiser Integrate iCalendar RRULE Repeater Options (BETA) in Event SubmissionClosed   Stachethemes Event Calendar   Updated June 4, 2021 at 4:10pm   4 Most recent comment from Zhivko Bozhilov:Hi Dan,We don't want to rush it. The code is being rewritten from scratch so it will take a couple of months. Hellomarketingnl counter doesnt workClosed   Stachethemes Event Calendar   Updated June 2, 2021 at 5:30pm   2 Most recent comment from Zhivko Bozhilov:Hi,Is the order set as "completed" ?Have you edited the ticket after customers purchased the ticket? Emelia Remove Image from Grid ViewClosed   Stachethemes Event Calendar   Updated May 31, 2021 at 3:46pm   2 Most recent comment from Zhivko Bozhilov:Hi,Open your theme or child-theme functions.php file and apply following filter: add_filter('stec_event_get_front_data', function($data) {        $data['images'] = [];    $d ... colorcoder Changing the Hover TextClosed   Stachethemes Event Calendar   Updated May 31, 2021 at 3:11pm   13 Most recent comment from Zhivko Bozhilov:1) Place following code in your theme or child-theme functions.php file: add_action('wp_footer', function() {    if ( !wp_script_is('stec-js') ) {        return;    }    ... Emma Display Featured Event first in listClosed   Stachethemes Event Calendar   Updated May 31, 2021 at 1:56pm   3 Most recent comment from Zhivko Bozhilov:As an alternative you could display featured only events in second calendar like so: [stachethemes_ec featured_only=1 view=boxgrid] Augustus Crosby Batch Edit?Closed General Information   Updated May 31, 2021 at 7:25am   1 Most recent comment from Augustus Crosby:Hello, when I import/sync from Google Calendar (via iCal URL), not all the event info is in the event, I figure because of how simple Google Calendar and event creation is. The problem is that all the ... Emma Placeholder for imagesClosed   Stachethemes Event Calendar   Updated May 27, 2021 at 3:42pm   2 Most recent comment from Zhivko Bozhilov:Hi,Yes, via filter.Open your theme or child-theme functions.php file and place following hook: add_action('wp_footer', function() { if ( !wp_script_is('stec-js') ) { re ... Wolfram von Gagern incorrect date formatsClosed   Stachethemes Event Calendar   Updated May 21, 2021 at 1:13pm   5 Most recent comment from Wolfram von Gagern:Thank you! mel8twelve Display By MonthClosed   Stachethemes Event Calendar   Updated May 21, 2021 at 9:07am   2 Most recent comment from Zhivko Bozhilov:Hi,Sorry for the late reply.Unfortunately, the option requires year to be set. February have different amount of days depending on the year and without year it will most likely produce bugs.