amsterdamquality
Forum Replies Created
-
Hi @lovingbro ,
Thanks a lot for your answer.
Your explanation matches what I though. The Trust payments webhook is calling
payment_complete()too early, before line items exist, which may makesneeds_processing()temporarily return false and leads to an incorrect “completed” statut.I’ll keep the guard in place as mitigation, and I’m now escalating to Trust Payments with this timing/race-condition evidence.
I’ll share any new findings if their side reveals more about the webhook flow.
Best regards
Hi Moses,
Thanks for the clear breakdown, it matches what I’m seeing on the ground. I’ve already added the temporary logg you suggested, I can confirm two things with the latest affected order :
1) The status decision happens inside the Trust Payments REST webhook context.
On order 9569, the flip pending → completed, and the execution ofwoocommerce_payment_complete_order_status, all happen during the webhook POST to/wp-json/st/v2/response. Trust plugin files are in the call stack at the exact moment the status is applied.2) New clue: at that exact webhook time, WooCommerce still sees zero line items in standard line-item hooks.
My trace onwoocommerce_checkout_create_order_line_itemproduced no captured items for that order (log line: “no lines captured at creation hook — cart empty or bypass”), while the order is obviously a physical cart a few seconds later. So the gateway is callingpayment_complete()while the order is still “not fully populated” from Woo’s perspective.Best regards,
PierreHi again,
Quick follow-up on my topic (previously marked as resolved), as the issue is still occurring.
Since your last reply :
- I implemented the conditional guard you recommended on
woocommerce_payment_complete_order_status. - No incidents for a while, then I added a trace snippet that logs:
- when
woocommerce_payment_complete_order_statusruns, - when
woocommerce_order_status_changedruns, - the execution context (REST/AJAX/FRONT + route),
- and the plugin call stack.
The trace does not modify the status.
- when
With this trace active, I’ve now captured two new cases where physical orders still skip “Processing” and go directly Pending → Completed.
Key details:
- Context is always REST on /wp-json/st/v2/response (Trust Payments webhook).
woocommerce_payment_complete_order_statusis called with$status = 'completed'even though the order needs processing.- No auto-complete snippet or plugin, and all products are physical.
- Trust Payments confirms they trigger payment completion, but insist the final status is chosen by WooCommerce.
Could you please confirm :
- If core WooCommerce has any scenario where a physical order could be treated as “does not need processing” specifically in this REST/webhook context?
- Whether permanently applying the conditional guard below is still the recommended approach to force physical orders to stay in
processing, even when triggered via a gateway webhook?
add_filter( 'woocommerce_payment_complete_order_status', function ( $status, $order_id, $order ) { if ( $order instanceof WC_Order && $order->needs_processing() ) { return 'processing'; } return $status; }, 9999, 3 );Best regards,
Hi @mosesmedh,
No, we haven’t been able to reproduce this on staging, because the bug is entirely erratic. It appears on a small fraction of orders at random, then self-corrects later without any manual edit.
We haven’t introduced recent changes that clearly point to a single source, but the frequency seems to have increased. I have fully excluded cart, checkout, and payment flows from all cache layers, per plugin docs and WP Engine guidance, and we’re monitoring.
At this stage, there is no clear trigger, no recent theme or checkout structural change and the behavior appears random. The payment gateway always captures the correct amount, so the issue only affects the order line items display/stored values temporarily.
If there is any specific information you’d like us to collect when it happens again, let us know and we’ll be happy to provide it.Best
- This reply was modified 5 months, 2 weeks ago by amsterdamquality.
Hi @lovingbro ,
Thanks a lot for the clear and detailed explanation.
Can you just confirm that If I implement the conditional filter you suggested this will reliably prevent physical orders from skipping “Processing” and jumping straight to “Completed” ?
If so, I’ll go ahead with this fix and mark as resolved.
Forum: Plugins
In reply to: [WooCommerce] High Performance order storage synchronisation stuckHi @mosesmedh ,
Yes i do have access to WP-CLI but i would prefer keep it simple so after using the snippet suggested to enqueue jobs, I now see manywc_hpos_background_sync_orderentries in Scheduled Actions but they all fail immediately with the following message :“Scheduled action for
wc_hpos_background_sync_orderwill not be executed as no callbacks are registered.”Examples (from Failed list): order IDs
25930,25975,25978,25979,25983,25984,21474,21488,21515,21518… all the same error.Thanks in advance, I’m ready to run whichever CLI if needed. What do you recommend to force the backfill safely and get these ~2,159 orders migrated ?
Forum: Plugins
In reply to: [WooCommerce] High Performance order storage synchronisation stuckThanks for your message, but as explained in my earlier replies, and as confirmed by @lovingbro , I already turned on compatibility mode right after my very first message in this thread.
It’s been enabled the entire time since then, and unfortunately it didn’t change anything.
Even with compatibility mode ON :
- No
wc_hpos_background_sync_orderhooks ever appear in Scheduled Actions, - The pending sync count has actually increased from 2,073 to 2,248,
- Those 2,159 legacy orders remain unmigrated, and now new orders are also stuck.
So this is not a case of the setting being off the problem clearly runs deeper (as discussed, likely because of the old SQL update that probably bypassed hooks ?).
I still need real guidance on how to force those legacy orders to migrate or trigger HPOS sync for that batch.
- This reply was modified 6 months ago by amsterdamquality.
Forum: Plugins
In reply to: [WooCommerce] High Performance order storage synchronisation stuckThanks for getting back to me.
Since my first message, the “pending sync” count has actually increased slightly from 2,073 to 2,248. This seems to match the new orders placed on the site, which are also getting stuck in the queue, likely because the old ~2,159 legacy orders are still blocking the migration flow i guess.
Either way, those legacy orders are still unmigrated, and the sync isn’t progressing at all.
So yes I still need guidance on how to actually get those orders to migrate, or a way to force the HPOS sync to catch up quickly.
Can you advise the most efficient way to fix this ?
Forum: Plugins
In reply to: [WooCommerce] High Performance order storage synchronisation stuckThank you for the detailed steps.
I’ve gone through everything :
- Rebuilt the HPOS sync queue (compatibility mode OFF → Save → ON → Save).
- Cleared caches (Woo transients, expired transients, WooCommerce.com cache).
- Deactivated the legacy “WooCommerce Analytics” plugin.
- Cron : set
DISABLE_WP_CRONtofalseto test default wp-cron.
I still don’t see any HPOS hooks (
wc_hpos_background_sync_order, etc.) in Scheduled Actions (pending/failed/completed). Here is a fresh System Status Report : https://pastebin.com/s9au3yVQ ass well as my most recent failed actions (12): https://pastebin.com/tegf8bR8DB checks
- Legacy orders not migrated to HPOS:
2159 - Sample order IDs still not migrated :
21468,21470,21472
After reviewing these orders, I think I may have just figured out why those ~2000 orders are stuck.
On September 15th, I actually ran a bulk SQL query directly in phpMyAdmin to update the order status from “Ready for shipping” (slug = wc-partially-shipped) to “Shipped” (slug = wc-completed) for a large batch of orders (most likely the same ~2000 currently not migrated). At that time, HPOS wasn’t active.UPDATE wp_posts
Probably the SQL command i’ve ran
SET post_status = ‘wc-completed’
WHERE post_type = ‘shop_order’
AND post_status = ‘wc-partially-shipped’;Since this was done directly in the database and not through WooCommerce hooks I now suspect HPOS never received any triggers to enqueue background sync actions for those orders…
Just wanted to share this context since it’s probably the root cause.Forum: Plugins
In reply to: [WooCommerce] High Performance order storage synchronisation stuckThanks for the quick reply.
I checked WooCommerce → Status → Scheduled Actions and I don’t see any
wc_hpos_background_sync_orderhooks pending.WP-Cron is disabled because I’m hosted on WP Engine, which handles cron jobs through their Alternate Cron. Is that compatible ?
I’ve also checked the failed actions and none seem related to HPOS. The only failures I see are:
action_scheduler/migration_hook(no callbacks registered)wc-admin_import_orders(no callbacks registered)
I’ve updated WordPress and WooCommerce to the latest versions as well, but the sync is still stuck around 2 000 orders and not moving.
I ran the SQL command you suggested and got
count(*) = 61.Given this, what’s the recommended next step ?
Thanks again for your help.
Hi @haktansuren,
Thank you for your clear and prompt response—this is exactly the information I needed. How you i contact you via chat/support ?
Just to double-confirm If I use UTM Grabber PRO with WooCommerce (classic checkout) and :
- I do not install the Meta Pixel or any Meta JavaScript on the site at all
- Visitors come from Meta Ads to a neutral landing page (amsterdamquallity.fr)
- Then they are redirected to the store (amsterdam-quality.fr)
- And they purchase 1–3 days later
👉 Will the plugin still correctly persist the UTM info via cookies and attach it to the WooCommerce order, even after a delay or multiple sessions?
I also had a couple follow-Up Clarifications- iOS 17+ Compatibility : Does the Pro version include any workarounds for Apple’s Link Tracking Protection (e.g., preserving UTMs through
sessionStorageas a fallback)? - Cookie Consent : How does the plugin handle GDPR compliance? Does it wait for user consent before storing UTMs?
- Meta Ads Integration: For campaigns using
fbclid, will the plugin capture this parameter alongside standard UTMs?
Thanks again for your help—this plugin fills a critical gap for high-risk niches!
Best,
PierreForum: Plugins
In reply to: [WooCommerce] Issue with WooCommerce Customer List DataHi, thank you for your answer
The update seems to have progressed, when i check Scheduled Actions again i now I see the following :
“All (408) | Complete (394) | Pending (14) | Past-due (12)“
- This reply was modified 1 year, 6 months ago by amsterdamquality.
- This reply was modified 1 year, 6 months ago by amsterdamquality.
Forum: Plugins
In reply to: [WooCommerce] Issue with WooCommerce Customer List DataHi, thank you for your answer
after following your advice to update WordPress and WooCommerce to their latest versions and clicked to update the WooCommerce database, the process has been running for over 18 hours with no visible change in the “Customers” tab. The new customers from the last 12 hours are still displaying 0 values for “Total Orders,” “Total Spend,” and “AOV.”When I check the progress of the database update, I am redirected to WooCommerce > Status > Scheduled Actions, where I see the following:
- All (488) | Pending (486) | Canceled (2) | Past-due (486) for the action “woocommerce_run_update.”
Here is my latest report system if needed :
` WordPress Environment</p> <p>WordPress address (URL): https://amsterdam-quality.fr<br>Site address (URL): https://amsterdam-quality.fr<br>WC Version: 9.3.3<br>Legacy REST API Package Version: The Legacy REST API plugin is not installed on this site.<br>Action Scheduler Version: ✔ 3.8.2<br>Log Directory Writable: ✔<br>WP Version: 6.6.2<br>WP Multisite: –<br>WP Memory Limit: 512 Mo<br>WP Debug Mode: ✔<br>WP Cron: ✔<br>Language: fr_FR<br>External object cache: – Server Environment</p> <p>Server Info: Apache<br>PHP Version: 8.2.24<br>PHP Post Max Size: 100 Mo<br>PHP Time Limit: 3600<br>PHP Max Input Vars: 10000<br>cURL Version: 7.81.0<br>OpenSSL/3.0.2</p> <p>SUHOSIN Installed: –<br>MySQL Version: 8.0.37-29<br>Max Upload Size: 50 Mo<br>Default Timezone is UTC: ✔<br>fsockopen/cURL: ✔<br>SoapClient: ✔<br>DOMDocument: ✔<br>GZip: ✔<br>Multibyte String: ✔<br>Remote Post: ✔<br>Remote Get: ✔ Database</p> <p>WC Database Version: 8.6.1<br>WC Database Prefix: wp_<br>Taille totale de la base de données: 149.42MB<br>Taille de la base de données: 112.44MB<br>Taille de l’index: 36.98MB<br>wp_woocommerce_sessions: Données : 36.52MB + Index : 0.27MB + Moteur InnoDB<br>wp_woocommerce_api_keys: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_woocommerce_attribute_taxonomies: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_woocommerce_downloadable_product_permissions: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_woocommerce_order_items: Données : 0.14MB + Index : 0.06MB + Moteur InnoDB<br>wp_woocommerce_order_itemmeta: Données : 1.52MB + Index : 1.86MB + Moteur InnoDB<br>wp_woocommerce_tax_rates: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_woocommerce_tax_rate_locations: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_woocommerce_shipping_zones: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_woocommerce_shipping_zone_locations: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_woocommerce_shipping_zone_methods: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_woocommerce_payment_tokens: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_woocommerce_payment_tokenmeta: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_woocommerce_log: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_actionscheduler_actions: Données : 0.17MB + Index : 0.19MB + Moteur InnoDB<br>wp_actionscheduler_claims: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_actionscheduler_groups: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_actionscheduler_logs: Données : 0.05MB + Index : 0.03MB + Moteur InnoDB<br>wp_aioseo_cache: Données : 0.09MB + Index : 0.03MB + Moteur InnoDB<br>wp_aioseo_notifications: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_aioseo_posts: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_bwf_ab_experiments: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_bwf_action_claim: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_bwf_actions: Données : 0.06MB + Index : 0.09MB + Moteur InnoDB<br>wp_bwf_contact: Données : 0.09MB + Index : 0.06MB + Moteur InnoDB<br>wp_bwf_contact_fields: Données : 0.02MB + Index : 0.22MB + Moteur InnoDB<br>wp_bwf_contact_meta: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_bwf_conversion_tracking: Données : 0.05MB + Index : 0.20MB + Moteur InnoDB<br>wp_bwf_funnelmeta: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwf_funnels: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_bwf_optin_entries: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwf_options: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwf_wc_customers: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_abandonedcarts: Données : 2.52MB + Index : 0.13MB + Moteur InnoDB<br>wp_bwfan_api_keys: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_automation_complete_contact: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_bwfan_automation_contact: Données : 0.02MB + Index : 0.09MB + Moteur InnoDB<br>wp_bwfan_automation_contact_claim: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_bwfan_automation_contact_trail: Données : 0.02MB + Index : 0.08MB + Moteur InnoDB<br>wp_bwfan_automation_events: Données : 0.16MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_automation_step: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_automationmeta: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_automations: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_broadcast: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_bulk_action: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_contact_note: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_bwfan_conversions: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_bwfan_engagement_tracking: Données : 0.02MB + Index : 0.19MB + Moteur InnoDB<br>wp_bwfan_engagement_trackingmeta: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_bwfan_field_groups: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_bwfan_fields: Données : 0.02MB + Index : 0.09MB + Moteur InnoDB<br>wp_bwfan_form_feeds: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_import_export: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_link_triggers: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_bwfan_message: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_bwfan_message_unsubscribe: Données : 0.02MB + Index : 0.11MB + Moteur InnoDB<br>wp_bwfan_templates: Données : 0.33MB + Index : 0.05MB + Moteur InnoDB<br>wp_bwfan_terms: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_chaty_contact_form_leads: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_cky_banners: Données : 0.05MB + Index : 0.00MB + Moteur InnoDB<br>wp_cky_cookie_categories: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_cky_cookies: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_commentmeta: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_comments: Données : 1.52MB + Index : 0.45MB + Moteur InnoDB<br>wp_e_events: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_e_notes: Données : 0.02MB + Index : 0.17MB + Moteur InnoDB<br>wp_e_notes_users_relations: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_e_submissions: Données : 0.02MB + Index : 0.27MB + Moteur InnoDB<br>wp_e_submissions_actions_log: Données : 0.02MB + Index : 0.11MB + Moteur InnoDB<br>wp_e_submissions_values: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_fk_cart_stats: Données : 0.02MB + Index : 0.08MB + Moteur InnoDB<br>wp_gla_attribute_mapping_rules: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_gla_budget_recommendations: Données : 0.19MB + Index : 0.14MB + Moteur InnoDB<br>wp_gla_merchant_issues: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_gla_shipping_rates: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_gla_shipping_times: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_background_task: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_content_status: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_core_status: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_flags: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_languages: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_icl_languages_translations: Données : 0.20MB + Index : 0.17MB + Moteur InnoDB<br>wp_icl_locale_map: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_message_status: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_icl_mo_files_domains: Données : 0.05MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_node: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_reminders: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_string_batches: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_string_packages: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_string_positions: Données : 1.52MB + Index : 0.23MB + Moteur InnoDB<br>wp_icl_string_status: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_string_translations: Données : 0.05MB + Index : 0.03MB + Moteur InnoDB<br>wp_icl_strings: Données : 6.52MB + Index : 12.09MB + Moteur InnoDB<br>wp_icl_translate: Données : 0.17MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_translate_job: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_translation_batches: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_translation_downloads: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_translation_status: Données : 0.38MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_translations: Données : 0.20MB + Index : 0.64MB + Moteur InnoDB<br>wp_jetpack_sync_queue: Données : 8.52MB + Index : 0.83MB + Moteur InnoDB<br>wp_links: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_lws_wr_achieved_log: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_lws_wr_historic: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailchimp_carts: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailchimp_jobs: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailerlite_checkouts: Données : 1.45MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailerlite_forms: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailpoet_automation_run_logs: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_automation_run_subjects: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_automation_runs: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_automation_triggers: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailpoet_automation_versions: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_automations: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailpoet_custom_fields: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_dynamic_segment_filters: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_feature_flags: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_forms: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailpoet_log: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailpoet_migrations: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_newsletter_links: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_mailpoet_newsletter_option: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_newsletter_option_fields: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_newsletter_posts: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_newsletter_segment: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_newsletter_templates: Données : 2.52MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailpoet_newsletters: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_scheduled_task_subscribers: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_scheduled_tasks: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_segments: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_sending_queues: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_settings: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_statistics_bounces: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailpoet_statistics_clicks: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_mailpoet_statistics_forms: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_statistics_newsletters: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_statistics_opens: Données : 0.02MB + Index : 0.08MB + Moteur InnoDB<br>wp_mailpoet_statistics_unsubscribes: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_mailpoet_statistics_woocommerce_purchases: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_mailpoet_stats_notifications: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_subscriber_custom_field: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_subscriber_ips: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_subscriber_segment: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_subscriber_tag: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_subscribers: Données : 0.02MB + Index : 0.23MB + Moteur InnoDB<br>wp_mailpoet_tags: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_user_agents: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_user_flags: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_ml_data: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_nextend2_image_storage: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_nextend2_section_storage: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_nextend2_smartslider3_generators: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_nextend2_smartslider3_sliders: Données : 0.17MB + Index : 0.03MB + Moteur InnoDB<br>wp_nextend2_smartslider3_sliders_xref: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_nextend2_smartslider3_slides: Données : 0.22MB + Index : 0.11MB + Moteur InnoDB<br>wp_options: Données : 20.20MB + Index : 0.50MB + Moteur InnoDB<br>wp_parcelpanel_courier: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_parcelpanel_location: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_parcelpanel_tracking: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_parcelpanel_tracking_items: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_postmeta: Données : 11.47MB + Index : 5.95MB + Moteur InnoDB<br>wp_posts: Données : 5.48MB + Index : 0.44MB + Moteur InnoDB<br>wp_pum_subscribers: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_rank_math_404_logs: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_rank_math_analytics_gsc: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_rank_math_analytics_keyword_manager: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_rank_math_analytics_objects: Données : 0.14MB + Index : 0.05MB + Moteur InnoDB<br>wp_rank_math_internal_links: Données : 0.22MB + Index : 0.08MB + Moteur InnoDB<br>wp_rank_math_internal_meta: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_rank_math_redirections: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_rank_math_redirections_cache: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_css: Données : 0.13MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_css_bkp: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_layer_animations: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_revslider_layer_animations_bkp: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_revslider_navigations: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_revslider_navigations_bkp: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_revslider_sliders: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_sliders_bkp: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_slides: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_slides_bkp: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_static_slides: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_static_slides_bkp: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_shortpixel_folders: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_shortpixel_meta: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_shortpixel_postmeta: Données : 0.02MB + Index : 0.08MB + Moteur InnoDB<br>wp_snippets: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_social_users: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_term_relationships: Données : 0.14MB + Index : 0.09MB + Moteur InnoDB<br>wp_term_taxonomy: Données : 0.16MB + Index : 0.06MB + Moteur InnoDB<br>wp_termmeta: Données : 0.16MB + Index : 0.16MB + Moteur InnoDB<br>wp_terms: Données : 0.06MB + Index : 0.03MB + Moteur InnoDB<br>wp_trustindex_google_reviews: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_userfeedback_survey_responses: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_userfeedback_surveys: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_usermeta: Données : 2.52MB + Index : 4.03MB + Moteur InnoDB<br>wp_users: Données : 0.14MB + Index : 0.11MB + Moteur InnoDB<br>wp_viva_payment_transactions: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_vivawallet_data: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wc_admin_note_actions: Données : 0.05MB + Index : 0.02MB + Moteur InnoDB<br>wp_wc_admin_notes: Données : 0.08MB + Index : 0.00MB + Moteur InnoDB<br>wp_wc_category_lookup: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wc_customer_lookup: Données : 0.09MB + Index : 0.06MB + Moteur InnoDB<br>wp_wc_download_log: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_wc_order_addresses: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_wc_order_coupon_lookup: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_wc_order_operational_data: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_wc_order_product_lookup: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_wc_order_stats: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_wc_order_tax_lookup: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_wc_orders: Données : 0.02MB + Index : 0.11MB + Moteur InnoDB<br>wp_wc_orders_meta: Données : 0.11MB + Index : 0.16MB + Moteur InnoDB<br>wp_wc_product_attributes_lookup: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_wc_product_download_directories: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_wc_product_meta_lookup: Données : 0.11MB + Index : 0.16MB + Moteur InnoDB<br>wp_wc_rate_limits: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_wc_reserved_stock: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wc_tax_rate_classes: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_wc_webhooks: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_wfacp_stats: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_wfco_connectormeta: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_wfco_connectors: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_wfco_report_views: Données : 0.05MB + Index : 0.05MB + Moteur InnoDB<br>wp_wfob_stats: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_wfocu_event: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_wfocu_event_meta: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wfocu_session: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_wfpklist_template_data: Données : 0.09MB + Index : 0.00MB + Moteur InnoDB<br>wp_wlr_earn_campaign: Données : 0.02MB + Index : 0.09MB + Moteur InnoDB<br>wp_wlr_earn_campaign_transaction: Données : 0.11MB + Index : 0.20MB + Moteur InnoDB<br>wp_wlr_levels: Données : 0.02MB + Index : 0.08MB + Moteur InnoDB<br>wp_wlr_logs: Données : 0.34MB + Index : 0.13MB + Moteur InnoDB<br>wp_wlr_points_ledger: Données : 0.11MB + Index : 0.09MB + Moteur InnoDB<br>wp_wlr_referral: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_wlr_reward_transactions: Données : 0.02MB + Index : 0.08MB + Moteur InnoDB<br>wp_wlr_rewards: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_wlr_user_rewards: Données : 0.02MB + Index : 0.11MB + Moteur InnoDB<br>wp_wlr_users: Données : 0.05MB + Index : 0.09MB + Moteur InnoDB<br>wp_woo_shippment_provider: Données : 0.14MB + Index : 0.00MB + Moteur InnoDB<br>wp_woocommerce_gls_agency_postcode: Données : 0.19MB + Index : 0.11MB + Moteur InnoDB<br>wp_woocommerce_gls_cache: Données : 0.11MB + Index : 0.05MB + Moteur InnoDB<br>wp_woocommerce_gls_cart_carrier: Données : 0.11MB + Index : 0.05MB + Moteur InnoDB<br>wp_woocommerce_gls_label: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_woocommerce_gls_tracking_state: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_woocommerce_square_customers: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_woof_sd: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_woof_sd_presets: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wpdatacharts: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wpdatatables: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wpdatatables_cache: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wpdatatables_columns: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wpdatatables_rows: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wpfm_backup: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wpforms_payment_meta: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_wpforms_payments: Données : 0.02MB + Index : 0.14MB + Moteur InnoDB<br>wp_wpforms_tasks_meta: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wt_iew_action_history: Données : 0.19MB + Index : 0.00MB + Moteur InnoDB<br>wp_wt_iew_mapping_template: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_yoast_indexable: Données : 0.16MB + Index : 0.09MB + Moteur InnoDB<br>wp_yoast_indexable_hierarchy: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_yoast_migrations: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_yoast_primary_term: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_yoast_seo_links: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB Post Type Counts</p> <p>attachment: 847<br>awl-labels: 9<br>custom_css: 1<br>customize_changeset: 64<br>elementor_library: 12<br>lws-wre-event: 6<br>lws-wre-pool: 1<br>mailpoet_page: 1<br>mc4wp-form: 1<br>ml-slide: 2<br>ml-slider: 1<br>nav_menu_item: 30<br>page: 38<br>popup: 3<br>popup_theme: 8<br>post: 10<br>product: 190<br>product_variation: 442<br>revision: 34<br>rm_content_editor: 1<br>shop_coupon: 61<br>shop_order: 257<br>st_transaction: 116<br>team: 4<br>wcs_ruleset: 17<br>wfacp_checkout: 2<br>wffn_ty: 2<br>wfob_bump: 1<br>wfocu_funnel: 1<br>wfocu_offer: 1<br>wpcf7_contact_form: 2 Security</p> <p>Secure connection (HTTPS): ✔<br>Hide errors from visitors: ✔ Active Plugins (50)</p> <p>WPML Multilingual CMS: par OnTheGoSystems – 4.6.11<br>Advanced Woo Labels: par ILLID – 2.03<br>WP Engine Smart Plugin Manager: par WP Engine – 5.18.0<br>FunnelKit Cart for WooCommerce: par FunnelKit – 1.7.1<br>Code Snippets: par Code Snippets Pro – 3.6.5.1<br>Contact Form 7 Multilingual: par OnTheGoSystems – 1.3.0<br>Contact Form 7: par Takayuki Miyoshi – 5.9.8<br>CookieYes | GDPR Cookie Consent: par CookieYes – 3.2.6<br>Joinchat: par Creame – 5.1.8<br>GTM4WP – A Google Tag Manager (GTM) plugin for WordPress: par Thomas Geiger – 1.20.2<br>Elementor Pro: par Elementor.com – 3.24.3<br>Elementor: par Elementor.com – 3.24.6<br>Indexation instantanée: par Rank Math – 1.1.21<br>FunnelKit Funnel Builder Pro: par FunnelKit – 3.5.2<br>FunnelKit Funnel Builder: par FunnelKit – 3.5.2<br>Google for WooCommerce: par WooCommerce – 2.8.6<br>Health Check & Troubleshooting: par La communauté WordPress – 1.7.1<br>OMGF: par Daan de Daan.dev – 5.9.1<br>Judge.me Product Reviews for WooCommerce: par Judge.me – 1.3.24<br>Live Cart by WP Engine: par WP Engine – 1.0.1<br>Mondial Relay – InPost – WordPress: par Rodolphe Cazemajou-Tournié – 5.2<br>Savoy Theme – Content Elements: par NordicMade – 1.6.3<br>Savoy Theme – Settings Panel: par NordicMade – 1.2.1<br>MailerLite – Signup forms (official): par MailerLite – 1.7.13<br>Factures WooCommerce PDF, bons de livraison, bons de livraison et étiquettes d’expédition: par WebToffee – 4.6.2<br>Rank Math SEO PRO: par Rank Math – 3.0.72<br>Rank Math SEO: par Rank Math – 1.0.229<br>Simple Sticky Add To Cart For WooCommerce Pro: par Solution Box – 1.2.1<br>Simple Sticky Add To Cart For WooCommerce: par Solution Box – 1.4.4<br>Super Socializer: par Team Heateor – 7.13.67<br>SVG Support: par Benbodhi – 2.5.8<br>The Plus Addons for Elementor: par POSIMYTH – 5.6.11<br>Trust Payments Gateway for WooCommerce: par Trust Payments – 1.1.3<br>Trustpilot-reviews: par Trustpilot – 2.5.927<br>Suivi avancé des envois pour WooCommerce: par zorem – 3.6.9<br>MailerLite – WooCommerce integration: par MailerLite – 2.1.22<br>WooCommerce.com Update Manager: par Automattic – 1.0.3<br>GLS, votre partenaire transport: par Nukium – 3.4.0<br>WooCommerce Multilingual & Multicurrency: par OnTheGoSystems – 5.3.8<br>WooCommerce: par Automattic – 9.3.3<br>WP Fastest Cache: par Emre Vona – 1.3.1<br>WP Headers And Footers: par WPBrigade – 3.0.0<br>WPLoyalty – Judge.Me: par WPLoyalty – 1.0.0<br>WPLoyalty – WooCommerce Loyalty Points, Rewards and Referral Pro: par Wployalty – 1.2.13<br>WPLoyalty – Multi-Lingual Compatibility – Dynamic Strings: par WPLoyalty – 1.0.5<br>FunnelKit Automations Connectors: par FunnelKit – 3.1.1<br>FunnelKit Automations Pro: par FunnelKit – 3.2.1<br>FunnelKit Automations: par FunnelKit – 3.2.2<br>Widgets pour les avis Google: par Trustindex.io – 12.2<br>WPML String Translation: par OnTheGoSystems – 3.2.12 Inactive Plugins (5)</p> <p>Chronopost & Mondial relay pour WooCommerce – WCMultiShipping: par Mondial Relay WooCommerce – WCMultiShipping – 2.5.2<br>Flexible Shipping: par Octolize – 4.25.8<br>Order Export & Order Import for WooCommerce: par WebToffee – 2.5.6<br>Savoy Theme – Wishlist: par NordicMade – 2.4.2<br>WPIDE – File Manager & Code Editor: par XplodedThemes – 3.4.9 Dropin Plugins ()</p> <p>advanced-cache.php: advanced-cache.php Must Use Plugins (6)</p> <p>Force Strong Passwords – WPE Edition: par Jason Cosper – 1.8.0<br>Health Check Troubleshooting Mode: par – 1.9.2<br>WP Engine Cache Plugin: par WP Engine – 1.3.2<br>WP Engine Seamless Login Plugin: par WP Engine – 1.6.1<br>WP Engine Security Auditor: par wpengine – 1.1.1<br>WP Engine System: par WP Engine – 6.2.0 Settings</p> <p>Legacy API Enabled: –<br>Force SSL: –<br>Currency: EUR (€)<br>Currency Position: right<br>Thousand Separator:<br>Decimal Separator: ,<br>Number of Decimals: 2<br>Taxonomies: Product Types: external (external)<br>grouped (grouped)<br>simple (simple-2)<br>subscription (subscription)<br>variable (variable-2)<br>variable subscription (variable-subscription)</p> <p>Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog-2)<br>exclude-from-search (exclude-from-search-2)<br>featured (featured-2)<br>outofstock (outofstock-2)</p> <p>Connected to WooCommerce.com: ✔<br>Enforce Approved Product Download Directories: ✔<br>HPOS feature enabled: –<br>Order datastore: WC_Order_Data_Store_CPT<br>HPOS data sync enabled: – Logging</p> <p>Enabled: ✔<br>Handler: Automattic\WooCommerce\Internal\Admin\Logging\LogHandlerFileV2<br>Retention period: 30 jours<br>Level threshold: –<br>Log directory size: 1 Mo WC Pages</p> <p>Base de la boutique: ❌ L’ID de page est définie<br>mais la page n’existe pas</p> <p>Panier: ❌ Page non définie<br>Commander: #1413 – /paiement/ – Contains the [woocommerce_checkout] shortcode<br>Mon compte: #1414 – /mon-compte/<br>Conditions générales de vente et d’utilisation: #2073 – /mentions-legales/ Theme</p> <p>Name: Savoy Child<br>Version: 1.0<br>Author URL: http://www.nordicmade.com<br>Child Theme: ✔<br>Parent Theme Name: Savoy<br>Parent Theme Version: 2.8.1<br>Parent Theme Author URL: http://www.nordicmade.com<br>WooCommerce Support: ✔ Templates</p> <p>Overrides: savoy-child/woocommerce/archive-product.php version 3.4.0 est obsolète. La version du noyau est 8.6.0<br>savoy/woocommerce/cart/cart-empty.php<br>savoy/woocommerce/cart/cart-item-data.php<br>savoy/woocommerce/cart/cart-shipping.php version 7.3.0 est obsolète. La version du noyau est 8.8.0<br>savoy/woocommerce/cart/cart-totals.php<br>savoy-child/woocommerce/cart/cart.php version 7.4.0 est obsolète. La version du noyau est 7.9.0<br>savoy/woocommerce/cart/cross-sells.php<br>savoy-child/woocommerce/cart/mini-cart.php version 5.2.0 est obsolète. La version du noyau est 9.2.0<br>savoy/woocommerce/cart/proceed-to-checkout-button.php<br>savoy/woocommerce/cart/shipping-calculator.php<br>savoy/woocommerce/checkout/cart-errors.php<br>savoy/woocommerce/checkout/form-billing.php<br>savoy/woocommerce/checkout/form-checkout.php<br>savoy/woocommerce/checkout/form-coupon.php<br>savoy/woocommerce/checkout/form-login.php<br>savoy/woocommerce/checkout/form-pay.php version 7.0.1 est obsolète. La version du noyau est 8.2.0<br>savoy/woocommerce/checkout/form-shipping.php<br>savoy/woocommerce/checkout/payment-method.php<br>savoy/woocommerce/checkout/payment.php version 7.0.1 est obsolète. La version du noyau est 8.1.0<br>savoy/woocommerce/checkout/review-order.php<br>savoy/woocommerce/checkout/terms.php<br>savoy/woocommerce/checkout/thankyou.php version 3.7.0 est obsolète. La version du noyau est 8.1.0<br>savoy/woocommerce/content-product.php<br>savoy/woocommerce/content-single-product.php<br>savoy/woocommerce/content-widget-price-filter.php<br>savoy/woocommerce/content-widget-product.php<br>savoy/woocommerce/content-widget-reviews.php<br>savoy-child/woocommerce/emails/customer-completed-order.php<br>savoy/woocommerce/global/breadcrumb.php<br>savoy/woocommerce/global/form-login.php version 7.0.1 est obsolète. La version du noyau est 9.2.0<br>savoy/woocommerce/global/quantity-input.php version 7.4.0 est obsolète. La version du noyau est 7.8.0<br>savoy/woocommerce/global/sidebar.php<br>savoy/woocommerce/global/wrapper-end.php<br>savoy/woocommerce/global/wrapper-start.php<br>savoy/woocommerce/loop/add-to-cart.php version 3.3.0 est obsolète. La version du noyau est 9.2.0<br>savoy/woocommerce/loop/loop-end.php<br>savoy/woocommerce/loop/loop-start.php<br>savoy/woocommerce/loop/no-products-found.php version 2.0.0 est obsolète. La version du noyau est 7.8.0<br>savoy/woocommerce/loop/pagination.php version 3.3.1 est obsolète. La version du noyau est 9.3.0<br>savoy/woocommerce/loop/price.php<br>savoy/woocommerce/loop/rating.php<br>savoy/woocommerce/loop/sale-flash.php<br>savoy/woocommerce/myaccount/dashboard.php<br>savoy/woocommerce/myaccount/downloads.php version 3.2.0 est obsolète. La version du noyau est 7.8.0<br>savoy/woocommerce/myaccount/form-add-payment-method.php version 7.0.1 est obsolète. La version du noyau est 7.8.0<br>savoy/woocommerce/myaccount/form-edit-account.php version 7.0.1 est obsolète. La version du noyau est 8.7.0<br>savoy/woocommerce/myaccount/form-edit-address.php version 7.0.1 est obsolète. La version du noyau est 9.3.0<br>savoy/woocommerce/myaccount/form-login.php version 7.0.1 est obsolète. La version du noyau est 9.2.0<br>savoy/woocommerce/myaccount/form-lost-password.php version 7.0.1 est obsolète. La version du noyau est 9.2.0<br>savoy/woocommerce/myaccount/form-reset-password.php version 7.0.1 est obsolète. La version du noyau est 9.2.0<br>savoy/woocommerce/myaccount/lost-password-confirmation.php<br>savoy/woocommerce/myaccount/my-account.php<br>savoy/woocommerce/myaccount/my-address.php version 2.6.0 est obsolète. La version du noyau est 9.3.0<br>savoy/woocommerce/myaccount/navigation.php version 2.6.0 est obsolète. La version du noyau est 9.3.0<br>savoy/woocommerce/myaccount/orders.php version 7.0.1 est obsolète. La version du noyau est 9.2.0<br>savoy/woocommerce/myaccount/payment-methods.php version 2.6.0 est obsolète. La version du noyau est 8.9.0<br>savoy/woocommerce/myaccount/view-order.php<br>savoy/woocommerce/notices/error.php version 3.9.0 est obsolète. La version du noyau est 8.6.0<br>savoy/woocommerce/notices/notice.php version 3.98.0 est obsolète. La version du noyau est 8.6.0<br>savoy/woocommerce/notices/success.php version 3.9.0 est obsolète. La version du noyau est 8.6.0<br>savoy-child/woocommerce/order/form-tracking.php<br>savoy/woocommerce/order/order-again.php version 3.5.0 est obsolète. La version du noyau est 7.8.0<br>savoy/woocommerce/order/order-details-customer.php version 5.6.0 est obsolète. La version du noyau est 8.7.0<br>savoy/woocommerce/order/order-details-item.php<br>savoy/woocommerce/order/order-details.php version 7.7.0 est obsolète. La version du noyau est 9.0.0<br>savoy/woocommerce/order/tracking.php<br>savoy/woocommerce/product-searchform.php<br>savoy/woocommerce/single-product/add-to-cart/external.php<br>savoy/woocommerce/single-product/add-to-cart/grouped.php<br>savoy/woocommerce/single-product/add-to-cart/simple.php<br>savoy/woocommerce/single-product/add-to-cart/variable.php<br>savoy/woocommerce/single-product/add-to-cart/variation-add-to-cart-button.php<br>savoy/woocommerce/single-product/add-to-cart/variation.php version 2.5.0 est obsolète. La version du noyau est 9.3.0<br>savoy/woocommerce/single-product/meta.php<br>savoy/woocommerce/single-product/photoswipe.php<br>savoy/woocommerce/single-product/price.php<br>savoy/woocommerce/single-product/product-attributes.php version 3.6.0 est obsolète. La version du noyau est 9.3.0<br>savoy/woocommerce/single-product/product-image.php version 3.5.1 est obsolète. La version du noyau est 9.0.0<br>savoy/woocommerce/single-product/product-thumbnails.php<br>savoy/woocommerce/single-product/rating.php<br>savoy/woocommerce/single-product/related.php<br>savoy/woocommerce/single-product/review-meta.php<br>savoy/woocommerce/single-product/review-rating.php<br>savoy/woocommerce/single-product/review.php<br>savoy/woocommerce/single-product/sale-flash.php<br>savoy/woocommerce/single-product/share.php<br>savoy/woocommerce/single-product/short-description.php<br>savoy/woocommerce/single-product/stock.php<br>savoy/woocommerce/single-product/tabs/additional-information.php<br>savoy/woocommerce/single-product/tabs/description.php<br>savoy/woocommerce/single-product/tabs/tabs.php<br>savoy/woocommerce/single-product/title.php<br>savoy/woocommerce/single-product/up-sells.php<br>savoy/woocommerce/single-product-reviews.php<br>savoy-child/woocommerce/single-product.php<br>savoy/woocommerce/taxonomy-product-cat.php<br>savoy/woocommerce/taxonomy-product-tag.php<br>savoy/woocommerce/content-product_cat.php</p> <p>Outdated Templates: ❌</p> <pre class=”wp-block-code”><code> Apprenez comment mettre à jour | Clear system status theme info cache</code></pre> <p>Admin</p> <p>Enabled Features: activity-panels<br>analytics<br>product-block-editor<br>coupons<br>core-profiler<br>customize-store<br>customer-effort-score-tracks<br>import-products-task<br>experimental-fashion-sample-products<br>shipping-smart-defaults<br>shipping-setting-tour<br>homescreen<br>marketing<br>mobile-app-banner<br>navigation<br>onboarding<br>onboarding-tasks<br>pattern-toolkit-full-composability<br>product-custom-fields<br>remote-inbox-notifications<br>remote-free-extensions<br>payment-gateway-suggestions<br>printful<br>shipping-label-banner<br>subscriptions<br>store-alerts<br>transient-notices<br>woo-mobile-welcome<br>wc-pay-promotion<br>wc-pay-welcome-page<br>launch-your-store</p> <p>Disabled Features: experimental-blocks<br>minified-js<br>product-pre-publish-modal<br>settings<br>async-product-editor-category-field<br>product-editor-template-system<br>blueprint<br>reactify-classic-payments-settings</p> <p>Daily Cron: ✔ Next scheduled: 2024-09-05 08:34:42 +02:00<br>Options: ✔<br>Notes: 112<br>Onboarding: completed Action Scheduler</p> <p>Pending: 486<br>Oldest: 2024-09-09 13:50:57 +0000<br>Newest: 2024-10-09 14:36:38 +0000</p> <p>Canceled: 2<br>Oldest: -0001-11-30 00:00:00 +0000<br>Newest: -0001-11-30 00:00:00 +0000 Status report information</p> <p>Generated at: 2024-10-09 18:29:48 +02:00<br>`
Forum: Plugins
In reply to: [WooCommerce] Issue with WooCommerce Customer List DataAfter following your advice to update WordPress and WooCommerce to their latest versions and clicking to update the WooCommerce database, the process has been running for over 18 hours with no visible change in the “Customers” tab. The new customers from the last 12 hours are still displaying 0 values.
When I check the progress of the database update, I am redirected to WooCommerce > Status > Scheduled Actions, where I see the following:
- All (488) | Pending (486) | Canceled (2) | Past-due (486) for the action “woocommerce_run_update.”
Here is new system report if needed :
` WordPress Environment</p> <p>WordPress address (URL): https://amsterdam-quality.fr<br>Site address (URL): https://amsterdam-quality.fr<br>WC Version: 9.3.3<br>Legacy REST API Package Version: The Legacy REST API plugin is not installed on this site.<br>Action Scheduler Version: ✔ 3.8.2<br>Log Directory Writable: ✔<br>WP Version: 6.6.2<br>WP Multisite: –<br>WP Memory Limit: 512 Mo<br>WP Debug Mode: ✔<br>WP Cron: ✔<br>Language: fr_FR<br>External object cache: – Server Environment</p> <p>Server Info: Apache<br>PHP Version: 8.2.24<br>PHP Post Max Size: 100 Mo<br>PHP Time Limit: 3600<br>PHP Max Input Vars: 10000<br>cURL Version: 7.81.0<br>OpenSSL/3.0.2</p> <p>SUHOSIN Installed: –<br>MySQL Version: 8.0.37-29<br>Max Upload Size: 50 Mo<br>Default Timezone is UTC: ✔<br>fsockopen/cURL: ✔<br>SoapClient: ✔<br>DOMDocument: ✔<br>GZip: ✔<br>Multibyte String: ✔<br>Remote Post: ✔<br>Remote Get: ✔ Database</p> <p>WC Database Version: 8.6.1<br>WC Database Prefix: wp_<br>Taille totale de la base de données: 149.42MB<br>Taille de la base de données: 112.44MB<br>Taille de l’index: 36.98MB<br>wp_woocommerce_sessions: Données : 36.52MB + Index : 0.27MB + Moteur InnoDB<br>wp_woocommerce_api_keys: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_woocommerce_attribute_taxonomies: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_woocommerce_downloadable_product_permissions: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_woocommerce_order_items: Données : 0.14MB + Index : 0.06MB + Moteur InnoDB<br>wp_woocommerce_order_itemmeta: Données : 1.52MB + Index : 1.86MB + Moteur InnoDB<br>wp_woocommerce_tax_rates: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_woocommerce_tax_rate_locations: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_woocommerce_shipping_zones: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_woocommerce_shipping_zone_locations: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_woocommerce_shipping_zone_methods: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_woocommerce_payment_tokens: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_woocommerce_payment_tokenmeta: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_woocommerce_log: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_actionscheduler_actions: Données : 0.17MB + Index : 0.19MB + Moteur InnoDB<br>wp_actionscheduler_claims: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_actionscheduler_groups: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_actionscheduler_logs: Données : 0.05MB + Index : 0.03MB + Moteur InnoDB<br>wp_aioseo_cache: Données : 0.09MB + Index : 0.03MB + Moteur InnoDB<br>wp_aioseo_notifications: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_aioseo_posts: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_bwf_ab_experiments: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_bwf_action_claim: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_bwf_actions: Données : 0.06MB + Index : 0.09MB + Moteur InnoDB<br>wp_bwf_contact: Données : 0.09MB + Index : 0.06MB + Moteur InnoDB<br>wp_bwf_contact_fields: Données : 0.02MB + Index : 0.22MB + Moteur InnoDB<br>wp_bwf_contact_meta: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_bwf_conversion_tracking: Données : 0.05MB + Index : 0.20MB + Moteur InnoDB<br>wp_bwf_funnelmeta: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwf_funnels: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_bwf_optin_entries: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwf_options: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwf_wc_customers: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_abandonedcarts: Données : 2.52MB + Index : 0.13MB + Moteur InnoDB<br>wp_bwfan_api_keys: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_automation_complete_contact: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_bwfan_automation_contact: Données : 0.02MB + Index : 0.09MB + Moteur InnoDB<br>wp_bwfan_automation_contact_claim: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_bwfan_automation_contact_trail: Données : 0.02MB + Index : 0.08MB + Moteur InnoDB<br>wp_bwfan_automation_events: Données : 0.16MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_automation_step: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_automationmeta: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_automations: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_broadcast: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_bulk_action: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_contact_note: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_bwfan_conversions: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_bwfan_engagement_tracking: Données : 0.02MB + Index : 0.19MB + Moteur InnoDB<br>wp_bwfan_engagement_trackingmeta: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_bwfan_field_groups: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_bwfan_fields: Données : 0.02MB + Index : 0.09MB + Moteur InnoDB<br>wp_bwfan_form_feeds: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_import_export: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_bwfan_link_triggers: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_bwfan_message: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_bwfan_message_unsubscribe: Données : 0.02MB + Index : 0.11MB + Moteur InnoDB<br>wp_bwfan_templates: Données : 0.33MB + Index : 0.05MB + Moteur InnoDB<br>wp_bwfan_terms: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_chaty_contact_form_leads: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_cky_banners: Données : 0.05MB + Index : 0.00MB + Moteur InnoDB<br>wp_cky_cookie_categories: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_cky_cookies: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_commentmeta: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_comments: Données : 1.52MB + Index : 0.45MB + Moteur InnoDB<br>wp_e_events: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_e_notes: Données : 0.02MB + Index : 0.17MB + Moteur InnoDB<br>wp_e_notes_users_relations: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_e_submissions: Données : 0.02MB + Index : 0.27MB + Moteur InnoDB<br>wp_e_submissions_actions_log: Données : 0.02MB + Index : 0.11MB + Moteur InnoDB<br>wp_e_submissions_values: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_fk_cart_stats: Données : 0.02MB + Index : 0.08MB + Moteur InnoDB<br>wp_gla_attribute_mapping_rules: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_gla_budget_recommendations: Données : 0.19MB + Index : 0.14MB + Moteur InnoDB<br>wp_gla_merchant_issues: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_gla_shipping_rates: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_gla_shipping_times: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_background_task: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_content_status: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_core_status: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_flags: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_languages: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_icl_languages_translations: Données : 0.20MB + Index : 0.17MB + Moteur InnoDB<br>wp_icl_locale_map: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_message_status: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_icl_mo_files_domains: Données : 0.05MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_node: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_reminders: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_string_batches: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_string_packages: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_string_positions: Données : 1.52MB + Index : 0.23MB + Moteur InnoDB<br>wp_icl_string_status: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_string_translations: Données : 0.05MB + Index : 0.03MB + Moteur InnoDB<br>wp_icl_strings: Données : 6.52MB + Index : 12.09MB + Moteur InnoDB<br>wp_icl_translate: Données : 0.17MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_translate_job: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_translation_batches: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_translation_downloads: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_icl_translation_status: Données : 0.38MB + Index : 0.02MB + Moteur InnoDB<br>wp_icl_translations: Données : 0.20MB + Index : 0.64MB + Moteur InnoDB<br>wp_jetpack_sync_queue: Données : 8.52MB + Index : 0.83MB + Moteur InnoDB<br>wp_links: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_lws_wr_achieved_log: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_lws_wr_historic: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailchimp_carts: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailchimp_jobs: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailerlite_checkouts: Données : 1.45MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailerlite_forms: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailpoet_automation_run_logs: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_automation_run_subjects: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_automation_runs: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_automation_triggers: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailpoet_automation_versions: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_automations: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailpoet_custom_fields: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_dynamic_segment_filters: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_feature_flags: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_forms: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailpoet_log: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailpoet_migrations: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_newsletter_links: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_mailpoet_newsletter_option: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_newsletter_option_fields: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_newsletter_posts: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_newsletter_segment: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_newsletter_templates: Données : 2.52MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailpoet_newsletters: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_scheduled_task_subscribers: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_scheduled_tasks: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_segments: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_sending_queues: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_settings: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_statistics_bounces: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_mailpoet_statistics_clicks: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_mailpoet_statistics_forms: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_statistics_newsletters: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_statistics_opens: Données : 0.02MB + Index : 0.08MB + Moteur InnoDB<br>wp_mailpoet_statistics_unsubscribes: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_mailpoet_statistics_woocommerce_purchases: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_mailpoet_stats_notifications: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_subscriber_custom_field: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_subscriber_ips: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_subscriber_segment: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_subscriber_tag: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_mailpoet_subscribers: Données : 0.02MB + Index : 0.23MB + Moteur InnoDB<br>wp_mailpoet_tags: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_user_agents: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_mailpoet_user_flags: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_ml_data: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_nextend2_image_storage: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_nextend2_section_storage: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_nextend2_smartslider3_generators: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_nextend2_smartslider3_sliders: Données : 0.17MB + Index : 0.03MB + Moteur InnoDB<br>wp_nextend2_smartslider3_sliders_xref: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_nextend2_smartslider3_slides: Données : 0.22MB + Index : 0.11MB + Moteur InnoDB<br>wp_options: Données : 20.20MB + Index : 0.50MB + Moteur InnoDB<br>wp_parcelpanel_courier: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_parcelpanel_location: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_parcelpanel_tracking: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_parcelpanel_tracking_items: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_postmeta: Données : 11.47MB + Index : 5.95MB + Moteur InnoDB<br>wp_posts: Données : 5.48MB + Index : 0.44MB + Moteur InnoDB<br>wp_pum_subscribers: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_rank_math_404_logs: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_rank_math_analytics_gsc: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_rank_math_analytics_keyword_manager: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_rank_math_analytics_objects: Données : 0.14MB + Index : 0.05MB + Moteur InnoDB<br>wp_rank_math_internal_links: Données : 0.22MB + Index : 0.08MB + Moteur InnoDB<br>wp_rank_math_internal_meta: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_rank_math_redirections: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_rank_math_redirections_cache: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_css: Données : 0.13MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_css_bkp: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_layer_animations: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_revslider_layer_animations_bkp: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_revslider_navigations: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_revslider_navigations_bkp: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_revslider_sliders: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_sliders_bkp: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_slides: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_slides_bkp: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_static_slides: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_revslider_static_slides_bkp: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_shortpixel_folders: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_shortpixel_meta: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_shortpixel_postmeta: Données : 0.02MB + Index : 0.08MB + Moteur InnoDB<br>wp_snippets: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_social_users: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_term_relationships: Données : 0.14MB + Index : 0.09MB + Moteur InnoDB<br>wp_term_taxonomy: Données : 0.16MB + Index : 0.06MB + Moteur InnoDB<br>wp_termmeta: Données : 0.16MB + Index : 0.16MB + Moteur InnoDB<br>wp_terms: Données : 0.06MB + Index : 0.03MB + Moteur InnoDB<br>wp_trustindex_google_reviews: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_userfeedback_survey_responses: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_userfeedback_surveys: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_usermeta: Données : 2.52MB + Index : 4.03MB + Moteur InnoDB<br>wp_users: Données : 0.14MB + Index : 0.11MB + Moteur InnoDB<br>wp_viva_payment_transactions: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_vivawallet_data: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wc_admin_note_actions: Données : 0.05MB + Index : 0.02MB + Moteur InnoDB<br>wp_wc_admin_notes: Données : 0.08MB + Index : 0.00MB + Moteur InnoDB<br>wp_wc_category_lookup: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wc_customer_lookup: Données : 0.09MB + Index : 0.06MB + Moteur InnoDB<br>wp_wc_download_log: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_wc_order_addresses: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_wc_order_coupon_lookup: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_wc_order_operational_data: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_wc_order_product_lookup: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_wc_order_stats: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_wc_order_tax_lookup: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_wc_orders: Données : 0.02MB + Index : 0.11MB + Moteur InnoDB<br>wp_wc_orders_meta: Données : 0.11MB + Index : 0.16MB + Moteur InnoDB<br>wp_wc_product_attributes_lookup: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_wc_product_download_directories: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_wc_product_meta_lookup: Données : 0.11MB + Index : 0.16MB + Moteur InnoDB<br>wp_wc_rate_limits: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_wc_reserved_stock: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wc_tax_rate_classes: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_wc_webhooks: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_wfacp_stats: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_wfco_connectormeta: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_wfco_connectors: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_wfco_report_views: Données : 0.05MB + Index : 0.05MB + Moteur InnoDB<br>wp_wfob_stats: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_wfocu_event: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_wfocu_event_meta: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wfocu_session: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_wfpklist_template_data: Données : 0.09MB + Index : 0.00MB + Moteur InnoDB<br>wp_wlr_earn_campaign: Données : 0.02MB + Index : 0.09MB + Moteur InnoDB<br>wp_wlr_earn_campaign_transaction: Données : 0.11MB + Index : 0.20MB + Moteur InnoDB<br>wp_wlr_levels: Données : 0.02MB + Index : 0.08MB + Moteur InnoDB<br>wp_wlr_logs: Données : 0.34MB + Index : 0.13MB + Moteur InnoDB<br>wp_wlr_points_ledger: Données : 0.11MB + Index : 0.09MB + Moteur InnoDB<br>wp_wlr_referral: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_wlr_reward_transactions: Données : 0.02MB + Index : 0.08MB + Moteur InnoDB<br>wp_wlr_rewards: Données : 0.02MB + Index : 0.06MB + Moteur InnoDB<br>wp_wlr_user_rewards: Données : 0.02MB + Index : 0.11MB + Moteur InnoDB<br>wp_wlr_users: Données : 0.05MB + Index : 0.09MB + Moteur InnoDB<br>wp_woo_shippment_provider: Données : 0.14MB + Index : 0.00MB + Moteur InnoDB<br>wp_woocommerce_gls_agency_postcode: Données : 0.19MB + Index : 0.11MB + Moteur InnoDB<br>wp_woocommerce_gls_cache: Données : 0.11MB + Index : 0.05MB + Moteur InnoDB<br>wp_woocommerce_gls_cart_carrier: Données : 0.11MB + Index : 0.05MB + Moteur InnoDB<br>wp_woocommerce_gls_label: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_woocommerce_gls_tracking_state: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_woocommerce_square_customers: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_woof_sd: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_woof_sd_presets: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wpdatacharts: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wpdatatables: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wpdatatables_cache: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wpdatatables_columns: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wpdatatables_rows: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wpfm_backup: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wpforms_payment_meta: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_wpforms_payments: Données : 0.02MB + Index : 0.14MB + Moteur InnoDB<br>wp_wpforms_tasks_meta: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_wt_iew_action_history: Données : 0.19MB + Index : 0.00MB + Moteur InnoDB<br>wp_wt_iew_mapping_template: Données : 0.02MB + Index : 0.00MB + Moteur InnoDB<br>wp_yoast_indexable: Données : 0.16MB + Index : 0.09MB + Moteur InnoDB<br>wp_yoast_indexable_hierarchy: Données : 0.02MB + Index : 0.05MB + Moteur InnoDB<br>wp_yoast_migrations: Données : 0.02MB + Index : 0.02MB + Moteur InnoDB<br>wp_yoast_primary_term: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB<br>wp_yoast_seo_links: Données : 0.02MB + Index : 0.03MB + Moteur InnoDB Post Type Counts</p> <p>attachment: 847<br>awl-labels: 9<br>custom_css: 1<br>customize_changeset: 64<br>elementor_library: 12<br>lws-wre-event: 6<br>lws-wre-pool: 1<br>mailpoet_page: 1<br>mc4wp-form: 1<br>ml-slide: 2<br>ml-slider: 1<br>nav_menu_item: 30<br>page: 38<br>popup: 3<br>popup_theme: 8<br>post: 10<br>product: 190<br>product_variation: 442<br>revision: 34<br>rm_content_editor: 1<br>shop_coupon: 61<br>shop_order: 257<br>st_transaction: 116<br>team: 4<br>wcs_ruleset: 17<br>wfacp_checkout: 2<br>wffn_ty: 2<br>wfob_bump: 1<br>wfocu_funnel: 1<br>wfocu_offer: 1<br>wpcf7_contact_form: 2 Security</p> <p>Secure connection (HTTPS): ✔<br>Hide errors from visitors: ✔ Active Plugins (50)</p> <p>WPML Multilingual CMS: par OnTheGoSystems – 4.6.11<br>Advanced Woo Labels: par ILLID – 2.03<br>WP Engine Smart Plugin Manager: par WP Engine – 5.18.0<br>FunnelKit Cart for WooCommerce: par FunnelKit – 1.7.1<br>Code Snippets: par Code Snippets Pro – 3.6.5.1<br>Contact Form 7 Multilingual: par OnTheGoSystems – 1.3.0<br>Contact Form 7: par Takayuki Miyoshi – 5.9.8<br>CookieYes | GDPR Cookie Consent: par CookieYes – 3.2.6<br>Joinchat: par Creame – 5.1.8<br>GTM4WP – A Google Tag Manager (GTM) plugin for WordPress: par Thomas Geiger – 1.20.2<br>Elementor Pro: par Elementor.com – 3.24.3<br>Elementor: par Elementor.com – 3.24.6<br>Indexation instantanée: par Rank Math – 1.1.21<br>FunnelKit Funnel Builder Pro: par FunnelKit – 3.5.2<br>FunnelKit Funnel Builder: par FunnelKit – 3.5.2<br>Google for WooCommerce: par WooCommerce – 2.8.6<br>Health Check & Troubleshooting: par La communauté WordPress – 1.7.1<br>OMGF: par Daan de Daan.dev – 5.9.1<br>Judge.me Product Reviews for WooCommerce: par Judge.me – 1.3.24<br>Live Cart by WP Engine: par WP Engine – 1.0.1<br>Mondial Relay – InPost – WordPress: par Rodolphe Cazemajou-Tournié – 5.2<br>Savoy Theme – Content Elements: par NordicMade – 1.6.3<br>Savoy Theme – Settings Panel: par NordicMade – 1.2.1<br>MailerLite – Signup forms (official): par MailerLite – 1.7.13<br>Factures WooCommerce PDF, bons de livraison, bons de livraison et étiquettes d’expédition: par WebToffee – 4.6.2<br>Rank Math SEO PRO: par Rank Math – 3.0.72<br>Rank Math SEO: par Rank Math – 1.0.229<br>Simple Sticky Add To Cart For WooCommerce Pro: par Solution Box – 1.2.1<br>Simple Sticky Add To Cart For WooCommerce: par Solution Box – 1.4.4<br>Super Socializer: par Team Heateor – 7.13.67<br>SVG Support: par Benbodhi – 2.5.8<br>The Plus Addons for Elementor: par POSIMYTH – 5.6.11<br>Trust Payments Gateway for WooCommerce: par Trust Payments – 1.1.3<br>Trustpilot-reviews: par Trustpilot – 2.5.927<br>Suivi avancé des envois pour WooCommerce: par zorem – 3.6.9<br>MailerLite – WooCommerce integration: par MailerLite – 2.1.22<br>WooCommerce.com Update Manager: par Automattic – 1.0.3<br>GLS, votre partenaire transport: par Nukium – 3.4.0<br>WooCommerce Multilingual & Multicurrency: par OnTheGoSystems – 5.3.8<br>WooCommerce: par Automattic – 9.3.3<br>WP Fastest Cache: par Emre Vona – 1.3.1<br>WP Headers And Footers: par WPBrigade – 3.0.0<br>WPLoyalty – Judge.Me: par WPLoyalty – 1.0.0<br>WPLoyalty – WooCommerce Loyalty Points, Rewards and Referral Pro: par Wployalty – 1.2.13<br>WPLoyalty – Multi-Lingual Compatibility – Dynamic Strings: par WPLoyalty – 1.0.5<br>FunnelKit Automations Connectors: par FunnelKit – 3.1.1<br>FunnelKit Automations Pro: par FunnelKit – 3.2.1<br>FunnelKit Automations: par FunnelKit – 3.2.2<br>Widgets pour les avis Google: par Trustindex.io – 12.2<br>WPML String Translation: par OnTheGoSystems – 3.2.12 Inactive Plugins (5)</p> <p>Chronopost & Mondial relay pour WooCommerce – WCMultiShipping: par Mondial Relay WooCommerce – WCMultiShipping – 2.5.2<br>Flexible Shipping: par Octolize – 4.25.8<br>Order Export & Order Import for WooCommerce: par WebToffee – 2.5.6<br>Savoy Theme – Wishlist: par NordicMade – 2.4.2<br>WPIDE – File Manager & Code Editor: par XplodedThemes – 3.4.9 Dropin Plugins ()</p> <p>advanced-cache.php: advanced-cache.php Must Use Plugins (6)</p> <p>Force Strong Passwords – WPE Edition: par Jason Cosper – 1.8.0<br>Health Check Troubleshooting Mode: par – 1.9.2<br>WP Engine Cache Plugin: par WP Engine – 1.3.2<br>WP Engine Seamless Login Plugin: par WP Engine – 1.6.1<br>WP Engine Security Auditor: par wpengine – 1.1.1<br>WP Engine System: par WP Engine – 6.2.0 Settings</p> <p>Legacy API Enabled: –<br>Force SSL: –<br>Currency: EUR (€)<br>Currency Position: right<br>Thousand Separator:<br>Decimal Separator: ,<br>Number of Decimals: 2<br>Taxonomies: Product Types: external (external)<br>grouped (grouped)<br>simple (simple-2)<br>subscription (subscription)<br>variable (variable-2)<br>variable subscription (variable-subscription)</p> <p>Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog-2)<br>exclude-from-search (exclude-from-search-2)<br>featured (featured-2)<br>outofstock (outofstock-2)</p> <p>Connected to WooCommerce.com: ✔<br>Enforce Approved Product Download Directories: ✔<br>HPOS feature enabled: –<br>Order datastore: WC_Order_Data_Store_CPT<br>HPOS data sync enabled: – Logging</p> <p>Enabled: ✔<br>Handler: Automattic\WooCommerce\Internal\Admin\Logging\LogHandlerFileV2<br>Retention period: 30 jours<br>Level threshold: –<br>Log directory size: 1 Mo WC Pages</p> <p>Base de la boutique: ❌ L’ID de page est définie<br>mais la page n’existe pas</p> <p>Panier: ❌ Page non définie<br>Commander: #1413 – /paiement/ – Contains the [woocommerce_checkout] shortcode<br>Mon compte: #1414 – /mon-compte/<br>Conditions générales de vente et d’utilisation: #2073 – /mentions-legales/ Theme</p> <p>Name: Savoy Child<br>Version: 1.0<br>Author URL: http://www.nordicmade.com<br>Child Theme: ✔<br>Parent Theme Name: Savoy<br>Parent Theme Version: 2.8.1<br>Parent Theme Author URL: http://www.nordicmade.com<br>WooCommerce Support: ✔ Templates</p> <p>Overrides: savoy-child/woocommerce/archive-product.php version 3.4.0 est obsolète. La version du noyau est 8.6.0<br>savoy/woocommerce/cart/cart-empty.php<br>savoy/woocommerce/cart/cart-item-data.php<br>savoy/woocommerce/cart/cart-shipping.php version 7.3.0 est obsolète. La version du noyau est 8.8.0<br>savoy/woocommerce/cart/cart-totals.php<br>savoy-child/woocommerce/cart/cart.php version 7.4.0 est obsolète. La version du noyau est 7.9.0<br>savoy/woocommerce/cart/cross-sells.php<br>savoy-child/woocommerce/cart/mini-cart.php version 5.2.0 est obsolète. La version du noyau est 9.2.0<br>savoy/woocommerce/cart/proceed-to-checkout-button.php<br>savoy/woocommerce/cart/shipping-calculator.php<br>savoy/woocommerce/checkout/cart-errors.php<br>savoy/woocommerce/checkout/form-billing.php<br>savoy/woocommerce/checkout/form-checkout.php<br>savoy/woocommerce/checkout/form-coupon.php<br>savoy/woocommerce/checkout/form-login.php<br>savoy/woocommerce/checkout/form-pay.php version 7.0.1 est obsolète. La version du noyau est 8.2.0<br>savoy/woocommerce/checkout/form-shipping.php<br>savoy/woocommerce/checkout/payment-method.php<br>savoy/woocommerce/checkout/payment.php version 7.0.1 est obsolète. La version du noyau est 8.1.0<br>savoy/woocommerce/checkout/review-order.php<br>savoy/woocommerce/checkout/terms.php<br>savoy/woocommerce/checkout/thankyou.php version 3.7.0 est obsolète. La version du noyau est 8.1.0<br>savoy/woocommerce/content-product.php<br>savoy/woocommerce/content-single-product.php<br>savoy/woocommerce/content-widget-price-filter.php<br>savoy/woocommerce/content-widget-product.php<br>savoy/woocommerce/content-widget-reviews.php<br>savoy-child/woocommerce/emails/customer-completed-order.php<br>savoy/woocommerce/global/breadcrumb.php<br>savoy/woocommerce/global/form-login.php version 7.0.1 est obsolète. La version du noyau est 9.2.0<br>savoy/woocommerce/global/quantity-input.php version 7.4.0 est obsolète. La version du noyau est 7.8.0<br>savoy/woocommerce/global/sidebar.php<br>savoy/woocommerce/global/wrapper-end.php<br>savoy/woocommerce/global/wrapper-start.php<br>savoy/woocommerce/loop/add-to-cart.php version 3.3.0 est obsolète. La version du noyau est 9.2.0<br>savoy/woocommerce/loop/loop-end.php<br>savoy/woocommerce/loop/loop-start.php<br>savoy/woocommerce/loop/no-products-found.php version 2.0.0 est obsolète. La version du noyau est 7.8.0<br>savoy/woocommerce/loop/pagination.php version 3.3.1 est obsolète. La version du noyau est 9.3.0<br>savoy/woocommerce/loop/price.php<br>savoy/woocommerce/loop/rating.php<br>savoy/woocommerce/loop/sale-flash.php<br>savoy/woocommerce/myaccount/dashboard.php<br>savoy/woocommerce/myaccount/downloads.php version 3.2.0 est obsolète. La version du noyau est 7.8.0<br>savoy/woocommerce/myaccount/form-add-payment-method.php version 7.0.1 est obsolète. La version du noyau est 7.8.0<br>savoy/woocommerce/myaccount/form-edit-account.php version 7.0.1 est obsolète. La version du noyau est 8.7.0<br>savoy/woocommerce/myaccount/form-edit-address.php version 7.0.1 est obsolète. La version du noyau est 9.3.0<br>savoy/woocommerce/myaccount/form-login.php version 7.0.1 est obsolète. La version du noyau est 9.2.0<br>savoy/woocommerce/myaccount/form-lost-password.php version 7.0.1 est obsolète. La version du noyau est 9.2.0<br>savoy/woocommerce/myaccount/form-reset-password.php version 7.0.1 est obsolète. La version du noyau est 9.2.0<br>savoy/woocommerce/myaccount/lost-password-confirmation.php<br>savoy/woocommerce/myaccount/my-account.php<br>savoy/woocommerce/myaccount/my-address.php version 2.6.0 est obsolète. La version du noyau est 9.3.0<br>savoy/woocommerce/myaccount/navigation.php version 2.6.0 est obsolète. La version du noyau est 9.3.0<br>savoy/woocommerce/myaccount/orders.php version 7.0.1 est obsolète. La version du noyau est 9.2.0<br>savoy/woocommerce/myaccount/payment-methods.php version 2.6.0 est obsolète. La version du noyau est 8.9.0<br>savoy/woocommerce/myaccount/view-order.php<br>savoy/woocommerce/notices/error.php version 3.9.0 est obsolète. La version du noyau est 8.6.0<br>savoy/woocommerce/notices/notice.php version 3.98.0 est obsolète. La version du noyau est 8.6.0<br>savoy/woocommerce/notices/success.php version 3.9.0 est obsolète. La version du noyau est 8.6.0<br>savoy-child/woocommerce/order/form-tracking.php<br>savoy/woocommerce/order/order-again.php version 3.5.0 est obsolète. La version du noyau est 7.8.0<br>savoy/woocommerce/order/order-details-customer.php version 5.6.0 est obsolète. La version du noyau est 8.7.0<br>savoy/woocommerce/order/order-details-item.php<br>savoy/woocommerce/order/order-details.php version 7.7.0 est obsolète. La version du noyau est 9.0.0<br>savoy/woocommerce/order/tracking.php<br>savoy/woocommerce/product-searchform.php<br>savoy/woocommerce/single-product/add-to-cart/external.php<br>savoy/woocommerce/single-product/add-to-cart/grouped.php<br>savoy/woocommerce/single-product/add-to-cart/simple.php<br>savoy/woocommerce/single-product/add-to-cart/variable.php<br>savoy/woocommerce/single-product/add-to-cart/variation-add-to-cart-button.php<br>savoy/woocommerce/single-product/add-to-cart/variation.php version 2.5.0 est obsolète. La version du noyau est 9.3.0<br>savoy/woocommerce/single-product/meta.php<br>savoy/woocommerce/single-product/photoswipe.php<br>savoy/woocommerce/single-product/price.php<br>savoy/woocommerce/single-product/product-attributes.php version 3.6.0 est obsolète. La version du noyau est 9.3.0<br>savoy/woocommerce/single-product/product-image.php version 3.5.1 est obsolète. La version du noyau est 9.0.0<br>savoy/woocommerce/single-product/product-thumbnails.php<br>savoy/woocommerce/single-product/rating.php<br>savoy/woocommerce/single-product/related.php<br>savoy/woocommerce/single-product/review-meta.php<br>savoy/woocommerce/single-product/review-rating.php<br>savoy/woocommerce/single-product/review.php<br>savoy/woocommerce/single-product/sale-flash.php<br>savoy/woocommerce/single-product/share.php<br>savoy/woocommerce/single-product/short-description.php<br>savoy/woocommerce/single-product/stock.php<br>savoy/woocommerce/single-product/tabs/additional-information.php<br>savoy/woocommerce/single-product/tabs/description.php<br>savoy/woocommerce/single-product/tabs/tabs.php<br>savoy/woocommerce/single-product/title.php<br>savoy/woocommerce/single-product/up-sells.php<br>savoy/woocommerce/single-product-reviews.php<br>savoy-child/woocommerce/single-product.php<br>savoy/woocommerce/taxonomy-product-cat.php<br>savoy/woocommerce/taxonomy-product-tag.php<br>savoy/woocommerce/content-product_cat.php</p> <p>Outdated Templates: ❌</p> <pre class=”wp-block-code”><code> Apprenez comment mettre à jour | Clear system status theme info cache</code></pre> <p>Admin</p> <p>Enabled Features: activity-panels<br>analytics<br>product-block-editor<br>coupons<br>core-profiler<br>customize-store<br>customer-effort-score-tracks<br>import-products-task<br>experimental-fashion-sample-products<br>shipping-smart-defaults<br>shipping-setting-tour<br>homescreen<br>marketing<br>mobile-app-banner<br>navigation<br>onboarding<br>onboarding-tasks<br>pattern-toolkit-full-composability<br>product-custom-fields<br>remote-inbox-notifications<br>remote-free-extensions<br>payment-gateway-suggestions<br>printful<br>shipping-label-banner<br>subscriptions<br>store-alerts<br>transient-notices<br>woo-mobile-welcome<br>wc-pay-promotion<br>wc-pay-welcome-page<br>launch-your-store</p> <p>Disabled Features: experimental-blocks<br>minified-js<br>product-pre-publish-modal<br>settings<br>async-product-editor-category-field<br>product-editor-template-system<br>blueprint<br>reactify-classic-payments-settings</p> <p>Daily Cron: ✔ Next scheduled: 2024-09-05 08:34:42 +02:00<br>Options: ✔<br>Notes: 112<br>Onboarding: completed Action Scheduler</p> <p>Pending: 486<br>Oldest: 2024-09-09 13:50:57 +0000<br>Newest: 2024-10-09 14:36:38 +0000</p> <p>Canceled: 2<br>Oldest: -0001-11-30 00:00:00 +0000<br>Newest: -0001-11-30 00:00:00 +0000 Status report information</p> <p>Generated at: 2024-10-09 18:29:48 +02:00<br>`
Forum: Plugins
In reply to: [WooCommerce] Issue with WooCommerce Customer List Data@beautyofcode any update ?
- I implemented the conditional guard you recommended on