Forum Replies Created

Viewing 15 replies - 1 through 15 (of 16 total)
  • Thread Starter glabs

    (@glabs)

    Scratch that. We were able to resolve it with this:

     // Get the new table's post ID by querying the database directly
    global $wpdb;
    $new_table_post_id = $wpdb->get_var( $wpdb->prepare(
    "SELECT ID FROM {$wpdb->posts} WHERE post_type = 'tablepress_table' AND post_title = %s ORDER BY ID DESC LIMIT 1",
    $product_name
    ) );

    if ( ! $new_table_post_id ) {
    error_log( 'Failed to retrieve post ID for TablePress table: ' . $product_name );
    return false;
    }

    // Update the tablepress_tables option with the custom table ID
    $tablepress_tables_json = get_option( 'tablepress_tables' );

    if ( is_string( $tablepress_tables_json ) ) {
    $tablepress_tables_option = json_decode( $tablepress_tables_json, true );
    } else {
    $tablepress_tables_option = array( 'last_id' => 0, 'table_post' => array() );
    }

    if ( ! is_array( $tablepress_tables_option ) ) {
    $tablepress_tables_option = array( 'last_id' => 0, 'table_post' => array() );
    }

    // Check if the slug already exists to avoid duplicates
    foreach ( $tablepress_tables_option['table_post'] as $key => $value ) {
    if ( $key === $product_slug ) {
    error_log( 'Table for slug "' . $product_slug . '" already exists. Skipping creation.' );
    return;
    }
    }

    // Remove any existing key with the same post_id to avoid duplicates
    foreach ( $tablepress_tables_option['table_post'] as $key => $value ) {
    if ( (string)$value === (string)$new_table_post_id ) {
    unset( $tablepress_tables_option['table_post'][ $key ] );
    }
    }

    // Add the new mapping
    $tablepress_tables_option['table_post'][ $product_slug ] = $new_table_post_id;

    // Save the updated option as JSON
    if ( ! update_option( 'tablepress_tables', wp_json_encode( $tablepress_tables_option ) ) ) {
    error_log( 'Failed to update the tablepress_tables option.' );
    }

    error_log( 'TablePress table created with ID: ' . $table_id . ', name: ' . $product_name . ', slug-based ID: ' . $product_slug );

    return true;
    }

    Thread Starter glabs

    (@glabs)

    Hi Tobias! It’s been a while but we made progress on this and were able to create the tables using the code below. Now, we’re trying to do one last thing which is to change the created table’s ID to match the product slug so that we can automatically embed these tables. We’ve tried iterating through a few different approaches but can’t seem to quite get that table ID to change programatically. What do you think?

    /**
    * Create a TablePress table when a "main" product is published.
    */
    function create_tablepress_table_for_main_product( $post_id ) {
    error_log( 'create_tablepress_table_for_main_product function called! Post ID: ' . $post_id );

    // Check if the published post is a "main" product
    $product = wc_get_product( $post_id );
    if ( ! $product || ! has_term( 'main', 'product_cat', $post_id ) ) {
    error_log('Product does not have term "main"');
    return;
    }

    // Get the product name and slug
    $product_name = $product->get_name();
    $product_slug = $product->get_slug();

    // Define table dimensions
    $num_columns = 5;
    $num_rows = 10;

    // Create the TablePress table data
    $new_table = array(
    'name' => $product_name,
    'description' => 'Table for: ' . $product_name,
    'data' => array_fill( 0, $num_rows, array_fill( 0, $num_columns, '' ) ),
    'visibility' => array(
    'rows' => array_fill( 0, $num_rows, 1 ),
    'columns' => array_fill( 0, $num_columns, 1 ),
    ),
    );

    // Get the TablePress model
    $tablepress_model = TablePress::$model_table;

    // Merge this data into an empty table template.
    $table = $tablepress_model->prepare_table( $tablepress_model->get_table_template(), $new_table, false );

    if ( is_wp_error( $table ) ) {
    error_log( 'Error preparing TablePress table "' . $product_name . '": ' . $table->get_error_message() );
    return false;
    }

    // Add the new table.
    $table_id = $tablepress_model->add( $table );
    if ( is_wp_error( $table_id ) ) {
    error_log( 'Error creating TablePress table "' . $product_name . '": ' . $table_id->get_error_message() );
    return false;
    }

    // Update the table ID directly in the database
    global $wpdb;
    $table_name = $wpdb->prefix . 'tablepress_tables';
    $wpdb->update(
    $table_name,
    array( 'id' => $product_slug ), // New table ID
    array( 'id' => $table_id ) // WHERE clause: internal table ID
    );
    if ( $wpdb->last_error ) {
    error_log( 'Error updating TablePress table ID: ' . $wpdb->last_error );
    }

    return true;
    }

    // Hook the function to the 'publish_product' action
    add_action( 'publish_product', 'create_tablepress_table_for_sport_product' );
    Thread Starter glabs

    (@glabs)

    Thanks, Tobias. Appreciate your help. We’re planning on upgrading to the pro version of the plugin but wanted to confirm that this would work there as well. Please let me know. We updated our code but still can’t get it working. I’m sure we’re missing something simple but haven’t been able to figure it out.

    /**
    * Create a TablePress table when a "main" product is published.
    */
    function create_tablepress_table_for_sport_product( $post_id ) {

    // Check if the published post is a "main" product
    $product = wc_get_product( $post_id );
    if ( ! $product || ! has_term( 'main', 'product_cat', $product ) ) {
    return;
    }

    // Get the product name
    $product_name = $product->get_name();

    // Define table dimensions
    $num_columns = 5;
    $num_rows = 10;

    // Create the TablePress table data
    $new_table = array(
    'name' => $product_name,
    'description' => 'Standings for: ' . $product_name,
    'data' => array_fill( 0, $num_rows, array_fill( 0, $num_columns, '' ) ),
    'visibility' => array(
    'rows' => array_fill( 0, $num_rows, 1 ),
    'columns' => array_fill( 0, $num_columns, 1 ),
    ),
    );

    // Get the TablePress model
    $tablepress_model = TablePress::$model_table;

    // Merge this data into an empty table template.
    $table = $tablepress_model->prepare_table( $tablepress_model->get_table_template(), $new_table, false );

    if ( is_wp_error( $table ) ) {
    error_log( 'Error preparing TablePress table "' . $product_name . '": ' . $table->get_error_message() );
    return false;
    }

    // Add the new table (and get its first ID).
    $table_id = $tablepress_model->add( $table );
    if ( is_wp_error( $table_id ) ) {
    error_log( 'Error creating TablePress table "' . $product_name . '": ' . $table_id->get_error_message() );
    return false;
    }

    return true;
    }

    // Hook the function to the 'publish_product' action
    add_action( 'publish_product', 'create_tablepress_table_for_sport_product' );
    Thread Starter glabs

    (@glabs)

    Thanks for the quick reply and pointing me in the right direction. I tried updating the code but it doesn’t seem to be working:

    /**
    * Create a TablePress table when a "main" product is published.
    */
    function create_tablepress_table_for_sport_product( $post_id ) {

    // Check if the published post is a "main" product
    $product = wc_get_product( $post_id );
    if ( ! $product || ! has_term( 'main', 'product_cat', $product ) ) {
    return;
    }

    // Get the product name
    $product_name = $product->get_name();

    // Create the TablePress table
    $new_table = array(
    'name' => $product_name,
    'description' => 'Standings for: ' . $product_name,
    'data' => array_fill( 0, $num_rows, array_fill( 0, $num_columns, '' ) ),
    'visibility' => array(
    'rows' => array_fill( 0, $num_rows, 1 ),
    'columns' => array_fill( 0, $num_columns, 1 ),
    ),
    );
    // Merge this data into an empty table template.
    $table = TablePress::$model_table->prepare_table( TablePress::$model_table->get_table_template(), $new_table, false );
    if ( is_wp_error( $table ) ) {
    TablePress::redirect( array( 'action' => 'add', 'message' => 'error_add', 'error_details' => TablePress::get_wp_error_string( $table ) ) );
    }

    // Add the new table (and get its first ID).
    $table_id = TablePress::$model_table->add( $table );
    if ( is_wp_error( $table_id ) ) {
    TablePress::redirect( array( 'action' => 'add', 'message' => 'error_add', 'error_details' => TablePress::get_wp_error_string( $table_id ) ) );
    }
    }

    // Hook the function to the 'publish_product' action
    add_action( 'publish_product', 'create_tablepress_table_for_sport_product' );

    Where am I going wrong?

    We are also having this same issue and the work-around code snippets we have found have so far not resolved it either.

    Thread Starter glabs

    (@glabs)

    Thanks @anastas10s. I submitted a ticket today and will await a response. I appreciate your help.

    Thread Starter glabs

    (@glabs)

    Thanks @beautyofcode for the quick reply. We did not see any server errors and were previously running Woocommerce without a problem. Here’s the information from Site Health below.

    ` wp-core
    
    version: 6.3
    site_language: en_US
    user_language: en_US
    timezone: America/New_York
    permalink: /%postname%/
    https_status: true
    multisite: false
    user_registration: 0
    blog_public: 1
    default_comment_status: open
    environment_type: production
    user_count: 2709
    dotorg_communication: true wp-paths-sizes wordpress_path: /var/web/site/public_html
    wordpress_size: 378.22 MB (396589054 bytes)
    uploads_path: /var/web/site/public_html/wp-content/uploads
    uploads_size: 1.20 GB (1292478336 bytes)
    themes_path: /var/web/site/public_html/wp-content/themes
    themes_size: 76.65 MB (80376158 bytes)
    plugins_path: /var/web/site/public_html/wp-content/plugins
    plugins_size: 3.78 GB (4056028133 bytes)
    database_size: 244.49 MB (256366631 bytes)
    total_size: 5.66 GB (6081838312 bytes) wp-dropins (1) object-cache.php: true wp-active-theme name: GLabs (glabs)
    version: 3.0.5
    author: Guzman Labs
    author_website: (undefined)
    parent_theme: Divi (Divi)
    theme_features: core-block-patterns, block-templates, widgets-block-editor, post-thumbnails, custom-background, automatic-feed-links, menus, title-tag, post-formats, woocommerce, wc-product-gallery-zoom, wc-product-gallery-lightbox, wc-product-gallery-slider, customize-selective-refresh-widgets, wp-block-styles, editor-style, widgets
    theme_path: /var/web/site/public_html/wp-content/themes/glabs
    auto_update: Enabled wp-parent-theme name: Divi (Divi)
    version: 4.22.0
    author: Elegant Themes
    author_website: http://www.elegantthemes.com
    theme_path: /var/web/site/public_html/wp-content/themes/Divi
    auto_update: Enabled wp-themes-inactive (4) Twenty Twenty: version: 2.2, author: the WordPress team, Auto-updates enabled
    Twenty Twenty-One: version: 1.8, author: the WordPress team, Auto-updates enabled
    Twenty Twenty-Three: version: 1.2, author: the WordPress team, Auto-updates enabled
    Twenty Twenty-Two: version: 1.4, author: the WordPress team, Auto-updates enabled wp-mu-plugins (1) Hosting: author: (undefined), version: 0.1 wp-plugins-active (45) 404 to 301 - Redirect, Log and Notify 404 Errors: version: 3.1.4, author: Joel James, Auto-updates enabled
    Activity Log: version: 2.8.7, author: Activity Log Team, Auto-updates enabled
    AddToAny Share Buttons: version: 1.8.8, author: AddToAny, Auto-updates enabled
    Admin Customizer: version: 2.2.7, author: Nilambar Sharma, Auto-updates enabled
    Adminimize: version: 1.11.9, author: Frank Bültge, Auto-updates enabled
    Admin Menu Editor: version: 1.11.1, author: Janis Elsts, Auto-updates enabled
    Advanced Order Export For WooCommerce: version: 3.4.2, author: AlgolPlus, Auto-updates enabled
    Autocomplete WooCommerce Orders: version: 3.1.2, author: QuadLayers, Auto-updates enabled
    BuddyPress: version: 11.2.0, author: The BuddyPress Community, Auto-updates enabled
    Custom Fonts: version: 2.0.2, author: Brainstorm Force, Auto-updates enabled
    Duplicate Page: version: 4.5.2, author: mndpsingh287, Auto-updates enabled
    Easy Google Fonts: version: 2.0.4, author: Titanium Themes, Auto-updates enabled
    EventON: version: 2.6.17, author: AshanJay, Auto-updates enabled
    Extended CRM For Users Insights: version: 1.2.1, author: denizz, Auto-updates enabled
    Facebook for WooCommerce: version: 3.0.31, author: Facebook, Auto-updates enabled
    Flickr Justified Gallery: version: 3.5, author: Miro Mannino, Auto-updates enabled
    GZip Ninja Speed Compression: version: 1.2.3, author: CustomWPNinjas, Auto-updates enabled
    Hide Plugins: version: 1.0.4, author: brianmiyaji, Auto-updates enabled
    Limit Groups per User: version: 2.0.2, author: BuddyDev, Auto-updates enabled
    Loginizer: version: 1.8.1, author: Softaculous, Auto-updates enabled
    Mailchimp for WooCommerce: version: 3.1, author: Mailchimp, Auto-updates enabled
    My Custom Functions: version: 4.51, author: Space X-Chimp, Auto-updates enabled
    PixelYourSite: version: 9.4.2, author: PixelYourSite, Auto-updates enabled
    PPOM for WooCommerce: version: 32.0.8, author: Themeisle, Auto-updates enabled
    Printful Integration for WooCommerce: version: 2.2.2, author: Printful, Auto-updates enabled
    ProfilePress: version: 4.13.0, author: ProfilePress Membership Team, Auto-updates enabled
    PublishPress Capabilities: version: 2.9.1, author: PublishPress, Auto-updates enabled
    PW WooCommerce Bulk Edit: version: 2.118, author: Pimwick, LLC, Auto-updates enabled
    Redirect After Login: version: 0.1.9, author: marcelotorres, Auto-updates enabled
    Redirection: version: 5.3.10, author: John Godley, Auto-updates enabled
    Rename wp-login.php: version: 2.6.0, author: Ella van Durpe, Auto-updates enabled
    TablePress: version: 2.1.7, author: Tobias Bäthge, Auto-updates enabled
    Users Insights: version: 3.8.2, author: Pexeto (latest version: 4.4.1), Auto-updates enabled
    Wbcom Designs - BuddyPress Create Group Type: version: 2.7.0, author: Wbcom Designs, Auto-updates enabled
    WooCommerce: version: 8.0.2, author: Automattic, Auto-updates disabled
    WooCommerce Checkout Manager: version: 7.2.2, author: QuadLayers, Auto-updates enabled
    WooCommerce Memberships: version: 1.25.0, author: SkyVerge, Auto-updates enabled
    WooCommerce No Shipping Message: version: 2.1.5, author: dangoodman, Auto-updates enabled
    WooCommerce Stripe Gateway: version: 7.5.0, author: WooCommerce, Auto-updates enabled
    Woo Custom Emails Per Product: version: 2.2.9, author: Alex Mustin, Auto-updates enabled
    WP-Optimize - Clean, Compress, Cache: version: 3.2.18, author: David Anderson, Ruhani Rabin, Team Updraft, Auto-updates enabled
    WP Crontrol: version: 1.15.3, author: John Blackbourn & crontributors, Auto-updates enabled
    WP Mail Logging: version: 1.12.0, author: WP Mail Logging Team, Auto-updates enabled
    WPMU DEV Dashboard: version: 4.11.19, author: WPMU DEV, Auto-updates enabled
    YYDevelopment - Show Pages ID: version: 1.5.5, author: YYDevelopment, Auto-updates enabled wp-plugins-inactive (28) All-in-One WP Migration: version: 7.77, author: ServMask, Auto-updates enabled
    All-in-One WP Migration FTP Extension: version: 2.76, author: ServMask, Auto-updates disabled
    Bloom: version: 1.3.12, author: Elegant Themes, Auto-updates enabled
    Defender Pro: version: 4.0.1, author: WPMU DEV, Auto-updates disabled
    Divi Ghoster: version: 2.1.6, author: Aspen Grove Studios, Auto-updates enabled
    Error Log Monitor: version: 1.7.7, author: Janis Elsts, Auto-updates enabled
    Forminator Pro: version: 1.25.0, author: WPMU DEV, Auto-updates disabled
    Gravity Forms: version: 2.6.1, author: Gravity Forms, Auto-updates enabled
    Hummingbird Pro: version: 3.5.0, author: WPMU DEV, Auto-updates disabled
    IP Geo Block: version: 3.0.17.4, author: tokkonopapa, Auto-updates enabled
    Popup Maker: version: 1.18.2, author: Popup Maker, Auto-updates enabled
    Product Feed Manager for WooCommerce: version: 7.3.7, author: RexTheme, Auto-updates enabled
    Product Slider and Carousel with Category for WooCommerce: version: 2.8, author: WP OnlineSupport, Essential Plugin, Auto-updates enabled
    Role Based Price For WooCommerce: version: 3.3.7, author: Varun Sridharan, Auto-updates enabled
    Site Kit by Google: version: 1.107.0, author: Google, Auto-updates enabled
    SmartCrawl Pro: version: 3.7.1, author: WPMU DEV, Auto-updates disabled
    Smush Pro: version: 3.14.1, author: WPMU DEV, Auto-updates disabled
    Sucuri Security - Auditing, Malware Scanner and Hardening: version: 1.8.39, author: Sucuri Inc., Auto-updates enabled
    WC User Role Based Coupon: version: 0.2, author: Varun Sridharan, Auto-updates enabled
    WooCommerce Dynamic Pricing: version: 3.1.0, author: Lucas Stark (latest version: 3.2.3), Auto-updates enabled
    WooCommerce Shipping & Tax: version: 2.3.2, author: WooCommerce, Auto-updates enabled
    WooCommerce Subscriptions: version: 2.2.16, author: Prospress Inc. (latest version: 5.4.0), Auto-updates enabled
    WordPress Importer: version: 0.8.1, author: wordpressdotorg, Auto-updates disabled
    WP-DBManager: version: 2.80.9, author: Lester 'GaMerZ' Chan, Auto-updates enabled
    Wp Maximum Upload File Size: version: 1.1.0, author: CodePopular, Auto-updates disabled
    WP Performance Score Booster: version: 2.2.1, author: Dipak C. Gajjar, Auto-updates enabled
    WPT Custom Mo File: version: 1.2.2, author: WP-Translations Team, Auto-updates enabled
    Yoast SEO: version: 20.13, author: Team Yoast, Auto-updates enabled wp-media image_editor: WP_Image_Editor_Imagick
    imagick_module_version: 1691
    imagemagick_version: ImageMagick 6.9.11-60 Q16 x86_64 2021-01-25 https://imagemagick.org
    imagick_version: 3.7.0
    file_uploads: File uploads is turned off
    post_max_size: 128M
    upload_max_filesize: 128M
    max_effective_size: 128 MB
    max_file_uploads: 20
    imagick_limits:
    imagick::RESOURCETYPE_AREA: 122 MB
    imagick::RESOURCETYPE_DISK: 1073741824
    imagick::RESOURCETYPE_FILE: 768
    imagick::RESOURCETYPE_MAP: 512 MB
    imagick::RESOURCETYPE_MEMORY: 256 MB
    imagick::RESOURCETYPE_THREAD: 1
    imagick::RESOURCETYPE_TIME: 9.2233720368548E+18
    imagemagick_file_formats: 3FR, 3G2, 3GP, AAI, AI, APNG, ART, ARW, AVI, AVIF, AVS, BGR, BGRA, BGRO, BIE, BMP, BMP2, BMP3, BRF, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CR3, CRW, CUR, CUT, DATA, DCM, DCR, DCX, DDS, DFONT, DJVU, DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FILE, FITS, FRACTAL, FTP, FTS, G3, G4, GIF, GIF87, GRADIENT, GRAY, GRAYA, GROUP4, GV, H, HALD, HDR, HEIC, HISTOGRAM, HRZ, HTM, HTML, HTTP, HTTPS, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, ISOBRL6, J2C, J2K, JBG, JBIG, JNG, JNX, JP2, JPC, JPE, JPEG, JPG, JPM, JPS, JPT, JSON, K25, KDC, LABEL, M2V, M4V, MAC, MAGICK, MAP, MASK, MAT, MATTE, MEF, MIFF, MKV, MNG, MONO, MOV, MP4, MPC, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NRW, NULL, ORF, OTB, OTF, PAL, PALM, PAM, PANGO, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG00, PNG24, PNG32, PNG48, PNG64, PNG8, PNM, POCKETMOD, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, RADIAL-GRADIENT, RAF, RAS, RAW, RGB, RGBA, RGBO, RGF, RLA, RLE, RMF, RW2, SCR, SCT, SFW, SGI, SHTML, SIX, SIXEL, SPARSE-COLOR, SR2, SRF, STEGANO, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UBRL6, UIL, UYVY, VDA, VICAR, VID, VIDEO, VIFF, VIPS, VST, WBMP, WEBM, WEBP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, YCbCr, YCbCrA, YUV
    gd_version: 2.3.3
    gd_formats: GIF, JPEG, PNG, WebP, BMP, AVIF, XPM
    ghostscript_version: unknown wp-server server_architecture: Linux 5.15.0-78-generic x86_64
    httpd_software: nginx/1.22.1
    php_version: 8.1.21 64bit
    php_sapi: fpm-fcgi
    max_input_variables: 3000
    time_limit: 300
    memory_limit: 256M
    max_input_time: 180
    upload_max_filesize: 128M
    php_post_max_size: 128M
    curl_version: 7.81.0 OpenSSL/3.0.2
    suhosin: false
    imagick_availability: true
    pretty_permalinks: true
    htaccess_extra_rules: true
    current: 2023-08-16T13:59:00+00:00
    utc-time: Wednesday, 16-Aug-23 13:59:00 UTC
    server-time: 2023-08-16T09:58:57-04:00 wp-database extension: mysqli
    server_version: 10.6.12-MariaDB-0ubuntu0.22.04.1
    client_version: mysqlnd 8.1.21
    max_allowed_packet: 134217728
    max_connections: 50 wp-constants WP_HOME: undefined
    WP_SITEURL: undefined
    WP_CONTENT_DIR: /var/web/site/public_html/wp-content
    WP_PLUGIN_DIR: /var/web/site/public_html/wp-content/plugins
    WP_MEMORY_LIMIT: 128M
    WP_MAX_MEMORY_LIMIT: 256M
    WP_DEBUG: false
    WP_DEBUG_DISPLAY: true
    WP_DEBUG_LOG: false
    SCRIPT_DEBUG: false
    WP_CACHE: false
    CONCATENATE_SCRIPTS: undefined
    COMPRESS_SCRIPTS: undefined
    COMPRESS_CSS: undefined
    WP_ENVIRONMENT_TYPE: Undefined
    WP_DEVELOPMENT_MODE: undefined
    DB_CHARSET: utf8mb4
    DB_COLLATE: undefined wp-filesystem wordpress: writable
    wp-content: writable
    uploads: writable
    plugins: writable
    themes: writable
    mu-plugins: writable buddypress version: 11.2.0
    active_components: Community Members, User Groups
    template_pack: BuddyPress Nouveau 11.2.0
    ! hide-loggedout-adminbar: No
    ! bp-disable-account-deletion: No
    ! bp-disable-avatar-uploads: Yes
    ! bp-disable-cover-image-uploads: Yes
    bp-enable-members-invitations: undefined
    bp-enable-membership-requests: undefined
    ! bp_restrict_group_creation: Yes
    ! bp-disable-group-avatar-uploads: Yes
    ! bp-disable-group-cover-image-uploads: Yes
    Thread Starter glabs

    (@glabs)

    Hi @aguinaldodarla

    Thanks for the quick reply. Here is the System Status Report.

    Part of the challenge in troubleshooting this issue is that it only happens some of the time and, to test, we need to be running ads. Meta’s support team recommended pausing all ads while this issue was sorted out.

    I have the logs including for a day in which we experienced the issue but I fear that there might be consumer privacy concerns with sharing that data in a public forum. Is there an easy way to share that information without including the consumer information? My guess is that our answer is in that log.

    `
    ### WordPress Environment ###
    
    WordPress address (URL): https://maluna.com
    Site address (URL): https://maluna.com
    WC Version: 7.8.2
    REST API Version: ✔ 7.8.2
    WC Blocks Version: ✔ 10.2.4
    Action Scheduler Version: ✔ 3.5.4
    Log Directory Writable: ✔
    WP Version: ❌ 6.2.2 - There is a newer version of WordPress available (6.3)
    WP Multisite: –
    WP Memory Limit: 1 GB
    WP Debug Mode: –
    WP Cron: ✔
    Language: en_US
    External object cache: –
    
    ### Server Environment ###
    
    Server Info: Apache
    PHP Version: 8.0.29
    PHP Post Max Size: 100 MB
    PHP Time Limit: 300
    PHP Max Input Vars: 1000
    cURL Version: 8.1.2
    OpenSSL/1.1.1u
    
    SUHOSIN Installed: –
    MySQL Version: 8.0.33-25
    Max Upload Size: 250 MB
    Default Timezone is UTC: ✔
    fsockopen/cURL: ✔
    SoapClient: ✔
    DOMDocument: ✔
    GZip: ✔
    Multibyte String: ✔
    Remote Post: ✔
    Remote Get: ✔
    
    ### Database ###
    
    WC Database Version: 7.8.2
    WC Database Prefix: wp_
    Total Database Size: 672.78MB
    Database Data Size: 575.36MB
    Database Index Size: 97.42MB
    wp_woocommerce_sessions: Data: 7.02MB + Index: 0.08MB + Engine InnoDB
    wp_woocommerce_api_keys: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_woocommerce_attribute_taxonomies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_woocommerce_downloadable_product_permissions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_woocommerce_order_items: Data: 1.52MB + Index: 0.44MB + Engine InnoDB
    wp_woocommerce_order_itemmeta: Data: 9.52MB + Index: 9.03MB + Engine InnoDB
    wp_woocommerce_tax_rates: Data: 0.01MB + Index: 0.01MB + Engine MyISAM
    wp_woocommerce_tax_rate_locations: Data: 0.01MB + Index: 0.02MB + Engine MyISAM
    wp_woocommerce_shipping_zones: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_woocommerce_shipping_zone_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_woocommerce_shipping_zone_methods: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_woocommerce_payment_tokens: Data: 0.08MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_payment_tokenmeta: Data: 0.20MB + Index: 0.28MB + Engine InnoDB
    wp_woocommerce_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_404_to_301: Data: 0.01MB + Index: 0.00MB + Engine MyISAM
    wp_actionscheduler_actions: Data: 1.52MB + Index: 0.91MB + Engine InnoDB
    wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_actionscheduler_logs: Data: 1.52MB + Index: 0.50MB + Engine InnoDB
    wp_adtribes_my_conversions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_commentmeta: Data: 1.52MB + Index: 0.58MB + Engine InnoDB
    wp_comments: Data: 12.52MB + Index: 10.09MB + Engine InnoDB
    wp_csp3_subscribers: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_erp_ac_banks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_ac_chart_classes: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_ac_chart_types: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_ac_journals: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_ac_ledger: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_ac_payments: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_ac_tax: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_ac_tax_items: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_ac_transaction_items: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_ac_transactions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_audit_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_company_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_crm_activities_task: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_crm_campaign_group: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_crm_campaigns: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_crm_contact_group: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_crm_contact_subscriber: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_crm_customer_activities: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_crm_customer_companies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_crm_save_email_replies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_crm_save_search: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_hr_announcement: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_hr_dependents: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_hr_depts: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_hr_designations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_hr_education: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_hr_employee_history: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_hr_employee_notes: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_hr_employee_performance: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_hr_employees: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_hr_holiday: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_hr_leave_entitlements: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_hr_leave_policies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_hr_leave_requests: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_hr_leaves: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_hr_work_exp: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_people_type_relations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_people_types: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_erp_peoplemeta: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_erp_peoples: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_et_bloom_stats: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
    wp_ewwwio_images: Data: 0.68MB + Index: 0.24MB + Engine MyISAM
    wp_failed_jobs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_gf_addon_feed: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_gf_draft_submissions: Data: 0.03MB + Index: 0.00MB + Engine MyISAM
    wp_gf_entry: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
    wp_gf_entry_meta: Data: 0.20MB + Index: 0.28MB + Engine InnoDB
    wp_gf_entry_notes: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
    wp_gf_form: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_gf_form_meta: Data: 0.70MB + Index: 0.00MB + Engine MyISAM
    wp_gf_form_revisions: Data: 0.08MB + Index: 0.00MB + Engine MyISAM
    wp_gf_form_view: Data: 0.08MB + Index: 0.03MB + Engine InnoDB
    wp_gf_rest_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_gpui_sequence: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_gvmjj32xd8_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_gvmjj32xd8_comments: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
    wp_gvmjj32xd8_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_gvmjj32xd8_options: Data: 0.08MB + Index: 0.03MB + Engine InnoDB
    wp_gvmjj32xd8_postmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_gvmjj32xd8_posts: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_gvmjj32xd8_term_relationships: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_gvmjj32xd8_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_gvmjj32xd8_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_gvmjj32xd8_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_gvmjj32xd8_usermeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_gvmjj32xd8_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_gvmjj32xd8_yoast_seo_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_gvmjj32xd8_yoast_seo_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ip_geo_block_cache: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_ip_geo_block_logs: Data: 0.06MB + Index: 0.01MB + Engine MyISAM
    wp_ip_geo_block_stat: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_links: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_login_redirects: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_loginizer_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_mailchimp_carts: Data: 0.27MB + Index: 0.00MB + Engine InnoDB
    wp_mailchimp_jobs: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
    wp_masterslider_options: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_masterslider_sliders: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_maxbuttons_collections: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_maxbuttons_collections_trans: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_maxbuttonsv3: Data: 0.01MB + Index: 0.00MB + Engine MyISAM
    wp_nf3_action_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_actions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_field_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_fields: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_form_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_object_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_objects: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_relationships: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_options: Data: 28.28MB + Index: 11.77MB + Engine InnoDB
    wp_postmeta: Data: 33.56MB + Index: 31.09MB + Engine InnoDB
    wp_posts: Data: 58.52MB + Index: 3.81MB + Engine InnoDB
    wp_prli_clicks: Data: 20.66MB + Index: 8.25MB + Engine MyISAM
    wp_prli_clicks_rotations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_prli_groups: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_prli_keywords: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_prli_link_metas: Data: 0.01MB + Index: 0.02MB + Engine MyISAM
    wp_prli_link_rotations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_prli_links: Data: 0.00MB + Index: 0.03MB + Engine MyISAM
    wp_prli_post_keywords: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_prli_post_urls: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_prli_report_links: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_prli_reports: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_queue: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_redirection_404: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_redirection_groups: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_redirection_items: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    wp_redirection_logs: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_sdm_downloads: Data: 0.10MB + Index: 0.01MB + Engine MyISAM
    wp_signups: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_taxjar_record_queue: Data: 0.19MB + Index: 0.08MB + Engine InnoDB
    wp_term_relationships: Data: 0.25MB + Index: 0.09MB + Engine InnoDB
    wp_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_termmeta: Data: 0.01MB + Index: 0.02MB + Engine MyISAM
    wp_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_ualp_user_activity: Data: 47.58MB + Index: 0.00MB + Engine InnoDB
    wp_usermeta: Data: 9.52MB + Index: 11.03MB + Engine InnoDB
    wp_users: Data: 0.48MB + Index: 0.42MB + Engine InnoDB
    wp_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_admin_notes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wc_customer_lookup: Data: 0.19MB + Index: 0.17MB + Engine InnoDB
    wp_wc_download_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wc_order_coupon_lookup: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
    wp_wc_order_product_lookup: Data: 0.31MB + Index: 0.39MB + Engine InnoDB
    wp_wc_order_stats: Data: 0.23MB + Index: 0.19MB + Engine InnoDB
    wp_wc_order_tax_lookup: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
    wp_wc_product_attributes_lookup: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_product_meta_lookup: Data: 0.14MB + Index: 0.17MB + Engine InnoDB
    wp_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wc_tax_rate_classes: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_wc_webhooks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wdr_order_discounts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wdr_order_item_discounts: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_wdr_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wfblockediplog: Data: 0.02MB + Index: 0.02MB + Engine MyISAM
    wp_wfblocks7: Data: 0.04MB + Index: 0.03MB + Engine MyISAM
    wp_wfconfig: Data: 0.41MB + Index: 0.01MB + Engine MyISAM
    wp_wfcrawlers: Data: 0.06MB + Index: 0.03MB + Engine MyISAM
    wp_wffilechanges: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wffilemods: Data: 2.33MB + Index: 0.47MB + Engine MyISAM
    wp_wfhits: Data: 11.89MB + Index: 2.83MB + Engine MyISAM
    wp_wfhoover: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wfissues: Data: 0.02MB + Index: 0.01MB + Engine MyISAM
    wp_wfknownfilelist: Data: 1.24MB + Index: 0.14MB + Engine MyISAM
    wp_wflivetraffichuman: Data: 1.19MB + Index: 1.71MB + Engine MyISAM
    wp_wflocs: Data: 0.01MB + Index: 0.01MB + Engine MyISAM
    wp_wflogins: Data: 0.31MB + Index: 0.07MB + Engine MyISAM
    wp_wfls_2fa_secrets: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wfls_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wfnotifications: Data: 0.02MB + Index: 0.00MB + Engine MyISAM
    wp_wfpendingissues: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wfreversecache: Data: 0.01MB + Index: 0.00MB + Engine MyISAM
    wp_wfsnipcache: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_wfstatus: Data: 0.12MB + Index: 0.05MB + Engine MyISAM
    wp_wftrafficrates: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wpaas_activity_log: Data: 0.16MB + Index: 0.00MB + Engine InnoDB
    wp_wpml_mails: Data: 316.58MB + Index: 0.00MB + Engine InnoDB
    wp_wt_iew_action_history: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wt_iew_mapping_template: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_yoast_indexable: Data: 1.52MB + Index: 0.44MB + Engine InnoDB
    wp_yoast_indexable_hierarchy: Data: 0.08MB + Index: 0.08MB + Engine InnoDB
    wp_yoast_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_yoast_primary_term: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_yoast_seo_links: Data: 0.22MB + Index: 0.14MB + Engine InnoDB
    wp_yoast_seo_meta: Data: 0.05MB + Index: 0.06MB + Engine MyISAM
    
    ### Post Type Counts ###
    
    acf-field: 12
    acf-field-group: 1
    attachment: 1462
    custom_css: 3
    da_image: 1
    et_body_layout: 13
    et_footer_layout: 4
    et_header_layout: 7
    et_pb_layout: 149
    et_tb_item: 14
    et_template: 56
    et_theme_builder: 2
    icwoo-url: 1
    nav_menu_item: 53
    nf_sub: 2
    oembed_cache: 16
    page: 66
    pewc_field: 7
    pewc_group: 1
    pewc_product_extra: 34
    popup: 3
    popup_theme: 7
    post: 25
    product: 92
    product_variation: 801
    product-feed: 1
    quick_order_forms: 8
    revision: 2533
    sdm_downloads: 4
    seedprod: 2
    shop_coupon: 78
    shop_order: 5417
    shop_order_refund: 107
    timeline_post: 4
    wp_global_styles: 1
    wpcf7_contact_form: 5
    wpcode: 52
    ywcm_message: 2
    
    ### Security ###
    
    Secure connection (HTTPS): ✔
    Hide errors from visitors: ✔
    
    ### Active Plugins (62) ###
    
    Gravity Perks: by Gravity Wiz – 2.3.3
    Gravity Forms: by Gravity Forms – 2.7.12
    404 to 301 - Redirect, Log and Notify 404 Errors: by Joel James – 3.1.4
    AddToAny Share Buttons: by AddToAny – 1.8.6
    Admin Customizer: by Nilambar Sharma – 2.2.6
    Admin Menu Editor: by Janis Elsts – 1.11
    Adminimize: by Frank Bültge – 1.11.9
    Advanced Custom Fields: by WP Engine – 6.1.7
    Bloom: by Elegant Themes – 1.3.12
    PublishPress Capabilities: by PublishPress – 2.8.1
    Coming Soon Page, Maintenance Mode, Landing Pages & WordPress Website Builder by SeedProd: by SeedProd – 6.15.7
    Disable Gutenberg: by Jeff Starr – 2.9
    Easy Media Download: by naa986 – 1.1.9
    Enable Media Replace: by ShortPixel – 4.1.2
    Facebook for WooCommerce: by Facebook – 3.0.27
    Folders: by Premio – 2.9.2
    Site Kit by Google: by Google – 1.104.0
    GP eCommerce Fields: by Gravity Wiz – 1.2.20
    GP Preview Submission: by Gravity Wiz – 1.3.14
    GP Unique ID: by Gravity Wiz – 1.4.14
    Gravity Forms Mailchimp Add-On: by Gravity Forms – 5.2.0
    Gravity Forms User Registration Add-On: by Gravity Forms – 5.1
    GP Conditional Pricing: by Gravity Wiz – 1.4.8
    GP Copy Cat: by Gravity Wiz – 1.4.65
    Hide Plugins: by brianmiyaji – 1.0.4
    WPCode Lite: by WPCode – 2.0.13
    Loginizer: by Softaculous – 1.7.9
    Mailchimp for WooCommerce: by Mailchimp – 2.8.3
    WooCommerce: No PO Boxes: by Maje Media LLC – 2.1.2
    My Custom Functions: by Space X-Chimp – 4.51
    Order Export & Order Import for WooCommerce: by WebToffee – 2.3.6
    LoginWP (Formerly Peter's Login Redirect): by LoginWP Team – 3.0.8.0
    WooCommerce Product Add-Ons Ultimate: by Plugin Republic – 3.13.4
    PW WooCommerce Bulk Edit: by Pimwick
    LLC – 2.117
    
    Qty Increment Buttons for WooCommerce: by taisho – 2.7.5
    Redirection: by John Godley – 5.3.10
    Rename wp-login.php: by Ella van Durpe – 2.6.0
    Reveal IDs: by Oliver Schlöbe – 1.5.5
    Shortcodes Ultimate: by Vova Anokhin – 5.13.1
    Sucuri Security - Auditing, Malware Scanner and Hardening: by Sucuri Inc. – 1.8.39
    Divi Supreme Pro: by Divi Supreme – 4.9.32
    TaxJar - Sales Tax Automation for WooCommerce: by TaxJar – 4.1.5
    Increase Maximum Upload File Size: by Imagify – 2.0.4
    User Activity Log: by Solwin Infotech – 1.6.3
    View Admin As: by Jory Hogeveen – 1.8.8
    WooCommerce No Shipping Message: by dangoodman – 2.1.4
    Weather Effect: by A WP Life – 1.4.6
    Ajax add to cart for WooCommerce: by QuadLayers – 2.2.0
    Woo Discount Rules PRO 2.0: by Flycart – 2.5.3
    Woo Discount Rules: by Flycart – 2.6.0
    Advanced Order Export For WooCommerce: by AlgolPlus – 3.4.0
    Variation Swatches for WooCommerce: by Emran Ahmed – 2.0.24
    Woocommerce Add-to-Cart Custom Redirect: by ForwardFlip – 1.2.12
    WooCommerce Checkout Manager: by QuadLayers – 7.1.7
    WooCommerce Stripe Gateway: by WooCommerce – 7.4.1
    WooCommerce Google Analytics Integration: by WooCommerce – 1.8.2
    WP Menu Cart: by WP Overnight – 2.14.0
    WooCommerce Quick Order Forms: by IgniteWoo.com – 3.0.6
    WooCommerce - ShipStation Integration: by WooCommerce – 4.3.7
    WooCommerce: by Automattic – 7.8.2
    Yoast SEO: by Team Yoast – 20.10
    WP Mail Logging: by WP Mail Logging Team – 1.12.0
    
    ### Inactive Plugins (19) ###
    
    Add From Server: by Dion Hulse – 3.4.5
    Automatic Copyright Year: by WPSOS – 1.1
    BackUpWordPress: by XIBO Ltd – 3.13
    Contact Form 7: by Takayuki Miyoshi – 5.7.7
    Divi Ghoster: by Aspen Grove Studios – 2.1.3
    GTM4WP: by Thomas Geiger – 1.16.2
    Health Check & Troubleshooting: by The WordPress.org community – 1.6.0
    Limit Login Attempts: by Johan Eenfeldt – 1.7.2
    Master Slider: by averta – 3.9.1
    MC4WP: Mailchimp for WordPress: by ibericode – 4.9.5
    Product Feed Manager for WooCommerce: by RexTheme – 7.3.2
    Product Feed PRO for WooCommerce: by AdTribes.io – 12.7.8
    Product Reviews Import Export for WooCommerce: by WebToffee – 1.4.9
    SVG Support: by Benbodhi – 2.5.5
    WooCommerce Admin: by WooCommerce – 3.3.2
    WooCommerce Autoload Cart: by Jamie Chong – 1.2
    WooCommerce Dynamic Pricing: by Lucas Stark – 3.1.9 (update to version 3.2.3 is available)
    Wordfence Security: by Wordfence – 7.10.0
    YITH Pre-Order for WooCommerce: by YITH – 2.13.0
    
    ### Dropin Plugins (2) ###
    
    db-error.php: db-error.php
    object-cache.php: object-cache.php
    
    ### Must Use Plugins (2) ###
    
    Object Cache Pro (MU): by Rhubarb Group – 1.18.2
    System Plugin: by  – 4.91.2
    
    ### Settings ###
    
    API Enabled: ✔
    Force SSL: –
    Currency: USD ($)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 0
    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 screen enabled: –
    HPOS feature enabled: –
    Order datastore: WC_Order_Data_Store_CPT
    HPOS data sync enabled: –
    
    ### WC Pages ###
    
    Shop base: #909 - /shop/
    Cart: #910 - /cart/
    Checkout: #911 - /checkout/
    My account: #912 - /mymaluna/
    Terms and conditions: #2028 - /terms-conditions/
    
    ### Theme ###
    
    Name: GLabs
    Version: 5
    Author URL: 
    Child Theme: ✔
    Parent Theme Name: Divi
    Parent Theme Version: 4.22.0
    Parent Theme Author URL: http://www.elegantthemes.com
    WooCommerce Support: ✔
    
    ### Templates ###
    
    Overrides: –
    
    ### Admin ###
    
    Enabled Features: activity-panels
    analytics
    product-block-editor
    coupons
    customer-effort-score-tracks
    import-products-task
    experimental-fashion-sample-products
    shipping-smart-defaults
    shipping-setting-tour
    homescreen
    marketing
    mobile-app-banner
    navigation
    onboarding
    onboarding-tasks
    remote-inbox-notifications
    remote-free-extensions
    payment-gateway-suggestions
    shipping-label-banner
    subscriptions
    store-alerts
    transient-notices
    woo-mobile-welcome
    wc-pay-promotion
    wc-pay-welcome-page
    
    Disabled Features: core-profiler
    minified-js
    new-product-management-experience
    product-variation-management
    settings
    async-product-editor-category-field
    
    Daily Cron: ✔ Next scheduled: 2023-08-17 10:54:05 -04:00
    Options: ✔
    Notes: 7
    Onboarding: completed
    
    ### Action Scheduler ###
    
    Canceled: 1
    Oldest: 2023-07-23 21:46:17 -0400
    Newest: 2023-07-23 21:46:17 -0400
    
    Complete: 2,925
    Oldest: 2023-07-16 10:01:02 -0400
    Newest: 2023-08-16 09:42:31 -0400
    
    Failed: 23
    Oldest: 2022-12-28 09:13:07 -0500
    Newest: 2023-05-19 18:03:26 -0400
    
    Pending: 4
    Oldest: 2023-08-16 09:56:32 -0400
    Newest: 2023-08-17 08:26:49 -0400
    
    
    ### Status report information ###
    
    Generated at: 2023-08-16 09:50:08 -04:00
    
    Thread Starter glabs

    (@glabs)

    This is the error that I get in the log:

    [15-Aug-2023 19:10:04 UTC] PHP Fatal error: Uncaught TypeError: array_filter(): Argument #1 ($array) must be of type array, string given in /var/web/site/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/CustomerEffortScoreTracks.php:465
    
    PHP Stacktrace:
    - undefined
    - undefined
    - undefined
    - undefined
    - undefined
    - undefined
    - undefined
    /var/web/site/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/CustomerEffortScoreTracks.php(465): array_filter('', Object(Closure))
    /var/web/site/public_html/wp-includes/class-wp-hook.php(310): Automattic\WooCommerce\Internal\Admin\CustomerEffortScoreTracks->maybe_clear_ces_tracks_queue('')
    /var/web/site/public_html/wp-includes/class-wp-hook.php(334): WP_Hook->apply_filters(NULL, Array)
    /var/web/site/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array)
    /var/web/site/public_html/wp-admin/admin.php(175): do_action('admin_init')
    /var/web/site/public_html/wp-admin/plugins.php(10): require_once('/var/web/site/p...')
    {main} thrown in /var/web/site/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/CustomerEffortScoreTracks.php on line 465
    Thread Starter glabs

    (@glabs)

    Hi @xue28

    Thank you for your help. I had already tested with all plugins except Woocommerce and Facebook for Woocommerce disabled and also with some WP default themes and I continued to get the error. I also re-tested with the latest version of the plugin (3.0.27) and it is still causing a critical error.

    Here’s the system report from the staging site where I’m testing from (currently with FB for Woocommerce inactive so that I could produce the report):

    WordPress Environment
    
    WordPress address (URL): http://lnx.920.myftpupload.com
    Site address (URL): http://lnx.920.myftpupload.com
    WC Version: 7.8.2
    REST API Version: ✔ 7.8.2
    WC Blocks Version: ✔ 10.2.4
    Action Scheduler Version: ✔ 3.5.4
    Log Directory Writable: ✔
    WP Version: 6.2.2
    WP Multisite: –
    WP Memory Limit: 256 MB
    WP Debug Mode: ✔
    WP Cron: ✔
    Language: en_US
    External object cache: – Server Environment Server Info: Apache
    PHP Version: 8.0.27
    PHP Post Max Size: 100 MB
    PHP Time Limit: 0
    PHP Max Input Vars: 1000
    cURL Version: 8.0.1
    OpenSSL/1.1.1t SUHOSIN Installed: –
    MySQL Version: 5.7.26-29-log
    Max Upload Size: 100 MB
    Default Timezone is UTC: ✔
    fsockopen/cURL: ✔
    SoapClient: ✔
    DOMDocument: ✔
    GZip: ✔
    Multibyte String: ✔
    Remote Post: ✔
    Remote Get: ✔ Database WC Database Version: 7.8.2
    WC Database Prefix: wp_hgvjyy8h7g_
    Total Database Size: 266.67MB
    Database Data Size: 193.00MB
    Database Index Size: 73.67MB
    wp_hgvjyy8h7g_woocommerce_sessions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_woocommerce_api_keys: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_hgvjyy8h7g_woocommerce_attribute_taxonomies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_woocommerce_downloadable_product_permissions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_woocommerce_order_items: Data: 0.59MB + Index: 0.38MB + Engine MyISAM
    wp_hgvjyy8h7g_woocommerce_order_itemmeta: Data: 4.30MB + Index: 3.03MB + Engine MyISAM
    wp_hgvjyy8h7g_woocommerce_tax_rates: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_hgvjyy8h7g_woocommerce_tax_rate_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_woocommerce_shipping_zones: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_woocommerce_shipping_zone_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_woocommerce_shipping_zone_methods: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_woocommerce_payment_tokens: Data: 0.07MB + Index: 0.04MB + Engine MyISAM
    wp_hgvjyy8h7g_woocommerce_payment_tokenmeta: Data: 0.17MB + Index: 0.16MB + Engine MyISAM
    wp_hgvjyy8h7g_woocommerce_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    cerber_acl: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    cerber_blocks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    cerber_countries: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    cerber_lab: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    cerber_lab_ip: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    cerber_lab_net: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    cerber_log: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    cerber_qmem: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    cerber_traffic: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_hgvjyy8h7g_404_to_301: Data: 10.18MB + Index: 0.77MB + Engine MyISAM
    wp_hgvjyy8h7g_actionscheduler_actions: Data: 0.81MB + Index: 0.30MB + Engine MyISAM
    wp_hgvjyy8h7g_actionscheduler_claims: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_actionscheduler_groups: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_hgvjyy8h7g_actionscheduler_logs: Data: 0.48MB + Index: 0.32MB + Engine MyISAM
    wp_hgvjyy8h7g_adtribes_my_conversions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_aryo_activity_log: Data: 5.52MB + Index: 0.00MB + Engine InnoDB
    wp_hgvjyy8h7g_bp_activity: Data: 0.13MB + Index: 0.27MB + Engine MyISAM
    wp_hgvjyy8h7g_bp_activity_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_bp_groups: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_bp_groups_groupmeta: Data: 0.01MB + Index: 0.01MB + Engine MyISAM
    wp_hgvjyy8h7g_bp_groups_members: Data: 0.01MB + Index: 0.04MB + Engine MyISAM
    wp_hgvjyy8h7g_bp_invitations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_bp_notifications: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_bp_notifications_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_bp_optouts: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_bp_xprofile_data: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_bp_xprofile_fields: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_hgvjyy8h7g_bp_xprofile_groups: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_bp_xprofile_meta: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_hgvjyy8h7g_cerber_files: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_hgvjyy8h7g_cerber_sets: Data: 0.13MB + Index: 0.00MB + Engine InnoDB
    wp_hgvjyy8h7g_cerber_uss: Data: 0.13MB + Index: 0.02MB + Engine InnoDB
    wp_hgvjyy8h7g_commentmeta: Data: 1.52MB + Index: 0.66MB + Engine InnoDB
    wp_hgvjyy8h7g_comments: Data: 8.52MB + Index: 9.09MB + Engine InnoDB
    wp_hgvjyy8h7g_csp3_subscribers: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_et_bloom_stats: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_ewwwio_images: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_hgvjyy8h7g_failed_jobs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_ip_geo_block_cache: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_ip_geo_block_logs: Data: 0.10MB + Index: 0.01MB + Engine MyISAM
    wp_hgvjyy8h7g_ip_geo_block_stat: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_hgvjyy8h7g_loginizer_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_hgvjyy8h7g_logy_users: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_mailchimp_carts: Data: 0.14MB + Index: 0.02MB + Engine MyISAM
    wp_hgvjyy8h7g_mailchimp_jobs: Data: 0.02MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_maxbuttons_buttons: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_hgvjyy8h7g_nm_personalized: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_options: Data: 8.52MB + Index: 2.91MB + Engine InnoDB
    wp_hgvjyy8h7g_pmxe_exports: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_pmxe_google_cats: Data: 0.26MB + Index: 0.05MB + Engine MyISAM
    wp_hgvjyy8h7g_pmxe_posts: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_pmxe_templates: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_postmeta: Data: 40.56MB + Index: 39.16MB + Engine InnoDB
    wp_hgvjyy8h7g_posts: Data: 10.52MB + Index: 3.78MB + Engine InnoDB
    wp_hgvjyy8h7g_ppress_coupons: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_hgvjyy8h7g_ppress_customers: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_hgvjyy8h7g_ppress_forms: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_hgvjyy8h7g_ppress_formsmeta: Data: 0.03MB + Index: 0.02MB + Engine MyISAM
    wp_hgvjyy8h7g_ppress_meta_data: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_ppress_ordermeta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_hgvjyy8h7g_ppress_orders: Data: 0.02MB + Index: 0.13MB + Engine InnoDB
    wp_hgvjyy8h7g_ppress_plans: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_hgvjyy8h7g_ppress_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_hgvjyy8h7g_ppress_subscriptions: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    wp_hgvjyy8h7g_queue: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_redirection_404: Data: 0.05MB + Index: 0.02MB + Engine MyISAM
    wp_hgvjyy8h7g_redirection_groups: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_redirection_items: Data: 0.00MB + Index: 0.02MB + Engine MyISAM
    wp_hgvjyy8h7g_redirection_logs: Data: 0.01MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_signups: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_termmeta: Data: 0.01MB + Index: 0.02MB + Engine MyISAM
    wp_hgvjyy8h7g_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_hgvjyy8h7g_term_relationships: Data: 0.09MB + Index: 0.06MB + Engine InnoDB
    wp_hgvjyy8h7g_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_hgvjyy8h7g_tm_taskmeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_tm_tasks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_usermeta: Data: 8.52MB + Index: 10.03MB + Engine InnoDB
    wp_hgvjyy8h7g_users: Data: 0.45MB + Index: 0.42MB + Engine InnoDB
    wp_hgvjyy8h7g_usin_events: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_usin_user_data: Data: 0.11MB + Index: 0.12MB + Engine MyISAM
    wp_hgvjyy8h7g_wcepp_messages: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_wc_admin_notes: Data: 0.03MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_wc_admin_note_actions: Data: 0.01MB + Index: 0.01MB + Engine MyISAM
    wp_hgvjyy8h7g_wc_category_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_wc_customer_lookup: Data: 0.18MB + Index: 0.13MB + Engine MyISAM
    wp_hgvjyy8h7g_wc_download_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_wc_order_coupon_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_wc_order_product_lookup: Data: 0.31MB + Index: 0.22MB + Engine MyISAM
    wp_hgvjyy8h7g_wc_order_stats: Data: 0.26MB + Index: 0.14MB + Engine MyISAM
    wp_hgvjyy8h7g_wc_order_tax_lookup: Data: 0.14MB + Index: 0.16MB + Engine MyISAM
    wp_hgvjyy8h7g_wc_product_attributes_lookup: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_hgvjyy8h7g_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_hgvjyy8h7g_wc_product_meta_lookup: Data: 0.08MB + Index: 0.10MB + Engine MyISAM
    wp_hgvjyy8h7g_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_hgvjyy8h7g_wc_reserved_stock: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_wc_tax_rate_classes: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_hgvjyy8h7g_wc_webhooks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_hgvjyy8h7g_wpaas_activity_log: Data: 0.16MB + Index: 0.00MB + Engine InnoDB
    wp_hgvjyy8h7g_wpml_mails: Data: 89.08MB + Index: 0.18MB + Engine MyISAM
    wp_hgvjyy8h7g_yoast_indexable: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    wp_hgvjyy8h7g_yoast_indexable_hierarchy: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_hgvjyy8h7g_yoast_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_hgvjyy8h7g_yoast_primary_term: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_hgvjyy8h7g_yoast_seo_links: Data: 0.05MB + Index: 0.01MB + Engine MyISAM
    wp_hgvjyy8h7g_yoast_seo_meta: Data: 0.14MB + Index: 0.14MB + Engine MyISAM
    wp_hgvjyy8h7g_yz_bookmark: Data: 0.00MB + Index: 0.00MB + Engine MyISAM Post Type Counts ajde_events: 483
    amn_mi-lite: 1
    attachment: 1027
    bp_group_type: 4
    bp-email: 25
    bsf_custom_fonts: 1
    buddyforms: 2
    custom_css: 7
    customize_changeset: 1
    et_body_layout: 2
    et_footer_layout: 1
    et_header_layout: 3
    et_pb_layout: 61
    et_template: 4
    et_theme_builder: 1
    gpages: 1
    ia_invites: 2
    jetpack_migration: 2
    nav_menu_item: 30
    page: 60
    payment_retry: 420
    popup: 3
    popup_theme: 9
    post: 61
    product: 38
    product_variation: 764
    product-feed: 1
    quick_order_forms: 1
    safecss: 1
    seedprod: 5
    shop_coupon: 14
    shop_order: 5595
    shop_order_refund: 115
    shop_subscription: 508
    tablepress_table: 12
    tt_font_control: 1
    wc_membership_plan: 8
    wc_user_membership: 2868
    woocustomemails: 1
    wp_global_styles: 1
    wpgform: 4 Security Secure connection (HTTPS): ✔
    Hide errors from visitors: ✔ Active Plugins (11) Admin Customizer: by Nilambar Sharma – 2.2.6
    Admin Menu Editor: by Janis Elsts – 1.11
    Adminimize: by Frank Bültge – 1.11.9
    All-in-One WP Migration: by ServMask – 7.76
    Activity Log: by Activity Log Team – 2.8.6
    BackUpWordPress: by XIBO Ltd – 3.13
    Hide Plugins: by brianmiyaji – 1.0.4
    Loginizer: by Softaculous – 1.7.9
    Sucuri Security - Auditing, Malware Scanner and Hardening: by Sucuri Inc. – 1.8.39
    WooCommerce: by Automattic – 7.8.2
    WP-Optimize - Clean, Compress, Cache: by David Anderson
    Ruhani Rabin
    Team Updraft – 3.2.15 Inactive Plugins (60) 404 to 301 - Redirect, Log and Notify 404 Errors: by Joel James – 3.1.4
    AddToAny Share Buttons: by AddToAny – 1.8.6
    Advanced Order Export For WooCommerce: by AlgolPlus – 3.4.0
    Akismet Anti-Spam: Spam Protection: by Automattic - Anti Spam Team – 5.2
    Autocomplete WooCommerce Orders: by QuadLayers – 3.1.0
    Automatic Copyright Year: by WPSOS – 1.1
    Bloom: by Elegant Themes – 1.3.12
    Bowe Codes: by imath – 2.1
    BuddyPress: by The BuddyPress Community – 11.2.0
    Coming Soon Page, Maintenance Mode, Landing Pages & WordPress Website Builder by SeedProd: by SeedProd – 6.15.7
    Custom Fonts: by Brainstorm Force – 2.0.1
    Divi Ghoster: by Aspen Grove Studios – 2.1.6
    Duplicate Page: by mndpsingh287 – 4.5.2
    Easy Google Fonts: by Titanium Themes – 2.0.4
    Error Log Monitor: by Janis Elsts – 1.7.7
    EventON: by AshanJay – 2.6.17
    Extended CRM For Users Insights: by denizz – 1.2.1
    Facebook for WooCommerce: by Facebook – 3.0.27
    Flickr Justified Gallery: by Miro Mannino – 3.5
    Gravity Forms: by Gravity Forms – 2.6.1
    GZip Ninja Speed Compression: by CustomWPNinjas – 1.2.3
    IP Geo Block: by tokkonopapa – 3.0.17.4
    Limit Groups per User: by BuddyDev – 2.0.2
    Mailchimp for WooCommerce: by Mailchimp – 2.8.3
    My Custom Functions: by Space X-Chimp – 4.51
    PixelYourSite: by PixelYourSite – 9.4.0
    Popup Maker: by Popup Maker – 1.18.2
    PPOM for WooCommerce: by Themeisle – 32.0.8
    Printful Integration for WooCommerce: by Printful – 2.2.2
    Product Feed Manager for WooCommerce: by RexTheme – 7.3.2
    Product Slider and Carousel with Category for WooCommerce: by WP OnlineSupport
    Essential Plugin – 2.8 ProfilePress: by ProfilePress Membership Team – 4.11.0
    PublishPress Capabilities: by PublishPress – 2.8.1
    PW WooCommerce Bulk Edit: by Pimwick
    LLC – 2.117 Redirect After Login: by marcelotorres – 0.1.9
    Redirection: by John Godley – 5.3.10
    Rename wp-login.php: by Ella van Durpe – 2.6.0
    Role Based Price For WooCommerce: by Varun Sridharan – 3.3.7
    Site Kit by Google: by Google – 1.104.0
    TablePress: by Tobias Bäthge – 2.1.5
    Users Insights: by Pexeto – 3.8.2
    Wbcom Designs - BuddyPress Create Group Type: by Wbcom Designs – 2.7.0
    WC User Role Based Coupon: by Varun Sridharan – 0.2
    WooCommerce Checkout Manager: by QuadLayers – 7.1.7
    WooCommerce Dynamic Pricing: by Lucas Stark – 3.1.0 (update to version 3.2.2 is available)
    WooCommerce Google Analytics Integration: by WooCommerce – 1.8.2
    WooCommerce Memberships: by SkyVerge – 1.10.4 (update to version 1.25.0 is available)
    WooCommerce No Shipping Message: by dangoodman – 2.1.4
    WooCommerce Shipping & Tax: by WooCommerce – 2.2.5
    WooCommerce Stripe Gateway: by WooCommerce – 7.4.1
    WooCommerce Subscriptions: by Prospress Inc. – 2.2.16 (update to version 5.2.0 is available)
    Woo Custom Emails Per Product: by Alex Mustin – 2.2.9
    WP-DBManager: by Lester 'GaMerZ' Chan – 2.80.9
    WP Cerber Security, Anti-spam & Malware Scan: by Cerber Tech Inc. – 9.3
    WP Crontrol: by John Blackbourn & crontributors – 1.15.3
    WP Mail Logging: by WP Mail Logging Team – 1.12.0
    WP Performance Score Booster: by Dipak C. Gajjar – 2.2.1
    WPT Custom Mo File: by WP-Translations Team – 1.2.2
    Yoast SEO: by Team Yoast – 20.10
    YYDevelopment - Show Pages ID: by YYDevelopment – 1.5.5 Dropin Plugins (2) db-error.php: db-error.php
    object-cache.php: object-cache.php Must Use Plugins (3) installatron_hide_status_test.php: by –
    Object Cache Pro (MU): by Rhubarb Group – 1.18.2
    System Plugin: by – 4.78.1 Settings API Enabled: ✔
    Force SSL: –
    Currency: USD ($)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 0
    Taxonomies: Product Types: external (external)
    grouped (grouped)
    simple (simple)
    subscription (subscription)
    variable (variable)
    variable subscription (variable-subscription) 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 screen enabled: –
    HPOS feature enabled: –
    Order datastore: WC_Order_Data_Store_CPT
    HPOS data sync enabled: – WC Pages Shop base: #1520 - /shop/
    Cart: #1521 - /cart/
    Checkout: #1522 - /checkout/
    My account: #1523 - /mykoala/
    Terms and conditions: #2523 - /terms-and-conditions/ Theme Name: Twenty Twenty
    Version: 2.2
    Author URL: https://wordpress.org/
    Child Theme: ❌ – If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme
    WooCommerce Support: ✔ Templates Overrides: – Admin Enabled Features: activity-panels
    analytics
    product-block-editor
    coupons
    customer-effort-score-tracks
    import-products-task
    experimental-fashion-sample-products
    shipping-smart-defaults
    shipping-setting-tour
    homescreen
    marketing
    mobile-app-banner
    navigation
    onboarding
    onboarding-tasks
    remote-inbox-notifications
    remote-free-extensions
    payment-gateway-suggestions
    shipping-label-banner
    subscriptions
    store-alerts
    transient-notices
    woo-mobile-welcome
    wc-pay-promotion
    wc-pay-welcome-page Disabled Features: core-profiler
    minified-js
    new-product-management-experience
    product-variation-management
    settings
    async-product-editor-category-field Daily Cron: ✔ Next scheduled: 2023-07-07 03:09:39 -04:00
    Options: ✔
    Notes: 64
    Onboarding: completed Action Scheduler Canceled: 1
    Oldest: 2023-06-12 20:56:16 -0400
    Newest: 2023-06-12 20:56:16 -0400 Complete: 1,773
    Oldest: 2023-06-05 09:34:29 -0400
    Newest: 2023-07-05 23:09:38 -0400 Failed: 255
    Oldest: 2019-01-15 15:53:19 -0500
    Newest: 2023-07-06 05:52:20 -0400 Pending: 648
    Oldest: 2023-07-06 15:38:42 -0400
    Newest: 2025-05-15 00:00:00 -0400 Status report information Generated at: 2023-07-06 09:23:13 -04:00
    `
    Thread Starter glabs

    (@glabs)

    Here is the information we’re able to get when we downgrade back to PHP 7.4. With PHP 8, the critical error prevents us from producing the report:

    `
    ### WordPress Environment ###
    
    WordPress address (URL): https://koalasports.com
    Site address (URL): https://koalasports.com
    WC Version: 7.8.1
    REST API Version: ✔ 7.8.1
    WC Blocks Version: ✔ 10.2.4
    Action Scheduler Version: ✔ 3.5.4
    Log Directory Writable: ✔
    WP Version: 6.2.2
    WP Multisite: –
    WP Memory Limit: 256 MB
    WP Debug Mode: ✔
    WP Cron: ✔
    Language: en_US
    External object cache: –
    
    ### Server Environment ###
    
    Server Info: Apache
    PHP Version: 7.4.33
    PHP Post Max Size: 100 MB
    PHP Time Limit: 0
    PHP Max Input Vars: 1000
    cURL Version: 8.0.1
    OpenSSL/1.1.1t
    
    SUHOSIN Installed: –
    MySQL Version: 5.7.26-29-log
    Max Upload Size: 100 MB
    Default Timezone is UTC: ✔
    fsockopen/cURL: ✔
    SoapClient: ✔
    DOMDocument: ✔
    GZip: ✔
    Multibyte String: ✔
    Remote Post: ✔
    Remote Get: ✔
    
    ### Database ###
    
    WC Database Version: 7.8.1
    WC Database Prefix: wp_4m29kzfc74_
    Total Database Size: 243.30MB
    Database Data Size: 182.23MB
    Database Index Size: 61.07MB
    wp_4m29kzfc74_woocommerce_sessions: Data: 8.88MB + Index: 0.04MB + Engine MyISAM
    wp_4m29kzfc74_woocommerce_api_keys: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_4m29kzfc74_woocommerce_attribute_taxonomies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_woocommerce_downloadable_product_permissions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_woocommerce_order_items: Data: 0.60MB + Index: 0.37MB + Engine MyISAM
    wp_4m29kzfc74_woocommerce_order_itemmeta: Data: 4.33MB + Index: 2.98MB + Engine MyISAM
    wp_4m29kzfc74_woocommerce_tax_rates: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_4m29kzfc74_woocommerce_tax_rate_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_woocommerce_shipping_zones: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_woocommerce_shipping_zone_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_woocommerce_shipping_zone_methods: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_woocommerce_payment_tokens: Data: 0.07MB + Index: 0.04MB + Engine MyISAM
    wp_4m29kzfc74_woocommerce_payment_tokenmeta: Data: 0.17MB + Index: 0.14MB + Engine MyISAM
    wp_4m29kzfc74_woocommerce_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    cerber_acl: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    cerber_blocks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    cerber_countries: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    cerber_lab: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    cerber_lab_ip: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    cerber_lab_net: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    cerber_log: Data: 0.33MB + Index: 0.22MB + Engine InnoDB
    cerber_qmem: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    cerber_traffic: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_4m29kzfc74_404_to_301: Data: 10.18MB + Index: 0.77MB + Engine MyISAM
    wp_4m29kzfc74_actionscheduler_actions: Data: 1.29MB + Index: 0.68MB + Engine MyISAM
    wp_4m29kzfc74_actionscheduler_claims: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_actionscheduler_groups: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_4m29kzfc74_actionscheduler_logs: Data: 1.02MB + Index: 0.72MB + Engine MyISAM
    wp_4m29kzfc74_adtribes_my_conversions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_aryo_activity_log: Data: 1.52MB + Index: 0.00MB + Engine InnoDB
    wp_4m29kzfc74_bp_activity: Data: 0.13MB + Index: 0.28MB + Engine MyISAM
    wp_4m29kzfc74_bp_activity_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_bp_groups: Data: 0.01MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_bp_groups_groupmeta: Data: 0.01MB + Index: 0.02MB + Engine MyISAM
    wp_4m29kzfc74_bp_groups_members: Data: 0.02MB + Index: 0.05MB + Engine MyISAM
    wp_4m29kzfc74_bp_invitations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_bp_notifications: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_bp_notifications_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_bp_optouts: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_bp_xprofile_data: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_bp_xprofile_fields: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_4m29kzfc74_bp_xprofile_groups: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_bp_xprofile_meta: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_4m29kzfc74_cerber_files: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_4m29kzfc74_cerber_sets: Data: 0.13MB + Index: 0.00MB + Engine InnoDB
    wp_4m29kzfc74_cerber_uss: Data: 0.05MB + Index: 0.02MB + Engine InnoDB
    wp_4m29kzfc74_commentmeta: Data: 0.48MB + Index: 0.50MB + Engine InnoDB
    wp_4m29kzfc74_comments: Data: 5.52MB + Index: 8.06MB + Engine InnoDB
    wp_4m29kzfc74_csp3_subscribers: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_et_bloom_stats: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_ewwwio_images: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_4m29kzfc74_failed_jobs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_ip_geo_block_cache: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_ip_geo_block_logs: Data: 0.10MB + Index: 0.01MB + Engine MyISAM
    wp_4m29kzfc74_ip_geo_block_stat: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_4m29kzfc74_loginizer_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_4m29kzfc74_logy_users: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_mailchimp_carts: Data: 0.15MB + Index: 0.02MB + Engine MyISAM
    wp_4m29kzfc74_mailchimp_jobs: Data: 0.03MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_maxbuttons_buttons: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_4m29kzfc74_nm_personalized: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_options: Data: 18.16MB + Index: 4.84MB + Engine InnoDB
    wp_4m29kzfc74_pmxe_exports: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_pmxe_google_cats: Data: 0.26MB + Index: 0.05MB + Engine MyISAM
    wp_4m29kzfc74_pmxe_posts: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_pmxe_templates: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_postmeta: Data: 25.56MB + Index: 28.09MB + Engine InnoDB
    wp_4m29kzfc74_posts: Data: 5.52MB + Index: 3.59MB + Engine InnoDB
    wp_4m29kzfc74_ppress_coupons: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_4m29kzfc74_ppress_customers: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_4m29kzfc74_ppress_forms: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_4m29kzfc74_ppress_formsmeta: Data: 0.03MB + Index: 0.02MB + Engine MyISAM
    wp_4m29kzfc74_ppress_meta_data: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_ppress_ordermeta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_4m29kzfc74_ppress_orders: Data: 0.02MB + Index: 0.13MB + Engine InnoDB
    wp_4m29kzfc74_ppress_plans: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_4m29kzfc74_ppress_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_4m29kzfc74_ppress_subscriptions: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    wp_4m29kzfc74_queue: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_redirection_404: Data: 0.16MB + Index: 0.04MB + Engine MyISAM
    wp_4m29kzfc74_redirection_groups: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_redirection_items: Data: 0.00MB + Index: 0.02MB + Engine MyISAM
    wp_4m29kzfc74_redirection_logs: Data: 0.04MB + Index: 0.01MB + Engine MyISAM
    wp_4m29kzfc74_signups: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_termmeta: Data: 0.01MB + Index: 0.02MB + Engine MyISAM
    wp_4m29kzfc74_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_4m29kzfc74_term_relationships: Data: 0.08MB + Index: 0.05MB + Engine InnoDB
    wp_4m29kzfc74_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_4m29kzfc74_tm_taskmeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_tm_tasks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_usermeta: Data: 5.52MB + Index: 7.03MB + Engine InnoDB
    wp_4m29kzfc74_users: Data: 0.30MB + Index: 0.27MB + Engine InnoDB
    wp_4m29kzfc74_usin_events: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_usin_user_data: Data: 0.11MB + Index: 0.12MB + Engine MyISAM
    wp_4m29kzfc74_wcepp_messages: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_wc_admin_notes: Data: 0.03MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_wc_admin_note_actions: Data: 0.01MB + Index: 0.01MB + Engine MyISAM
    wp_4m29kzfc74_wc_category_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_wc_customer_lookup: Data: 0.18MB + Index: 0.14MB + Engine MyISAM
    wp_4m29kzfc74_wc_download_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_wc_order_coupon_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_wc_order_product_lookup: Data: 0.31MB + Index: 0.29MB + Engine MyISAM
    wp_4m29kzfc74_wc_order_stats: Data: 0.26MB + Index: 0.16MB + Engine MyISAM
    wp_4m29kzfc74_wc_order_tax_lookup: Data: 0.14MB + Index: 0.16MB + Engine MyISAM
    wp_4m29kzfc74_wc_product_attributes_lookup: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_4m29kzfc74_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_4m29kzfc74_wc_product_meta_lookup: Data: 0.08MB + Index: 0.10MB + Engine MyISAM
    wp_4m29kzfc74_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_4m29kzfc74_wc_reserved_stock: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_wc_tax_rate_classes: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_4m29kzfc74_wc_webhooks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_4m29kzfc74_wpaas_activity_log: Data: 0.14MB + Index: 0.00MB + Engine InnoDB
    wp_4m29kzfc74_wpml_mails: Data: 89.54MB + Index: 0.19MB + Engine MyISAM
    wp_4m29kzfc74_yoast_indexable: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    wp_4m29kzfc74_yoast_indexable_hierarchy: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_4m29kzfc74_yoast_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_4m29kzfc74_yoast_primary_term: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_4m29kzfc74_yoast_seo_links: Data: 0.05MB + Index: 0.01MB + Engine MyISAM
    wp_4m29kzfc74_yoast_seo_meta: Data: 0.14MB + Index: 0.14MB + Engine MyISAM
    wp_4m29kzfc74_yz_bookmark: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    
    ### Post Type Counts ###
    
    ajde_events: 500
    amn_mi-lite: 1
    attachment: 1027
    bp_group_type: 4
    bp-email: 25
    bsf_custom_fonts: 1
    buddyforms: 2
    custom_css: 7
    customize_changeset: 1
    et_body_layout: 2
    et_footer_layout: 1
    et_header_layout: 3
    et_pb_layout: 61
    et_template: 4
    et_theme_builder: 1
    gpages: 1
    ia_invites: 2
    jetpack_migration: 2
    nav_menu_item: 30
    page: 60
    payment_retry: 420
    popup: 3
    popup_theme: 9
    post: 63
    product: 38
    product_variation: 764
    product-feed: 1
    quick_order_forms: 1
    revision: 248
    safecss: 1
    seedprod: 5
    shop_coupon: 14
    shop_order: 5611
    shop_order_refund: 115
    shop_subscription: 508
    tablepress_table: 12
    tt_font_control: 1
    wc_membership_plan: 8
    wc_user_membership: 2877
    woocustomemails: 1
    wp_global_styles: 1
    wpgform: 4
    
    ### Security ###
    
    Secure connection (HTTPS): ✔
    Hide errors from visitors: ✔
    
    ### Active Plugins (50) ###
    
    404 to 301 - Redirect, Log and Notify 404 Errors: by Joel James – 3.1.4
    AddToAny Share Buttons: by AddToAny – 1.8.6
    Admin Customizer: by Nilambar Sharma – 2.2.6
    Admin Menu Editor: by Janis Elsts – 1.11
    Adminimize: by Frank Bültge – 1.11.9
    Activity Log: by Activity Log Team – 2.8.6
    Autocomplete WooCommerce Orders: by QuadLayers – 3.1.0
    BackUpWordPress: by XIBO Ltd – 3.13
    Product Feed Manager for WooCommerce: by RexTheme – 7.3.2
    Bowe Codes: by imath – 2.1
    Wbcom Designs - BuddyPress Create Group Type: by Wbcom Designs – 2.7.0
    BuddyPress: by The BuddyPress Community – 11.2.0
    PublishPress Capabilities: by PublishPress – 2.8.1
    Custom Fonts: by Brainstorm Force – 2.0.1
    Duplicate Page: by mndpsingh287 – 4.5.2
    Easy Google Fonts: by Titanium Themes – 2.0.4
    EventON: by AshanJay – 2.6.17
    Facebook for WooCommerce: by Facebook – 3.0.26
    Flickr Justified Gallery: by Miro Mannino – 3.5
    Site Kit by Google: by Google – 1.103.0
    GZip Ninja Speed Compression: by CustomWPNinjas – 1.2.3
    Hide Plugins: by brianmiyaji – 1.0.4
    Limit Groups per User: by BuddyDev – 2.0.2
    Loginizer: by Softaculous – 1.7.9
    Mailchimp for WooCommerce: by Mailchimp – 2.8.3
    My Custom Functions: by Space X-Chimp – 4.51
    PixelYourSite: by PixelYourSite – 9.3.9
    Printful Integration for WooCommerce: by Printful – 2.2.2
    PW WooCommerce Bulk Edit: by Pimwick
    LLC – 2.117
    
    Redirect After Login: by marcelotorres – 0.1.9
    Redirection: by John Godley – 5.3.10
    Rename wp-login.php: by Ella van Durpe – 2.6.0
    YYDevelopment - Show Pages ID: by YYDevelopment – 1.5.5
    Sucuri Security - Auditing, Malware Scanner and Hardening: by Sucuri Inc. – 1.8.39
    TablePress: by Tobias Bäthge – 2.1.4
    WooCommerce No Shipping Message: by dangoodman – 2.1.4
    Woo Custom Emails Per Product: by Alex Mustin – 2.2.9
    Advanced Order Export For WooCommerce: by AlgolPlus – 3.4.0
    WooCommerce Checkout Manager: by QuadLayers – 7.1.7
    WooCommerce Stripe Gateway: by WooCommerce – 7.4.1
    WooCommerce Google Analytics Integration: by WooCommerce – 1.8.2
    WooCommerce Memberships: by SkyVerge – 1.10.4 (update to version 1.25.0 is available)
    PPOM for WooCommerce: by Themeisle – 32.0.8
    WooCommerce Shipping & Tax: by WooCommerce – 2.2.5
    WooCommerce: by Automattic – 7.8.1
    WP Cerber Security, Anti-spam & Malware Scan: by Cerber Tech Inc. – 9.3
    WP Crontrol: by John Blackbourn & crontributors – 1.15.3
    WP Mail Logging: by WP Mail Logging Team – 1.12.0
    WP-Optimize - Clean, Compress, Cache: by David Anderson
    Ruhani Rabin
    Team Updraft – 3.2.15
    
    ProfilePress: by ProfilePress Membership Team – 4.11.0
    
    ### Inactive Plugins (21) ###
    
    Akismet Anti-Spam: Spam Protection: by Automattic - Anti Spam Team – 5.2
    All-in-One WP Migration: by ServMask – 7.76
    Automatic Copyright Year: by WPSOS – 1.1
    Bloom: by Elegant Themes – 1.3.12
    Coming Soon Page, Maintenance Mode, Landing Pages & WordPress Website Builder by SeedProd: by SeedProd – 6.15.7
    Divi Ghoster: by Aspen Grove Studios – 2.1.6
    Error Log Monitor: by Janis Elsts – 1.7.6
    Extended CRM For Users Insights: by denizz – 1.2.1
    Gravity Forms: by Gravity Forms – 2.6.1
    IP Geo Block: by tokkonopapa – 3.0.17.4
    Popup Maker: by Popup Maker – 1.18.1
    Product Slider and Carousel with Category for WooCommerce: by WP OnlineSupport
    Essential Plugin – 2.8
    
    Role Based Price For WooCommerce: by Varun Sridharan – 3.3.7
    Users Insights: by Pexeto – 3.8.2
    WC User Role Based Coupon: by Varun Sridharan – 0.2
    WooCommerce Dynamic Pricing: by Lucas Stark – 3.1.0 (update to version 3.2.2 is available)
    WooCommerce Subscriptions: by Prospress Inc. – 2.2.16 (update to version 5.1.3 is available)
    WP-DBManager: by Lester 'GaMerZ' Chan – 2.80.9
    WP Performance Score Booster: by Dipak C. Gajjar – 2.2.1
    WPT Custom Mo File: by WP-Translations Team – 1.2.2
    Yoast SEO: by Team Yoast – 20.10
    
    ### Dropin Plugins (2) ###
    
    db-error.php: db-error.php
    object-cache.php: object-cache.php
    
    ### Must Use Plugins (3) ###
    
    installatron_hide_status_test.php: by  –
    Object Cache Pro (MU): by Rhubarb Group – 1.18.2
    System Plugin: by  – 4.78.1
    
    ### Settings ###
    
    API Enabled: ✔
    Force SSL: –
    Currency: USD ($)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 0
    Taxonomies: Product Types: external (external)
    grouped (grouped)
    simple (simple)
    subscription (subscription)
    variable (variable)
    variable subscription (variable-subscription)
    
    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 screen enabled: –
    HPOS feature enabled: –
    Order datastore: WC_Order_Data_Store_CPT
    HPOS data sync enabled: –
    
    ### WC Pages ###
    
    Shop base: #1520 - /shop/
    Cart: #1521 - /cart/
    Checkout: #1522 - /checkout/
    My account: #1523 - /mykoala/
    Terms and conditions: #2523 - /terms-and-conditions/
    
    ### Theme ###
    
    Name: GLabs
    Version: 3.0.5
    Author URL: 
    Child Theme: ✔
    Parent Theme Name: Divi
    Parent Theme Version: 4.21.1
    Parent Theme Author URL: http://www.elegantthemes.com
    WooCommerce Support: ✔
    
    ### Templates ###
    
    Overrides: –
    
    ### Admin ###
    
    Enabled Features: activity-panels
    analytics
    product-block-editor
    coupons
    customer-effort-score-tracks
    import-products-task
    experimental-fashion-sample-products
    shipping-smart-defaults
    shipping-setting-tour
    homescreen
    marketing
    mobile-app-banner
    navigation
    onboarding
    onboarding-tasks
    remote-inbox-notifications
    remote-free-extensions
    payment-gateway-suggestions
    shipping-label-banner
    subscriptions
    store-alerts
    transient-notices
    woo-mobile-welcome
    wc-pay-promotion
    wc-pay-welcome-page
    
    Disabled Features: core-profiler
    minified-js
    new-product-management-experience
    product-variation-management
    settings
    async-product-editor-category-field
    
    Daily Cron: ✔ Next scheduled: 2023-07-04 00:30:58 -04:00
    Options: ✔
    Notes: 64
    Onboarding: completed
    
    ### Action Scheduler ###
    
    Canceled: 1
    Oldest: 2023-06-12 20:56:16 -0400
    Newest: 2023-06-12 20:56:16 -0400
    
    Complete: 2,264
    Oldest: 2023-06-02 11:21:08 -0400
    Newest: 2023-07-03 10:55:25 -0400
    
    Failed: 236
    Oldest: 2019-01-15 15:53:19 -0500
    Newest: 2023-01-26 08:59:37 -0500
    
    Pending: 684
    Oldest: 2023-07-03 11:54:04 -0400
    Newest: 2025-05-15 00:00:00 -0400
    
    
    ### Status report information ###
    
    Generated at: 2023-07-03 11:10:53 -04:00
    `
    Thread Starter glabs

    (@glabs)

    Hi Bartosz,

    Thank you in advance for your help. I appreciate it.

    We’re running the latest version Version 3.0.26 (all our software is up to date and we’re currently testing with just Woocommerce and Facebook for Woocommerce active on Twenty Twenty theme.

    We are also seeing this problem on both the mobile and desktop versions. It takes 3-4 clicks before a popup is triggered.

    We also ran into this issue and were able to resolve it by reverting to a previous version of JQuery. Any update on when the plugin will provide a fix?

    Thread Starter glabs

    (@glabs)

    This css doesn’t work however. Pushing the arrows off of the images using negative margins also makes them disappear since the parent area has overflow: hidden. Disabling that overflow property however shows all of the photos in the carousel (beyond the chosen number of columns) stretching to each end of the page.

Viewing 15 replies - 1 through 15 (of 16 total)