Reply to: tickets(378380)

Because eventON is passing the L2 value correctly into AJAX to get events that have L2 value set to. But it is not returning any event posts because something is being done which stops returning those event posts. 

Reply to: tickets(378380)

Hello Karine, I am also hoping it is something we can fix from EventON. But I am not finding any ways how to. 

If you look the calendar when we set to load events without AJAX at first, the march events load fine. But when you switch event using AJAX, it doesnt load the correct events. 

It seems to me like, when ajax is called, what is put out is controlled by the polylang. the wp-query. Would it be possible for you to get an answer from polylang team to see if they modify wp-query when ajax is running?

Reply to: tickets(383030)

Hello Sally,

So with #2, what you are looking for is user RSVP be saved as draft before it can be approved or not > then send confirmations. — as Dave mentioned it is not supported at the moment. We could potentially get this built for you as I can see this could be very useful for others as well.

3. With regards to CRM. You have several options.

Webhooks:

  • The RSVP Addon supports webhooks (since EventON 4.2), which send HTTP POST requests with RSVP data (e.g., attendee details, event ID, RSVP status) to an external endpoint when an RSVP or check-in occurs.
  • Set up a webhook endpoint in Dynamics 365 (e.g., via Azure Functions or Power Automate) to receive this data and map it to contacts, leads, or custom event entities.

API Addon

  • Use the EventON Event API Addon to pull event and RSVP data in JSON format via REST API calls.
  • Leverage Dynamics 365’s Web API to push this data into Dynamics and retrieve CRM data if needed.

CSV Export Import

  • Export RSVP attendee lists as CSV files from the EventON backend.
  • Import these into Dynamics 365 manually or via a scheduled Power Automate flow.

#4 QR Code Addon  – You can use our QR Code addon to check-in customers. We are also working on a new addon called “Check-ins” Which will give you a front-end page to easily search attendees by their name and mark them in. It adds a bit of human interaction compared to QR Code checkin. eg. The person at the door asking “Can I get your last name” vs hold QR Scanner scan “Good to go”. 🙂

This addon, we are hoping to get it out by this week.

Let us know if you have any other questions.

Reply to: tickets(383324)

and eventon-action-user/includes/class-functions.php

// …
// delete button html
$delete_html = (!$this->can_currentuser_delete_event($EVENT))?
”:”<a class=’fa fa-trash deleteEvent’ data-eid='{$event_id}’></a>”;
$delete_html = apply_filters(‘evoau_event_manager_delete_btn’, $delete_html, $EVENT);
// — MODIFIED Stephan 31.03.205 — START
$DateTime = ”; // Default empty
$fresh_srow = get_post_meta($event_id, ‘evcal_srow’, true);
if (!empty($fresh_srow) && is_numeric($fresh_srow)) {
$wp_time_format = get_option(‘time_format’);
$wp_date_format = get_option(‘date_format’);
$DateTime = date_i18n($wp_date_format . ‘ ‘ . $wp_time_format, (int)$fresh_srow);
// Optional: Log if needed: error_log(“Event ID: {$event_id} – Using direct formatting for list. DateTime: {$DateTime}”);
} else {
// Fallback if fresh meta is not available (should not happen ideally)
$DateTime = $EVENT->get_formatted_smart_time();
// Optional: Log if needed: error_log(“Event ID: {$event_id} – Fallback to EventON formatting for list.”);
}
// — MODIFIED Stephan 31.03.205 — END
// if event is featured
$feature_event_tag = evo_check_yn($ePmv, ‘_featured’)? “<i class=’fa fa-star’ title='”. evo_lang(‘Featured Event’) .”‘></i>”:”;
// …

Reply to: tickets(383325)

am so sorry – it was a user problem – i had not activated the plugin!

 

https://helpdesk.ashanjay.com/

Reply to: tickets(383324)

These are the tempory fixes in /eventon-action-user/ we use locally to resolve the bug:

assets/js/au_script_f.js

if(data.status==’good’){
form.find(‘.inner’).html(”);
// show success msg
form.find(‘.evoau_form_messages’).html( data.success_message_html );
formp.addClass(‘successForm’);

// — START OF ADDED CODE —
// Reload the event list in the manager
var MANAGER = $form.closest(‘.evoau_manager’); // Get the manager container relative to the form
if( MANAGER.length > 0 && typeof load_manager_events === ‘function’ ){ // Check if manager exists and function is defined
load_manager_events( MANAGER, ‘none’);
}
// — END OF ADDED CODE —
// redirect page after success form submission

if(form.attr(‘data-redirect’)!=’nehe’){…

includes/ajax.php

// … inside function get_paged_events() …
            $next_page = $FNC->get_next_pagination_page( $atts);
            // — START OF MODIFIED LINE —
            // no next page – BUT only exit if a direction was actually requested
            if( $atts[‘direction’] !== ‘none’ && $next_page == (int)$_POST[‘page’]){
            // — END OF MODIFIED LINE —
                echo json_encode(array(
                    ‘status’=>’same_page’,
                    ‘next_page’ => $next_page
                )); exit;
            }else{
                $atts[‘page’] = $next_page;
            }
            $events = EVOAU()->manager->get_user_events($_POST[‘uid’]);
            // … rest of the function …
includes/form/form-type-datetime.php
// START TIME SECTION (line 23 ff.)
if( $this->EVENT ){
    // — START OF ADDED CODE —
    // — DIAGNOSTIC: Force refresh of start time — START
    $fresh_start_unix = get_post_meta($this->EVENT->ID, ‘evcal_srow’, true);
    if( $fresh_start_unix && is_numeric($fresh_start_unix) ){
        $start_unix_to_use = (int)$fresh_start_unix;
    } else {
        $start_unix_to_use = $this->EVENT->start_unix;
    }
    // — DIAGNOSTIC: Force refresh of start time — END
    // — END OF ADDED CODE —
    $DD->setTimezone( $this->EVENT->tz );
    // Use refreshed value below
    $DD->setTimestamp( $start_unix_to_use );
    $SD = $datetime->__get_lang_formatted_timestr(
        $dateFormat,
        // Use refreshed value
        eventon_get_formatted_time( $start_unix_to_use , $this->EVENT->tz )
    );
    $sH = $DD->format( ($hr24 ?’H’:’h’) );
    $sM = $DD->format( ‘i’ );
    $sA = $DD->format( ‘a’ );
    $SDX = $DD->format(‘Y-m-d’);
    $ST = $DD->format( $timeFormat );
}else{
    // … fallback for new events …
}
// END TIME SECTION (lines 95 ff.)
if( $this->EVENT ){
    // — START OF ADDED CODE —
    // — DIAGNOSTIC: Force refresh of end time — START
    $fresh_end_unix = get_post_meta($this->EVENT->ID, ‘evcal_erow’, true);
    if( $fresh_end_unix && is_numeric($fresh_end_unix) ){
        $end_unix_to_use = (int)$fresh_end_unix;
    } else {
        $end_unix_to_use = $this->EVENT->end_unix;
    }
    // — DIAGNOSTIC: Force refresh of end time — END
    // — END OF ADDED CODE —
    // Use refreshed value below
    $DD->setTimestamp( $end_unix_to_use );
    $ED = $datetime->__get_lang_formatted_timestr(
        $dateFormat,
        // Use refreshed value
        eventon_get_formatted_time( $end_unix_to_use , $this->EVENT->tz )
    );
    $eH = $DD->format( ($hr24 ?’H’:’h’) );
    $eM = $DD->format( ‘i’ );
    $eA = $DD->format( ‘a’ );
    $EDX = $DD->format(‘Y-m-d’);
    $ET = $DD->format( $timeFormat );
}else{
     // … fallback for new events …
}

Reply to: tickets(383325)

`
### WordPress Environment ###
WordPress address (URL): https://ecoactivesocial.ie
Site address (URL): https://ecoactivesocial.ie
WC Version: 9.7.1
Legacy REST API Package Version: The Legacy REST API plugin is not installed on this site.
Action Scheduler Version: ✔ 3.9.0
Log Directory Writable: ✔
WP Version: 6.7.2
WP Multisite: –
WP Memory Limit: 500 MB
WP Debug Mode: –
WP Cron: ✔
Language: en_GB
External object cache: ✔
### Server Environment ###
Server Info: Apache
PHP Version: 8.1.31
PHP Post Max Size: 256 MB
PHP Time Limit: 900
PHP Max Input Vars: 3000
cURL Version: 7.61.1
OpenSSL/1.1.1k
SUHOSIN Installed: –
MySQL Version: 10.5.28-MariaDB
Max Upload Size: 256 MB
Default Timezone is UTC: ✔
fsockopen/cURL: ✔
SoapClient: ✔
DOMDocument: ✔
GZip: ✔
Multibyte String: ✔
Remote Post: ✔
Remote Get: ✔
### Database ###
WC Database Version: 9.7.1
WC Database Prefix: wp4o_
Total Database Size: 172.33MB
Database Data Size: 156.17MB
Database Index Size: 16.16MB
wp4o_woocommerce_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp4o_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp4o_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp4o_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp4o_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp4o_woocommerce_order_itemmeta: Data: 0.09MB + Index: 0.09MB + Engine InnoDB
wp4o_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp4o_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp4o_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp4o_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp4o_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp4o_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp4o_actionscheduler_actions: Data: 0.13MB + Index: 0.13MB + Engine InnoDB
wp4o_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp4o_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp4o_actionscheduler_logs: Data: 0.09MB + Index: 0.06MB + Engine InnoDB
wp4o_arete_buddypress_smileys_manage: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_bp_activity: Data: 0.20MB + Index: 0.16MB + Engine InnoDB
wp4o_bp_activity_meta: Data: 0.19MB + Index: 0.09MB + Engine InnoDB
wp4o_bp_friends: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp4o_bp_groups: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp4o_bp_groups_groupmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp4o_bp_groups_members: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
wp4o_bp_invitations: Data: 0.02MB + Index: 0.14MB + Engine InnoDB
wp4o_bp_messages_messages: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp4o_bp_messages_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp4o_bp_messages_notices: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp4o_bp_messages_recipients: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
wp4o_bp_notifications: Data: 0.02MB + Index: 0.11MB + Engine InnoDB
wp4o_bp_notifications_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp4o_bp_optouts: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_bp_user_blogs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_bp_user_blogs_blogmeta: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
wp4o_bp_xprofile_data: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
wp4o_bp_xprofile_fields: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
wp4o_bp_xprofile_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp4o_bp_xprofile_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp4o_cky_banners: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
wp4o_cky_cookies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_cky_cookie_categories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp4o_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp4o_comments: Data: 0.14MB + Index: 0.09MB + Engine InnoDB
wp4o_easywpsmtp_debug_events: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_easywpsmtp_tasks_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_e_events: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_e_notes: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_e_notes_users_relations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_e_submissions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_e_submissions_actions_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_e_submissions_values: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_jetpack_sync_queue: Data: 0.27MB + Index: 0.05MB + Engine MyISAM
wp4o_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp4o_logy_users: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_mycred_log: Data: 0.05MB + Index: 0.02MB + Engine InnoDB
wp4o_nf3_actions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_nf3_action_meta: Data: 0.03MB + Index: 0.01MB + Engine MyISAM
wp4o_nf3_chunks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_nf3_fields: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_nf3_field_meta: Data: 0.09MB + Index: 0.01MB + Engine MyISAM
wp4o_nf3_forms: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_nf3_form_meta: Data: 0.02MB + Index: 0.01MB + Engine MyISAM
wp4o_nf3_objects: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_nf3_object_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_nf3_relationships: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_nf3_upgrades: Data: 0.07MB + Index: 0.00MB + Engine MyISAM
wp4o_ngg_album: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_ngg_gallery: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_ngg_pictures: Data: 0.07MB + Index: 0.01MB + Engine MyISAM
wp4o_options: Data: 6.16MB + Index: 0.30MB + Engine InnoDB
wp4o_postmeta: Data: 76.56MB + Index: 6.03MB + Engine InnoDB
wp4o_posts: Data: 52.52MB + Index: 1.38MB + Engine InnoDB
wp4o_rank_math_404_logs: Data: 0.01MB + Index: 0.02MB + Engine MyISAM
wp4o_rank_math_analytics_gsc: Data: 0.06MB + Index: 0.05MB + Engine MyISAM
wp4o_rank_math_analytics_objects: Data: 0.04MB + Index: 0.03MB + Engine MyISAM
wp4o_rank_math_internal_links: Data: 0.03MB + Index: 0.01MB + Engine MyISAM
wp4o_rank_math_internal_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_rank_math_redirections: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_rank_math_redirections_cache: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_redirection_404: Data: 4.28MB + Index: 0.67MB + Engine MyISAM
wp4o_redirection_groups: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_redirection_items: Data: 0.01MB + Index: 0.02MB + Engine MyISAM
wp4o_redirection_logs: Data: 1.22MB + Index: 0.19MB + Engine MyISAM
wp4o_rsssl_csp_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_rsssl_xmlrpc: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_rt_rtm_activity: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp4o_rt_rtm_api: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_rt_rtm_media: Data: 0.02MB + Index: 0.11MB + Engine InnoDB
wp4o_rt_rtm_media_interaction: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_rt_rtm_media_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_sbi_feeds: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp4o_signups: Data: 0.03MB + Index: 0.02MB + Engine MyISAM
wp4o_smush_dir_images: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_ta_link_clicks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_ta_link_clicks_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_termmeta: Data: 0.20MB + Index: 0.03MB + Engine InnoDB
wp4o_terms: Data: 0.23MB + Index: 0.28MB + Engine InnoDB
wp4o_term_relationships: Data: 0.39MB + Index: 0.22MB + Engine InnoDB
wp4o_term_taxonomy: Data: 0.20MB + Index: 0.23MB + Engine InnoDB
wp4o_usermeta: Data: 0.17MB + Index: 0.09MB + Engine MyISAM
wp4o_users: Data: 0.01MB + Index: 0.02MB + Engine MyISAM
wp4o_wcpv_commissions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_wcpv_per_product_shipping_rules: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_wc_admin_notes: Data: 0.13MB + Index: 0.00MB + Engine InnoDB
wp4o_wc_admin_note_actions: Data: 0.09MB + Index: 0.02MB + Engine InnoDB
wp4o_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp4o_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp4o_wc_order_addresses: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp4o_wc_order_operational_data: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp4o_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp4o_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp4o_wc_product_attributes_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_wc_product_download_directories: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
wp4o_wc_product_meta_lookup: Data: 0.05MB + Index: 0.11MB + Engine InnoDB
wp4o_wc_rate_limits: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_wc_reserved_stock: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp4o_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp4o_wpforms_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_wpforms_payments: Data: 0.02MB + Index: 0.14MB + Engine InnoDB
wp4o_wpforms_payment_meta: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp4o_wpforms_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_wpmailsmtp_debug_events: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_wpmailsmtp_tasks_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_wpml_mails: Data: 2.97MB + Index: 0.02MB + Engine MyISAM
wp4o_wpr_above_the_fold: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp4o_wpr_image_optimization: Data: 7.50MB + Index: 3.02MB + Engine InnoDB
wp4o_wpr_rocket_cache: Data: 0.48MB + Index: 0.59MB + Engine InnoDB
wp4o_wpr_rucss_used_css: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
wp4o_youzify_activity_polls_votes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_youzify_bookmarks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_youzify_hashtags: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_youzify_hashtags_items: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_youzify_media: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_youzify_reviews: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_youzify_social_login_users: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp4o_yz_bookmark: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_yz_hashtags: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_yz_hashtags_items: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_yz_media: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_yz_mod_restrictions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_yz_reports: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
wp4o_yz_reviews: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
### Post Type Counts ###
ajde_events: 44
attachment: 2502
bp-email: 40
buddypress: 2
crum-form: 2
custom_css: 1
display_type: 7
e-landing-page: 3
elementor_library: 58
evo-tix: 67
mc4wp-form: 1
mycred_badge: 15
nav_menu_item: 224
nf_sub: 18
ngg_gallery: 6
ngg_pictures: 82
oembed_cache: 21
page: 50
post: 392
product: 88
product_variation: 18
revision: 4518
rtmedia_album: 4
seedprod: 2
shop_coupon: 3
shop_order: 59
shop_order_refund: 9
tribe_organizer: 3
tribe_venue: 5
wp_global_styles: 1
wp_navigation: 1
### Security ###
Secure connection (HTTPS): ✔
Hide errors from visitors: ✔
### Active Plugins (26) ###
Autocomplete WooCommerce Orders: by QuadLayers – 3.4.0
BuddyPress: by The BuddyPress Community – 14.3.4
AccelerateWP: by CloudLinux – 3.16-1.1-21
CookieYes | GDPR Cookie Consent: by CookieYes – 3.2.9
Elementor Olympus Widgets: by  – 4.3
Elementor Pro: by Elementor.com – 3.28.1
Elementor: by Elementor.com – 3.28.1
Envato Market: by Envato – 2.0.12
EventON: by AshanJay – 4.9.1
EventON – Event Tickets: by Ashan Jay – 2.4.10
Site Kit by Google: by Google – 1.149.1
XML Sitemap Generator for Google: by Auctollo – 4.1.21
Hide Categories and Products for Woocommerce: by N.O.U.S. Open Useful and Simple – 1.2.10
MC4WP: Mailchimp for WordPress: by ibericode – 4.10.2
Ninja Forms: by Saturday Drive – 3.9.2
Meta pixel for WordPress: by Facebook – 4.1.2
Quick Featured Images: by Kybernetik Services – 13.7.2
Really Simple Security: by Really Simple Security – 9.3.2.1
Redirection: by John Godley – 5.5.2
Redis Object Cache: by Till Krüss – 2.5.4
Unyson: by ThemeFuse – 2.17
Velvet Blues Update URLs: by VelvetBlues.com – 3.2.10
WooCommerce.com Update Manager: by Automattic – 1.0.3
WooCommerce Stripe Gateway: by Stripe – 9.3.1
WooCommerce: by Automattic – 9.7.1
Youzify: by KaineLabs – 3.5.8
### Inactive Plugins (2) ###
EventON Lite: by Ashan Jay – 2.3.2
WordPress Importer: by wordpressdotorg – 0.8.4
### Dropin Plugins () ###
advanced-cache.php: advanced-cache.php
maintenance.php: maintenance.php
object-cache.php: Redis Object Cache Drop-In
### Settings ###
Legacy API Enabled: –
Force SSL: –
Currency: EUR (€)
Currency Position: left
Thousand Separator: ,
Decimal Separator: .
Number of Decimals: 2
Taxonomies: Product Types: external (external)
grouped (grouped)
simple (simple)
variable (variable)
Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
exclude-from-search (exclude-from-search)
featured (featured)
outofstock (outofstock)
rated-1 (rated-1)
rated-2 (rated-2)
rated-3 (rated-3)
rated-4 (rated-4)
rated-5 (rated-5)
Connected to WooCommerce.com: ✔
Enforce Approved Product Download Directories: –
HPOS feature enabled: –
Order datastore: WC_Order_Data_Store_CPT
HPOS data sync enabled: –
### Logging ###
Enabled: ✔
Handler: AutomatticWooCommerceInternalAdminLoggingLogHandlerFileV2
Retention period: 30 days
Level threshold: –
Log directory size: 497 KB
### WC Pages ###
Shop base: #19283 – /experiences/
Basket: #177 – /cart/ –  Contains the woocommerce_cart shortcode
Checkout: #178 – /checkout/ –  Contains the woocommerce_checkout shortcode
My account: #179 – /my-account/ –  Contains the [woocommerce_my_account] shortcode
Terms and conditions: #11821 – /terms-of-use/
### Theme ###
Name: Olympus child Theme
Version: 1
Author URL: https://crumina.net/
Child Theme: ✔
Parent Theme Name: Olympus
Parent Theme Version: 4.6
Parent Theme Author URL: http://crumina.net
Theme type: Classic theme
WooCommerce Support: ✔
### Templates ###
Overrides: olympus/woocommerce/archive-product.php version 3.4.0 is out of date. The core version is 8.6.0
olympus/woocommerce/cart/cart.php
olympus/woocommerce/cart/proceed-to-checkout-button.php
olympus/woocommerce/checkout/form-checkout.php
olympus/woocommerce/checkout/form-coupon.php
olympus/woocommerce/content-product.php
olympus/woocommerce/content-single-product.php
olympus-child/woocommerce/emails/admin-new-order.php version 3.7.0 is out of date. The core version is 9.7.0
olympus-child/woocommerce/emails/customer-completed-order.php version 3.7.0 is out of date. The core version is 9.7.0
olympus/woocommerce/global/form-login.php
olympus/woocommerce/global/quantity-input.php
olympus/woocommerce/loop/add-to-cart.php
olympus/woocommerce/loop/loop-end.php
olympus/woocommerce/loop/loop-start.php
olympus/woocommerce/loop/orderby.php version 3.6.0 is out of date. The core version is 9.7.0
olympus/woocommerce/loop/price.php
olympus/woocommerce/loop/rating.php
olympus/woocommerce/myaccount/form-edit-account.php version 8.7.0 is out of date. The core version is 9.7.0
olympus/woocommerce/myaccount/form-lost-password.php
olympus/woocommerce/myaccount/my-address.php
olympus/woocommerce/product-searchform.php
olympus/woocommerce/single-product/add-to-cart/external.php
olympus/woocommerce/single-product/add-to-cart/grouped.php
olympus/woocommerce/single-product/add-to-cart/simple.php
olympus/woocommerce/single-product/add-to-cart/variation-add-to-cart-button.php
olympus/woocommerce/single-product/meta.php version 3.0.0 is out of date. The core version is 9.7.0
olympus/woocommerce/single-product/review-rating.php
olympus/woocommerce/single-product/review.php
olympus/woocommerce/single-product/tabs/tabs.php version 3.8.0 is out of date. The core version is 9.6.0
olympus/woocommerce/single-product-reviews.php version 4.3.0 is out of date. The core version is 9.7.0
olympus/woocommerce/single-product.php
Outdated Templates: ❌
Learn how to update |
Clear system status theme info cache
### WooCommerce Stripe Payment Gateway ###
Version: 9.3.1
Account ID:
Account Email: Unknown
Test Mode Enabled: Yes
OAuth Connected: No
Legacy Checkout Experience: ✔
No
Enabled Payment Methods: card
Express Checkout: Disabled
Auth and Capture: ✔
Yes
Logging: No
### Admin ###
Enabled Features: activity-panels
analytics
product-block-editor
coupons
core-profiler
customize-store
customer-effort-score-tracks
import-products-task
experimental-fashion-sample-products
shipping-smart-defaults
shipping-setting-tour
homescreen
marketing
mobile-app-banner
onboarding
onboarding-tasks
pattern-toolkit-full-composability
product-custom-fields
remote-inbox-notifications
remote-free-extensions
payment-gateway-suggestions
printful
shipping-label-banner
subscriptions
store-alerts
transient-notices
woo-mobile-welcome
wc-pay-promotion
wc-pay-welcome-page
launch-your-store
add-to-cart-with-options-stepper-layout
Disabled Features: product-data-views
experimental-blocks
coming-soon-newsletter-template
minified-js
product-pre-publish-modal
settings
async-product-editor-category-field
product-editor-template-system
blueprint
reactify-classic-payments-settings
use-wp-horizon
blockified-add-to-cart
Daily Cron: ✔ Next scheduled: 2025-04-01 13:31:06 +01:00
Options: ✔
Notes: 207
Onboarding: completed
### Action Scheduler ###
Complete: 259
Oldest: 2025-02-28 19:23:48 +0000
Newest: 2025-03-31 16:45:04 +0100
Failed: 25
Oldest: 2022-04-04 19:02:03 +0100
Newest: 2025-02-08 12:39:48 +0000
In-progress: 1
Oldest: –
Newest: –
Pending: 2
Oldest: 2025-04-01 16:09:17 +0100
Newest: 2025-04-01 16:09:17 +0100
### Status report information ###
Generated at: 2025-03-31 16:45:29 +01:00
`

Reply to: tickets(372471)

https://laurastamm.com

Events are getting mis placed. Screen shot is showing how it should be. I tried adjusting the publish date but it did not help. Before it had worked. You already have the login. Client is very particular and wants it organized so that towns are together and Group A comes before B. I do not want the tab solution. I also do not know how to set it up.