Title: glabs's Replies | WordPress.org

---

# glabs

  [  ](https://wordpress.org/support/users/glabs/)

 *   [Profile](https://wordpress.org/support/users/glabs/)
 *   [Topics Started](https://wordpress.org/support/users/glabs/topics/)
 *   [Replies Created](https://wordpress.org/support/users/glabs/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/glabs/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/glabs/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/glabs/engagements/)
 *   [Favorites](https://wordpress.org/support/users/glabs/favorites/)

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/glabs/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/glabs/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Create a table programmatically (PHP function)](https://wordpress.org/support/topic/create-a-table-programmatically-php-function/)
 *  Thread Starter [glabs](https://wordpress.org/support/users/glabs/)
 * (@glabs)
 * [1 year ago](https://wordpress.org/support/topic/create-a-table-programmatically-php-function/#post-18430166)
 * Scratch that. We were able to resolve it with this:
 *     ```wp-block-code
        // 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;}
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Create a table programmatically (PHP function)](https://wordpress.org/support/topic/create-a-table-programmatically-php-function/)
 *  Thread Starter [glabs](https://wordpress.org/support/users/glabs/)
 * (@glabs)
 * [1 year ago](https://wordpress.org/support/topic/create-a-table-programmatically-php-function/#post-18429720)
 * 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?
 *     ```wp-block-code
       /** * 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' actionadd_action( 'publish_product', 'create_tablepress_table_for_sport_product' );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Create a table programmatically (PHP function)](https://wordpress.org/support/topic/create-a-table-programmatically-php-function/)
 *  Thread Starter [glabs](https://wordpress.org/support/users/glabs/)
 * (@glabs)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/create-a-table-programmatically-php-function/#post-18264054)
 * 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.
 *     ```wp-block-code
       /** * 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' actionadd_action( 'publish_product', 'create_tablepress_table_for_sport_product' );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Create a table programmatically (PHP function)](https://wordpress.org/support/topic/create-a-table-programmatically-php-function/)
 *  Thread Starter [glabs](https://wordpress.org/support/users/glabs/)
 * (@glabs)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/create-a-table-programmatically-php-function/#post-18263759)
 * 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:
 *     ```wp-block-code
       /** * 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' actionadd_action( 'publish_product', 'create_tablepress_table_for_sport_product' ); 
       ```
   
 * Where am I going wrong?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Custom Fields (ACF®)] iframe Google map not working](https://wordpress.org/support/topic/iframe-google-map-not-working/)
 *  [glabs](https://wordpress.org/support/users/glabs/)
 * (@glabs)
 * [1 year, 5 months ago](https://wordpress.org/support/topic/iframe-google-map-not-working/#post-18146553)
 * We are also having this same issue and the work-around code snippets we have 
   found have so far not resolved it either.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Missing Value Parameter in Ads Manager](https://wordpress.org/support/topic/missing-value-parameter-in-ads-manager/)
 *  Thread Starter [glabs](https://wordpress.org/support/users/glabs/)
 * (@glabs)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/missing-value-parameter-in-ads-manager/#post-16981605)
 * Thanks [@anastas10s](https://wordpress.org/support/users/anastas10s/). I submitted
   a ticket today and will await a response. I appreciate your help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Critical Error on WordPress Admin Backend](https://wordpress.org/support/topic/critical-error-on-wordpress-admin-backend/)
 *  Thread Starter [glabs](https://wordpress.org/support/users/glabs/)
 * (@glabs)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/critical-error-on-wordpress-admin-backend/#post-16977532)
 * Thanks [@beautyofcode](https://wordpress.org/support/users/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-block-code
   > >     ` wp-core
   > > 
   > >     version: 6.3site_language: en_USuser_language: en_UStimezone: America/New_Yorkpermalink: /%postname%/https_status: truemultisite: falseuser_registration: 0blog_public: 1default_comment_status: openenvironment_type: productionuser_count: 2709dotorg_communication: true wp-paths-sizes
   > > 
   > >     wordpress_path: /var/web/site/public_htmlwordpress_size: 378.22 MB (396589054 bytes)uploads_path: /var/web/site/public_html/wp-content/uploadsuploads_size: 1.20 GB (1292478336 bytes)themes_path: /var/web/site/public_html/wp-content/themesthemes_size: 76.65 MB (80376158 bytes)plugins_path: /var/web/site/public_html/wp-content/pluginsplugins_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.5author: Guzman Labsauthor_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, widgetstheme_path: /var/web/site/public_html/wp-content/themes/glabsauto_update: Enabled wp-parent-theme
   > > 
   > >     name: Divi (Divi)version: 4.22.0author: Elegant Themesauthor_website: http://www.elegantthemes.comtheme_path: /var/web/site/public_html/wp-content/themes/Diviauto_update: Enabled wp-themes-inactive (4)
   > > 
   > >     Twenty Twenty: version: 2.2, author: the WordPress team, Auto-updates enabledTwenty Twenty-One: version: 1.8, author: the WordPress team, Auto-updates enabledTwenty Twenty-Three: version: 1.2, author: the WordPress team, Auto-updates enabledTwenty 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 enabledActivity Log: version: 2.8.7, author: Activity Log Team, Auto-updates enabledAddToAny Share Buttons: version: 1.8.8, author: AddToAny, Auto-updates enabledAdmin Customizer: version: 2.2.7, author: Nilambar Sharma, Auto-updates enabledAdminimize: version: 1.11.9, author: Frank Bültge, Auto-updates enabledAdmin Menu Editor: version: 1.11.1, author: Janis Elsts, Auto-updates enabledAdvanced Order Export For WooCommerce: version: 3.4.2, author: AlgolPlus, Auto-updates enabledAutocomplete WooCommerce Orders: version: 3.1.2, author: QuadLayers, Auto-updates enabledBuddyPress: version: 11.2.0, author: The BuddyPress Community, Auto-updates enabledCustom Fonts: version: 2.0.2, author: Brainstorm Force, Auto-updates enabledDuplicate Page: version: 4.5.2, author: mndpsingh287, Auto-updates enabledEasy Google Fonts: version: 2.0.4, author: Titanium Themes, Auto-updates enabledEventON: version: 2.6.17, author: AshanJay, Auto-updates enabledExtended CRM For Users Insights: version: 1.2.1, author: denizz, Auto-updates enabledFacebook for WooCommerce: version: 3.0.31, author: Facebook, Auto-updates enabledFlickr Justified Gallery: version: 3.5, author: Miro Mannino, Auto-updates enabledGZip Ninja Speed Compression: version: 1.2.3, author: CustomWPNinjas, Auto-updates enabledHide Plugins: version: 1.0.4, author: brianmiyaji, Auto-updates enabledLimit Groups per User: version: 2.0.2, author: BuddyDev, Auto-updates enabledLoginizer: version: 1.8.1, author: Softaculous, Auto-updates enabledMailchimp for WooCommerce: version: 3.1, author: Mailchimp, Auto-updates enabledMy Custom Functions: version: 4.51, author: Space X-Chimp, Auto-updates enabledPixelYourSite: version: 9.4.2, author: PixelYourSite, Auto-updates enabledPPOM for WooCommerce: version: 32.0.8, author: Themeisle, Auto-updates enabledPrintful Integration for WooCommerce: version: 2.2.2, author: Printful, Auto-updates enabledProfilePress: version: 4.13.0, author: ProfilePress Membership Team, Auto-updates enabledPublishPress Capabilities: version: 2.9.1, author: PublishPress, Auto-updates enabledPW WooCommerce Bulk Edit: version: 2.118, author: Pimwick, LLC, Auto-updates enabledRedirect After Login: version: 0.1.9, author: marcelotorres, Auto-updates enabledRedirection: version: 5.3.10, author: John Godley, Auto-updates enabledRename wp-login.php: version: 2.6.0, author: Ella van Durpe, Auto-updates enabledTablePress: version: 2.1.7, author: Tobias Bäthge, Auto-updates enabledUsers Insights: version: 3.8.2, author: Pexeto (latest version: 4.4.1), Auto-updates enabledWbcom Designs - BuddyPress Create Group Type: version: 2.7.0, author: Wbcom Designs, Auto-updates enabledWooCommerce: version: 8.0.2, author: Automattic, Auto-updates disabledWooCommerce Checkout Manager: version: 7.2.2, author: QuadLayers, Auto-updates enabledWooCommerce Memberships: version: 1.25.0, author: SkyVerge, Auto-updates enabledWooCommerce No Shipping Message: version: 2.1.5, author: dangoodman, Auto-updates enabledWooCommerce Stripe Gateway: version: 7.5.0, author: WooCommerce, Auto-updates enabledWoo Custom Emails Per Product: version: 2.2.9, author: Alex Mustin, Auto-updates enabledWP-Optimize - Clean, Compress, Cache: version: 3.2.18, author: David Anderson, Ruhani Rabin, Team Updraft, Auto-updates enabledWP Crontrol: version: 1.15.3, author: John Blackbourn & crontributors, Auto-updates enabledWP Mail Logging: version: 1.12.0, author: WP Mail Logging Team, Auto-updates enabledWPMU DEV Dashboard: version: 4.11.19, author: WPMU DEV, Auto-updates enabledYYDevelopment - 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 enabledAll-in-One WP Migration FTP Extension: version: 2.76, author: ServMask, Auto-updates disabledBloom: version: 1.3.12, author: Elegant Themes, Auto-updates enabledDefender Pro: version: 4.0.1, author: WPMU DEV, Auto-updates disabledDivi Ghoster: version: 2.1.6, author: Aspen Grove Studios, Auto-updates enabledError Log Monitor: version: 1.7.7, author: Janis Elsts, Auto-updates enabledForminator Pro: version: 1.25.0, author: WPMU DEV, Auto-updates disabledGravity Forms: version: 2.6.1, author: Gravity Forms, Auto-updates enabledHummingbird Pro: version: 3.5.0, author: WPMU DEV, Auto-updates disabledIP Geo Block: version: 3.0.17.4, author: tokkonopapa, Auto-updates enabledPopup Maker: version: 1.18.2, author: Popup Maker, Auto-updates enabledProduct Feed Manager for WooCommerce: version: 7.3.7, author: RexTheme, Auto-updates enabledProduct Slider and Carousel with Category for WooCommerce: version: 2.8, author: WP OnlineSupport, Essential Plugin, Auto-updates enabledRole Based Price For WooCommerce: version: 3.3.7, author: Varun Sridharan, Auto-updates enabledSite Kit by Google: version: 1.107.0, author: Google, Auto-updates enabledSmartCrawl Pro: version: 3.7.1, author: WPMU DEV, Auto-updates disabledSmush Pro: version: 3.14.1, author: WPMU DEV, Auto-updates disabledSucuri Security - Auditing, Malware Scanner and Hardening: version: 1.8.39, author: Sucuri Inc., Auto-updates enabledWC User Role Based Coupon: version: 0.2, author: Varun Sridharan, Auto-updates enabledWooCommerce Dynamic Pricing: version: 3.1.0, author: Lucas Stark (latest version: 3.2.3), Auto-updates enabledWooCommerce Shipping & Tax: version: 2.3.2, author: WooCommerce, Auto-updates enabledWooCommerce Subscriptions: version: 2.2.16, author: Prospress Inc. (latest version: 5.4.0), Auto-updates enabledWordPress Importer: version: 0.8.1, author: wordpressdotorg, Auto-updates disabledWP-DBManager: version: 2.80.9, author: Lester 'GaMerZ' Chan, Auto-updates enabledWp Maximum Upload File Size: version: 1.1.0, author: CodePopular, Auto-updates disabledWP Performance Score Booster: version: 2.2.1, author: Dipak C. Gajjar, Auto-updates enabledWPT Custom Mo File: version: 1.2.2, author: WP-Translations Team, Auto-updates enabledYoast SEO: version: 20.13, author: Team Yoast, Auto-updates enabled wp-media
   > > 
   > >     image_editor: WP_Image_Editor_Imagickimagick_module_version: 1691imagemagick_version: ImageMagick 6.9.11-60 Q16 x86_64 2021-01-25 https://imagemagick.orgimagick_version: 3.7.0file_uploads: File uploads is turned offpost_max_size: 128Mupload_max_filesize: 128Mmax_effective_size: 128 MBmax_file_uploads: 20imagick_limits:imagick::RESOURCETYPE_AREA: 122 MBimagick::RESOURCETYPE_DISK: 1073741824imagick::RESOURCETYPE_FILE: 768imagick::RESOURCETYPE_MAP: 512 MBimagick::RESOURCETYPE_MEMORY: 256 MBimagick::RESOURCETYPE_THREAD: 1imagick::RESOURCETYPE_TIME: 9.2233720368548E+18imagemagick_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, YUVgd_version: 2.3.3gd_formats: GIF, JPEG, PNG, WebP, BMP, AVIF, XPMghostscript_version: unknown wp-server
   > > 
   > >     server_architecture: Linux 5.15.0-78-generic x86_64httpd_software: nginx/1.22.1php_version: 8.1.21 64bitphp_sapi: fpm-fcgimax_input_variables: 3000time_limit: 300memory_limit: 256Mmax_input_time: 180upload_max_filesize: 128Mphp_post_max_size: 128Mcurl_version: 7.81.0 OpenSSL/3.0.2suhosin: falseimagick_availability: truepretty_permalinks: truehtaccess_extra_rules: truecurrent: 2023-08-16T13:59:00+00:00utc-time: Wednesday, 16-Aug-23 13:59:00 UTCserver-time: 2023-08-16T09:58:57-04:00 wp-database
   > > 
   > >     extension: mysqliserver_version: 10.6.12-MariaDB-0ubuntu0.22.04.1client_version: mysqlnd 8.1.21max_allowed_packet: 134217728max_connections: 50 wp-constants
   > > 
   > >     WP_HOME: undefinedWP_SITEURL: undefinedWP_CONTENT_DIR: /var/web/site/public_html/wp-contentWP_PLUGIN_DIR: /var/web/site/public_html/wp-content/pluginsWP_MEMORY_LIMIT: 128MWP_MAX_MEMORY_LIMIT: 256MWP_DEBUG: falseWP_DEBUG_DISPLAY: trueWP_DEBUG_LOG: falseSCRIPT_DEBUG: falseWP_CACHE: falseCONCATENATE_SCRIPTS: undefinedCOMPRESS_SCRIPTS: undefinedCOMPRESS_CSS: undefinedWP_ENVIRONMENT_TYPE: UndefinedWP_DEVELOPMENT_MODE: undefinedDB_CHARSET: utf8mb4DB_COLLATE: undefined wp-filesystem
   > > 
   > >     wordpress: writablewp-content: writableuploads: writableplugins: writablethemes: writablemu-plugins: writable buddypress
   > > 
   > >     version: 11.2.0active_components: Community Members, User Groupstemplate_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: Yesbp-enable-members-invitations: undefinedbp-enable-membership-requests: undefined! bp_restrict_group_creation: Yes! bp-disable-group-avatar-uploads: Yes! bp-disable-group-cover-image-uploads: Yes
   > >     ```
   > > 
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Missing Value Parameter in Ads Manager](https://wordpress.org/support/topic/missing-value-parameter-in-ads-manager/)
 *  Thread Starter [glabs](https://wordpress.org/support/users/glabs/)
 * (@glabs)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/missing-value-parameter-in-ads-manager/#post-16977508)
 * Hi [@aguinaldodarla](https://wordpress.org/support/users/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.
 *     ```wp-block-code
       `
       ### 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
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Critical Error on WordPress Admin Backend](https://wordpress.org/support/topic/critical-error-on-wordpress-admin-backend/)
 *  Thread Starter [glabs](https://wordpress.org/support/users/glabs/)
 * (@glabs)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/critical-error-on-wordpress-admin-backend/#post-16975270)
 * This is the error that I get in the log:
 *     ```wp-block-code
       [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
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Critical Error after Update to PHP 8](https://wordpress.org/support/topic/critical-error-after-update-to-php-8/)
 *  Thread Starter [glabs](https://wordpress.org/support/users/glabs/)
 * (@glabs)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/critical-error-after-update-to-php-8/#post-16875242)
 * Hi [@xue28](https://wordpress.org/support/users/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):
 *     ```wp-block-code
       WordPress Environment
   
       WordPress address (URL): http://lnx.920.myftpupload.comSite address (URL): http://lnx.920.myftpupload.comWC Version: 7.8.2REST API Version: ✔ 7.8.2WC Blocks Version: ✔ 10.2.4Action Scheduler Version: ✔ 3.5.4Log Directory Writable: ✔WP Version: 6.2.2WP Multisite: –WP Memory Limit: 256 MBWP Debug Mode: ✔WP Cron: ✔Language: en_USExternal object cache: –
   
       Server Environment
   
       Server Info: ApachePHP Version: 8.0.27PHP Post Max Size: 100 MBPHP Time Limit: 0PHP Max Input Vars: 1000cURL Version: 8.0.1OpenSSL/1.1.1t
   
       SUHOSIN Installed: –MySQL Version: 5.7.26-29-logMax Upload Size: 100 MBDefault Timezone is UTC: ✔fsockopen/cURL: ✔SoapClient: ✔DOMDocument: ✔GZip: ✔Multibyte String: ✔Remote Post: ✔Remote Get: ✔
   
       Database
   
       WC Database Version: 7.8.2WC Database Prefix: wp_hgvjyy8h7g_Total Database Size: 266.67MBDatabase Data Size: 193.00MBDatabase Index Size: 73.67MBwp_hgvjyy8h7g_woocommerce_sessions: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_woocommerce_api_keys: Data: 0.00MB + Index: 0.01MB + Engine MyISAMwp_hgvjyy8h7g_woocommerce_attribute_taxonomies: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_woocommerce_downloadable_product_permissions: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_woocommerce_order_items: Data: 0.59MB + Index: 0.38MB + Engine MyISAMwp_hgvjyy8h7g_woocommerce_order_itemmeta: Data: 4.30MB + Index: 3.03MB + Engine MyISAMwp_hgvjyy8h7g_woocommerce_tax_rates: Data: 0.00MB + Index: 0.01MB + Engine MyISAMwp_hgvjyy8h7g_woocommerce_tax_rate_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_woocommerce_shipping_zones: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_woocommerce_shipping_zone_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_woocommerce_shipping_zone_methods: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_woocommerce_payment_tokens: Data: 0.07MB + Index: 0.04MB + Engine MyISAMwp_hgvjyy8h7g_woocommerce_payment_tokenmeta: Data: 0.17MB + Index: 0.16MB + Engine MyISAMwp_hgvjyy8h7g_woocommerce_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAMcerber_acl: Data: 0.02MB + Index: 0.02MB + Engine InnoDBcerber_blocks: Data: 0.02MB + Index: 0.00MB + Engine InnoDBcerber_countries: Data: 0.02MB + Index: 0.00MB + Engine InnoDBcerber_lab: Data: 0.02MB + Index: 0.00MB + Engine InnoDBcerber_lab_ip: Data: 0.02MB + Index: 0.00MB + Engine InnoDBcerber_lab_net: Data: 0.02MB + Index: 0.02MB + Engine InnoDBcerber_log: Data: 0.02MB + Index: 0.05MB + Engine InnoDBcerber_qmem: Data: 0.02MB + Index: 0.02MB + Engine InnoDBcerber_traffic: Data: 0.02MB + Index: 0.02MB + Engine InnoDBwp_hgvjyy8h7g_404_to_301: Data: 10.18MB + Index: 0.77MB + Engine MyISAMwp_hgvjyy8h7g_actionscheduler_actions: Data: 0.81MB + Index: 0.30MB + Engine MyISAMwp_hgvjyy8h7g_actionscheduler_claims: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_actionscheduler_groups: Data: 0.00MB + Index: 0.01MB + Engine MyISAMwp_hgvjyy8h7g_actionscheduler_logs: Data: 0.48MB + Index: 0.32MB + Engine MyISAMwp_hgvjyy8h7g_adtribes_my_conversions: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_aryo_activity_log: Data: 5.52MB + Index: 0.00MB + Engine InnoDBwp_hgvjyy8h7g_bp_activity: Data: 0.13MB + Index: 0.27MB + Engine MyISAMwp_hgvjyy8h7g_bp_activity_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_bp_groups: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_bp_groups_groupmeta: Data: 0.01MB + Index: 0.01MB + Engine MyISAMwp_hgvjyy8h7g_bp_groups_members: Data: 0.01MB + Index: 0.04MB + Engine MyISAMwp_hgvjyy8h7g_bp_invitations: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_bp_notifications: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_bp_notifications_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_bp_optouts: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_bp_xprofile_data: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_bp_xprofile_fields: Data: 0.00MB + Index: 0.01MB + Engine MyISAMwp_hgvjyy8h7g_bp_xprofile_groups: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_bp_xprofile_meta: Data: 0.00MB + Index: 0.01MB + Engine MyISAMwp_hgvjyy8h7g_cerber_files: Data: 0.02MB + Index: 0.00MB + Engine InnoDBwp_hgvjyy8h7g_cerber_sets: Data: 0.13MB + Index: 0.00MB + Engine InnoDBwp_hgvjyy8h7g_cerber_uss: Data: 0.13MB + Index: 0.02MB + Engine InnoDBwp_hgvjyy8h7g_commentmeta: Data: 1.52MB + Index: 0.66MB + Engine InnoDBwp_hgvjyy8h7g_comments: Data: 8.52MB + Index: 9.09MB + Engine InnoDBwp_hgvjyy8h7g_csp3_subscribers: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_et_bloom_stats: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_ewwwio_images: Data: 0.02MB + Index: 0.00MB + Engine InnoDBwp_hgvjyy8h7g_failed_jobs: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_ip_geo_block_cache: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_ip_geo_block_logs: Data: 0.10MB + Index: 0.01MB + Engine MyISAMwp_hgvjyy8h7g_ip_geo_block_stat: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDBwp_hgvjyy8h7g_loginizer_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDBwp_hgvjyy8h7g_logy_users: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_mailchimp_carts: Data: 0.14MB + Index: 0.02MB + Engine MyISAMwp_hgvjyy8h7g_mailchimp_jobs: Data: 0.02MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_maxbuttons_buttons: Data: 0.02MB + Index: 0.00MB + Engine InnoDBwp_hgvjyy8h7g_nm_personalized: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_options: Data: 8.52MB + Index: 2.91MB + Engine InnoDBwp_hgvjyy8h7g_pmxe_exports: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_pmxe_google_cats: Data: 0.26MB + Index: 0.05MB + Engine MyISAMwp_hgvjyy8h7g_pmxe_posts: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_pmxe_templates: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_postmeta: Data: 40.56MB + Index: 39.16MB + Engine InnoDBwp_hgvjyy8h7g_posts: Data: 10.52MB + Index: 3.78MB + Engine InnoDBwp_hgvjyy8h7g_ppress_coupons: Data: 0.02MB + Index: 0.05MB + Engine InnoDBwp_hgvjyy8h7g_ppress_customers: Data: 0.02MB + Index: 0.03MB + Engine InnoDBwp_hgvjyy8h7g_ppress_forms: Data: 0.00MB + Index: 0.01MB + Engine MyISAMwp_hgvjyy8h7g_ppress_formsmeta: Data: 0.03MB + Index: 0.02MB + Engine MyISAMwp_hgvjyy8h7g_ppress_meta_data: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_ppress_ordermeta: Data: 0.02MB + Index: 0.00MB + Engine InnoDBwp_hgvjyy8h7g_ppress_orders: Data: 0.02MB + Index: 0.13MB + Engine InnoDBwp_hgvjyy8h7g_ppress_plans: Data: 0.02MB + Index: 0.00MB + Engine InnoDBwp_hgvjyy8h7g_ppress_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDBwp_hgvjyy8h7g_ppress_subscriptions: Data: 0.02MB + Index: 0.09MB + Engine InnoDBwp_hgvjyy8h7g_queue: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_redirection_404: Data: 0.05MB + Index: 0.02MB + Engine MyISAMwp_hgvjyy8h7g_redirection_groups: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_redirection_items: Data: 0.00MB + Index: 0.02MB + Engine MyISAMwp_hgvjyy8h7g_redirection_logs: Data: 0.01MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_signups: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_termmeta: Data: 0.01MB + Index: 0.02MB + Engine MyISAMwp_hgvjyy8h7g_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDBwp_hgvjyy8h7g_term_relationships: Data: 0.09MB + Index: 0.06MB + Engine InnoDBwp_hgvjyy8h7g_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDBwp_hgvjyy8h7g_tm_taskmeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_tm_tasks: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_usermeta: Data: 8.52MB + Index: 10.03MB + Engine InnoDBwp_hgvjyy8h7g_users: Data: 0.45MB + Index: 0.42MB + Engine InnoDBwp_hgvjyy8h7g_usin_events: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_usin_user_data: Data: 0.11MB + Index: 0.12MB + Engine MyISAMwp_hgvjyy8h7g_wcepp_messages: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_wc_admin_notes: Data: 0.03MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_wc_admin_note_actions: Data: 0.01MB + Index: 0.01MB + Engine MyISAMwp_hgvjyy8h7g_wc_category_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_wc_customer_lookup: Data: 0.18MB + Index: 0.13MB + Engine MyISAMwp_hgvjyy8h7g_wc_download_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_wc_order_coupon_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_wc_order_product_lookup: Data: 0.31MB + Index: 0.22MB + Engine MyISAMwp_hgvjyy8h7g_wc_order_stats: Data: 0.26MB + Index: 0.14MB + Engine MyISAMwp_hgvjyy8h7g_wc_order_tax_lookup: Data: 0.14MB + Index: 0.16MB + Engine MyISAMwp_hgvjyy8h7g_wc_product_attributes_lookup: Data: 0.02MB + Index: 0.02MB + Engine InnoDBwp_hgvjyy8h7g_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDBwp_hgvjyy8h7g_wc_product_meta_lookup: Data: 0.08MB + Index: 0.10MB + Engine MyISAMwp_hgvjyy8h7g_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDBwp_hgvjyy8h7g_wc_reserved_stock: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_wc_tax_rate_classes: Data: 0.00MB + Index: 0.01MB + Engine MyISAMwp_hgvjyy8h7g_wc_webhooks: Data: 0.00MB + Index: 0.00MB + Engine MyISAMwp_hgvjyy8h7g_wpaas_activity_log: Data: 0.16MB + Index: 0.00MB + Engine InnoDBwp_hgvjyy8h7g_wpml_mails: Data: 89.08MB + Index: 0.18MB + Engine MyISAMwp_hgvjyy8h7g_yoast_indexable: Data: 0.02MB + Index: 0.09MB + Engine InnoDBwp_hgvjyy8h7g_yoast_indexable_hierarchy: Data: 0.02MB + Index: 0.05MB + Engine InnoDBwp_hgvjyy8h7g_yoast_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDBwp_hgvjyy8h7g_yoast_primary_term: Data: 0.02MB + Index: 0.03MB + Engine InnoDBwp_hgvjyy8h7g_yoast_seo_links: Data: 0.05MB + Index: 0.01MB + Engine MyISAMwp_hgvjyy8h7g_yoast_seo_meta: Data: 0.14MB + Index: 0.14MB + Engine MyISAMwp_hgvjyy8h7g_yz_bookmark: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
   
       Post Type Counts
   
       ajde_events: 483amn_mi-lite: 1attachment: 1027bp_group_type: 4bp-email: 25bsf_custom_fonts: 1buddyforms: 2custom_css: 7customize_changeset: 1et_body_layout: 2et_footer_layout: 1et_header_layout: 3et_pb_layout: 61et_template: 4et_theme_builder: 1gpages: 1ia_invites: 2jetpack_migration: 2nav_menu_item: 30page: 60payment_retry: 420popup: 3popup_theme: 9post: 61product: 38product_variation: 764product-feed: 1quick_order_forms: 1safecss: 1seedprod: 5shop_coupon: 14shop_order: 5595shop_order_refund: 115shop_subscription: 508tablepress_table: 12tt_font_control: 1wc_membership_plan: 8wc_user_membership: 2868woocustomemails: 1wp_global_styles: 1wpgform: 4
   
       Security
   
       Secure connection (HTTPS): ✔Hide errors from visitors: ✔
   
       Active Plugins (11)
   
       Admin Customizer: by Nilambar Sharma – 2.2.6Admin Menu Editor: by Janis Elsts – 1.11Adminimize: by Frank Bültge – 1.11.9All-in-One WP Migration: by ServMask – 7.76Activity Log: by Activity Log Team – 2.8.6BackUpWordPress: by XIBO Ltd – 3.13Hide Plugins: by brianmiyaji – 1.0.4Loginizer: by Softaculous – 1.7.9Sucuri Security - Auditing, Malware Scanner and Hardening: by Sucuri Inc. – 1.8.39WooCommerce: by Automattic – 7.8.2WP-Optimize - Clean, Compress, Cache: by David AndersonRuhani RabinTeam Updraft – 3.2.15
   
       Inactive Plugins (60)
   
       404 to 301 - Redirect, Log and Notify 404 Errors: by Joel James – 3.1.4AddToAny Share Buttons: by AddToAny – 1.8.6Advanced Order Export For WooCommerce: by AlgolPlus – 3.4.0Akismet Anti-Spam: Spam Protection: by Automattic - Anti Spam Team – 5.2Autocomplete WooCommerce Orders: by QuadLayers – 3.1.0Automatic Copyright Year: by WPSOS – 1.1Bloom: by Elegant Themes – 1.3.12Bowe Codes: by imath – 2.1BuddyPress: by The BuddyPress Community – 11.2.0Coming Soon Page, Maintenance Mode, Landing Pages & WordPress Website Builder by SeedProd: by SeedProd – 6.15.7Custom Fonts: by Brainstorm Force – 2.0.1Divi Ghoster: by Aspen Grove Studios – 2.1.6Duplicate Page: by mndpsingh287 – 4.5.2Easy Google Fonts: by Titanium Themes – 2.0.4Error Log Monitor: by Janis Elsts – 1.7.7EventON: by AshanJay – 2.6.17Extended CRM For Users Insights: by denizz – 1.2.1Facebook for WooCommerce: by Facebook – 3.0.27Flickr Justified Gallery: by Miro Mannino – 3.5Gravity Forms: by Gravity Forms – 2.6.1GZip Ninja Speed Compression: by CustomWPNinjas – 1.2.3IP Geo Block: by tokkonopapa – 3.0.17.4Limit Groups per User: by BuddyDev – 2.0.2Mailchimp for WooCommerce: by Mailchimp – 2.8.3My Custom Functions: by Space X-Chimp – 4.51PixelYourSite: by PixelYourSite – 9.4.0Popup Maker: by Popup Maker – 1.18.2PPOM for WooCommerce: by Themeisle – 32.0.8Printful Integration for WooCommerce: by Printful – 2.2.2Product Feed Manager for WooCommerce: by RexTheme – 7.3.2Product Slider and Carousel with Category for WooCommerce: by WP OnlineSupportEssential Plugin – 2.8
   
       ProfilePress: by ProfilePress Membership Team – 4.11.0PublishPress Capabilities: by PublishPress – 2.8.1PW WooCommerce Bulk Edit: by PimwickLLC – 2.117
   
       Redirect After Login: by marcelotorres – 0.1.9Redirection: by John Godley – 5.3.10Rename wp-login.php: by Ella van Durpe – 2.6.0Role Based Price For WooCommerce: by Varun Sridharan – 3.3.7Site Kit by Google: by Google – 1.104.0TablePress: by Tobias Bäthge – 2.1.5Users Insights: by Pexeto – 3.8.2Wbcom Designs - BuddyPress Create Group Type: by Wbcom Designs – 2.7.0WC User Role Based Coupon: by Varun Sridharan – 0.2WooCommerce Checkout Manager: by QuadLayers – 7.1.7WooCommerce Dynamic Pricing: by Lucas Stark – 3.1.0 (update to version 3.2.2 is available)WooCommerce Google Analytics Integration: by WooCommerce – 1.8.2WooCommerce Memberships: by SkyVerge – 1.10.4 (update to version 1.25.0 is available)WooCommerce No Shipping Message: by dangoodman – 2.1.4WooCommerce Shipping & Tax: by WooCommerce – 2.2.5WooCommerce Stripe Gateway: by WooCommerce – 7.4.1WooCommerce 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.9WP-DBManager: by Lester 'GaMerZ' Chan – 2.80.9WP Cerber Security, Anti-spam & Malware Scan: by Cerber Tech Inc. – 9.3WP Crontrol: by John Blackbourn & crontributors – 1.15.3WP Mail Logging: by WP Mail Logging Team – 1.12.0WP Performance Score Booster: by Dipak C. Gajjar – 2.2.1WPT Custom Mo File: by WP-Translations Team – 1.2.2Yoast SEO: by Team Yoast – 20.10YYDevelopment - Show Pages ID: by YYDevelopment – 1.5.5
   
       Dropin Plugins (2)
   
       db-error.php: db-error.phpobject-cache.php: object-cache.php
   
       Must Use Plugins (3)
   
       installatron_hide_status_test.php: by –Object Cache Pro (MU): by Rhubarb Group – 1.18.2System Plugin: by – 4.78.1
   
       Settings
   
       API Enabled: ✔Force SSL: –Currency: USD ($)Currency Position: leftThousand Separator: ,Decimal Separator: .Number of Decimals: 0Taxonomies: 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_CPTHPOS 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 TwentyVersion: 2.2Author 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 themeWooCommerce Support: ✔
   
       Templates
   
       Overrides: –
   
       Admin
   
       Enabled Features: activity-panelsanalyticsproduct-block-editorcouponscustomer-effort-score-tracksimport-products-taskexperimental-fashion-sample-productsshipping-smart-defaultsshipping-setting-tourhomescreenmarketingmobile-app-bannernavigationonboardingonboarding-tasksremote-inbox-notificationsremote-free-extensionspayment-gateway-suggestionsshipping-label-bannersubscriptionsstore-alertstransient-noticeswoo-mobile-welcomewc-pay-promotionwc-pay-welcome-page
   
       Disabled Features: core-profilerminified-jsnew-product-management-experienceproduct-variation-managementsettingsasync-product-editor-category-field
   
       Daily Cron: ✔ Next scheduled: 2023-07-07 03:09:39 -04:00Options: ✔Notes: 64Onboarding: completed
   
       Action Scheduler
   
       Canceled: 1Oldest: 2023-06-12 20:56:16 -0400Newest: 2023-06-12 20:56:16 -0400
   
       Complete: 1,773Oldest: 2023-06-05 09:34:29 -0400Newest: 2023-07-05 23:09:38 -0400
   
       Failed: 255Oldest: 2019-01-15 15:53:19 -0500Newest: 2023-07-06 05:52:20 -0400
   
       Pending: 648Oldest: 2023-07-06 15:38:42 -0400Newest: 2025-05-15 00:00:00 -0400
   
       Status report information
   
       Generated at: 2023-07-06 09:23:13 -04:00`
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Critical Error after Update to PHP 8](https://wordpress.org/support/topic/critical-error-after-update-to-php-8/)
 *  Thread Starter [glabs](https://wordpress.org/support/users/glabs/)
 * (@glabs)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/critical-error-after-update-to-php-8/#post-16866068)
 * 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:
 *     ```wp-block-code
       `
       ### 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
       `
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Critical Error after Update to PHP 8](https://wordpress.org/support/topic/critical-error-after-update-to-php-8/)
 *  Thread Starter [glabs](https://wordpress.org/support/users/glabs/)
 * (@glabs)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/critical-error-after-update-to-php-8/#post-16860308)
 * 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Popups for Divi] Popup on mobile only appears after multiple clicks](https://wordpress.org/support/topic/popup-on-mobile-only-appears-after-multiple-clicks/)
 *  [glabs](https://wordpress.org/support/users/glabs/)
 * (@glabs)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/popup-on-mobile-only-appears-after-multiple-clicks/#post-14064667)
 * We are also seeing this problem on both the mobile and desktop versions. It takes
   3-4 clicks before a popup is triggered.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Popup Maker - Boost Sales, Conversions, Optins, Subscribers with the Ultimate WP Popup Builder] popup maker not working](https://wordpress.org/support/topic/popup-maker-not-working-4/)
 *  [glabs](https://wordpress.org/support/users/glabs/)
 * (@glabs)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/popup-maker-not-working-4/#post-13954828)
 * 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?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Social Feed Gallery] Move navigation arrows to margins](https://wordpress.org/support/topic/move-navigation-arrows-to-margins/)
 *  Thread Starter [glabs](https://wordpress.org/support/users/glabs/)
 * (@glabs)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/move-navigation-arrows-to-margins/#post-13205383)
 * 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)

1 [2](https://wordpress.org/support/users/glabs/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/glabs/replies/page/2/?output_format=md)