benoitfouc
Forum Replies Created
-
Could you try adding this extra code as well?
Hello again, thank you very much for responding. Unfortunately this extract don’t changes anything: : https://boutique.nature-partage.com/
The image is correctly exclude of the CDN, thank to the first snippet, but still loaded in the wrong size as long as the Jetpack CDN feature is enabled.
regards
- This reply was modified 7 months, 4 weeks ago by benoitfouc.
Bonjour Jeremy, merci pour votre retour !
Alors le premier code fonctionne, il exclut bien l’image du CDN, la faisant ainsi charger directement sur le serveur de mon site. CEPENDANT il applique quand même une réduction des dimensions de l’image, faisant charger cette image là : https://boutique.nature-partage.com/wp-content/uploads/2024/03/Banniere-principal-pour-decouvrir-nos-complements-alimentaires–1536×384.png (plus de CDN MAIS mauvaises dimensions). Donc l’image reste floue / pas nette.
Si je désactive la fonctionnalité CDN de Jetpack, alors l’image sera correctement chargée aux bonnes dimensions. Pour info, j’utilise le thème Salient.
J’en viens donc à votre second code, qui à lui seul, permet à la fois de charger l’image aux dimensions souhaitées mais aussi de continuer d’appliquer le CDN (pour des meilleures performances). Cependant, je crains que ce code ait des répercussions sur les autres images.
Est-il possible de conditionner ce code à s’exécuter que pour cette image ?
Et quel est le fonctionnement global de ce crochet ?
Bonne journéeHello there, sorry for the delay…
I apply this snipet on the functions.php file of my theme but that it’s not working :
function my_photon_exception( $val, $src, $tag ) { if ( $src == 'https://boutique.nature-partage.com/wp-content/uploads/2024/03/Banniere-principal-pour-decouvrir-nos-complements-alimentaires-.png' ) { return true; } return $val; } add_filter( 'jetpack_photon_skip_image', 'my_photon_exception', 10, 3 );
i want to exclude ONLY the first top full image of the homepage of the CDN, not all others images on the page :
This image change every months, so i put a classname = “JetpackCDNDisable” so, if a way exist to EXCLUDE from CDN images whith this classname, i’m realy interested. i try this one but it’s not working too :
function my_photon_exception( $val, $src, $tag ) { // On vérifie si le mot "Banniere" est présent dans la variable $src if ( strpos( $src, 'Banniere' ) !== false ) { return true; } return $val; } add_filter( 'jetpack_photon_skip_image', 'my_photon_exception', 10, 3 );
Please can you help me ?
regards
- This reply was modified 8 months ago by benoitfouc.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] wp_jetpack_sync_queueSame issue in my websites
regards
Forum: Plugins
In reply to: [TG Product Quantity Plus Minus Button] Plugin broken since last updateHello there, i made a fix by myself using this code on my functions.php’s theme file :
add_action( 'woocommerce_after_single_product', 'hide_qty_buttons', 30 ); function hide_qty_buttons() { global $product; // Si le produit a une seule quantité en stock ou peut être acheté un par un if ( $product->get_stock_quantity() == 1 || !$product->backorders_allowed()) { ?> <style> .tgqb-qty-updater { display: none !important; } </style> <?php } } add_action( 'woocommerce_after_cart', 'hide_qty_buttons_cart', 10 ); function hide_qty_buttons_cart() { ?> <style> .woocommerce-cart .tgqb-qty-updater { display: none !important; } </style> <?php }
regards
Forum: Plugins
In reply to: [TG Product Quantity Plus Minus Button] Plugin broken since last updateHello Asif, first thank you very much for replying.
I was able to activate again the plugin on his new location thank you.
About the main problem, is there a way to his buttons on product who have only 1 quantity stock AND for product limited to 1 per order ?Exemple of product in stock : https://dev.trot.naturepartage.com/produits-entretien-et-cirages/boite-de-cirage-noir (all is ok)
Example of product with only 1 in stock : https://dev.trot.naturepartage.com/produits-entretien-et-cirages/brillance-cuir (input quantity is hidden but not the buttons + and -)
Example of product limited to 1 per order : https://dev.trot.naturepartage.com/semelles/enfant/semelles-fraicheur-enfant-multi-tailles (input quantity is hidden but not the buttons + and -)
regards
- This reply was modified 8 months, 2 weeks ago by benoitfouc.
Hello everyone, yes the issue was that :
Explaination (french) of WPML support :
Problème :
Si vous tentez d’analyser les plugins “WooCommerce” et “Coming Soon Page” via l’outil d’analyse des modifications des traductions des plugins dans “String translation” et que vous rencontrez un problème de chargement sans fin avec un nombre de fichiers négatifs, cela peut être d? à un bug WordPress lié à la collation mixte dans la table de cha?nes WPML.
Solution :
Pour résoudre ce problème, suivez ces étapes :
1. Mettez à jour le classement (collation) de la base de données vers utf8mb4_unicode_ci, qui est le classement recommandé pour les tables.
2. Assurez-vous d’avoir un backup complet de votre base de données avant de procéder.
3. Exécutez les requêtes suivantes pour mettre à jour la collation des colonnes concernées dans la tablewp_icl_strings
:1
ALTER TABLE
wp_icl_strings
CHANGEcontext
context
VARCHAR(160) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, CHANGEname
name
VARCHAR(160) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, CHANGEdomain_name_context_md5
domain_name_context_md5
VARCHAR(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL;4. Essayez à nouveau de scanner les fichiers .mo de WooCommerce.
hello there, looking to your screenshot you are on the wrong website.
please check this link : https://dev.trot.naturepartage.com/semelles
regards
Hello, sure you can see it here : https://dev.trot.naturepartage.com/semelles
If you want we can talk about that by email, i can give you an access to the stagging website.Forum: Plugins
In reply to: [Abandoned Cart Recovery for WooCommerce] Not compatible with HPOSHello there, i update your plugin to the last version and activate HPOS thank you ??
Hello there, the image is displayed as the good size but the SRC is loaded as 1024× 250px so the quality is very bad.
Image loaded (src): https://i0.wp.com/boutique.nature-partage.com/wp-content/uploads/2023/11/Banniere-noel-1920-x-469-px-1.jpg?resize=1024%2C250&ssl=1
You can see the “RESIZE=1024px” at the end of the URL
regards
Forum: Plugins
In reply to: [More Sorting Options for WooCommerce] Not compatible with HPOSHello there, thank you very much for replying ??
If the plugin is already compatible, can you provide me the little code to put into the plugin in order to enable activation of HPOS on my website please ?
On the next update, don’t forget to update the WordPress tested version.
I confirm that the plugin still work with the last version of WordPress and WooCommerce without generate any error ??Forum: Plugins
In reply to: [WooCommerce] Single order screen option not savedAnd about the repport, he fall to 0 since the activation of HPOS
This is less important that the first issue
Forum: Plugins
In reply to: [WooCommerce] Single order screen option not savedThis is the header informations about the 403 error when we use HPOS and try to move items on the order edit page.
regards
Forum: Plugins
In reply to: [WooCommerce] Single order screen option not savedhi Roxy
It looks like enabling
HPOS
has caused some functionality to stop working as expected on your site, correct?Yes it’s correct
Are you using any plugins that add/change functionality to the Order edit page?
Yes, many Yith plugins and others
BUT i make some tests on my stagging website today and i found something very interresting !
First i disable all plugins, still activated : WooCommerce and Query Monitor.By activating HPOS the orders sorter and hide/display not working BUT if i disable HPOS that will work !!!
Look at this video : https://youtu.be/1C-pbWcTjEI
As you can see, there is some error on the console when i try to move items ore hide/display then. i think this is the problem.
And this error apear to all my woocommerce website who used HPOS when i try to move or hidde/display an item !
(and sometime this error : Failed to load resource: the server responded with a status of 403 () /wp-admin/admin-ajax.php:1 )
System status (stagging website) :
` ### WordPress Environment ### WordPress address (URL): https://developpement.natureetpartage.fr Site address (URL): https://developpement.natureetpartage.fr WC Version: 8.3.0 REST API Version: ? 8.3.0 WC Blocks Version: ? 11.4.8 Action Scheduler Version: ? 3.6.4 Log Directory Writable: ? WP Version: 6.4.1 WP Multisite: – WP Memory Limit: 512 MB WP Debug Mode: ? WP Cron: ? Language: fr_FR External object cache: – ### Server Environment ### Server Info: Apache PHP Version: 8.2.10 PHP Post Max Size: 130 MB PHP Time Limit: 165 PHP Max Input Vars: 16000 cURL Version: 7.64.0 OpenSSL/1.1.1n SUHOSIN Installed: – MySQL Version: 8.0.34 Max Upload Size: 128 MB Default Timezone is UTC: ? fsockopen/cURL: ? SoapClient: ? DOMDocument: ? GZip: ? Multibyte String: ? Remote Post: ? Remote Get: ? ### Database ### WC Database Version: 8.3.0 WC Database Prefix: wp_ Total Database Size: 603.80MB Database Data Size: 426.25MB Database Index Size: 177.55MB wp_woocommerce_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_woocommerce_order_items: Data: 5.08MB + Index: 2.38MB + Engine InnoDB wp_woocommerce_order_itemmeta: Data: 49.16MB + Index: 44.25MB + Engine InnoDB wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 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.30MB + Index: 0.27MB + Engine InnoDB cerber_qmem: Data: 0.02MB + Index: 0.02MB + Engine InnoDB cerber_traffic: Data: 1.44MB + Index: 0.06MB + Engine InnoDB fakenames: Data: 2.52MB + Index: 0.00MB + Engine InnoDB wp_actionscheduler_actions: Data: 0.08MB + Index: 0.13MB + 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: 0.06MB + Index: 0.03MB + Engine InnoDB wp_cdi: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_cerber_files: Data: 24.59MB + Index: 0.00MB + Engine InnoDB wp_cerber_sets: Data: 11.52MB + Index: 0.00MB + Engine InnoDB wp_cerber_uss: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_check_email_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_cli_cookie_scan: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_cli_cookie_scan_categories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_cli_cookie_scan_cookies: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_cli_cookie_scan_url: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_cli_scripts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_commentmeta: Data: 0.06MB + Index: 0.03MB + Engine InnoDB wp_comments: Data: 7.58MB + Index: 3.16MB + Engine MyISAM wp_css_js_manager: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_duplicator_pro_entities: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_duplicator_pro_packages: Data: 1.02MB + Index: 0.02MB + Engine InnoDB wp_failed_jobs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_gift_by_order: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_gift_products: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_icl_background_task: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_icl_content_status: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_icl_core_status: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_icl_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_icl_languages: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_icl_languages_translations: Data: 0.20MB + Index: 0.17MB + Engine InnoDB wp_icl_locale_map: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_icl_message_status: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_icl_mo_files_domains: Data: 0.08MB + Index: 0.02MB + Engine InnoDB wp_icl_node: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_icl_reminders: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_icl_string_batches: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_icl_string_packages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_icl_string_positions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_icl_string_status: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_icl_string_translations: Data: 8.52MB + Index: 6.03MB + Engine InnoDB wp_icl_strings: Data: 7.52MB + Index: 15.09MB + Engine InnoDB wp_icl_translate: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_icl_translate_job: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_icl_translation_batches: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_icl_translation_downloads: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_icl_translation_status: Data: 0.31MB + Index: 0.11MB + Engine InnoDB wp_icl_translations: Data: 2.52MB + Index: 7.05MB + Engine InnoDB wp_links: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_lpc_bordereau: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_lpc_inward_label: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_lpc_label: Data: 0.14MB + Index: 0.00MB + Engine InnoDB wp_lpc_outward_label: Data: 2.52MB + Index: 0.03MB + Engine InnoDB wp_odb_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_options: Data: 6.39MB + Index: 1.33MB + Engine MyISAM wp_pmxe_exports: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_pmxe_google_cats: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_pmxe_posts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_pmxe_templates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_postmeta: Data: 233.86MB + Index: 63.06MB + Engine MyISAM wp_posts: Data: 5.97MB + Index: 1.86MB + Engine MyISAM wp_queue: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_sib_model_contact: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_term_relationships: Data: 0.07MB + Index: 0.14MB + Engine MyISAM wp_term_taxonomy: Data: 0.02MB + Index: 0.01MB + Engine MyISAM wp_termmeta: Data: 0.03MB + Index: 0.03MB + Engine MyISAM wp_terms: Data: 0.01MB + Index: 0.02MB + Engine MyISAM wp_tm_taskmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_tm_tasks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_tutor_earnings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_tutor_quiz_attempt_answers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_tutor_quiz_attempts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_tutor_quiz_question_answers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_tutor_quiz_questions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_tutor_withdraws: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_usermeta: Data: 12.16MB + Index: 7.65MB + Engine MyISAM wp_users: Data: 0.70MB + Index: 0.63MB + Engine MyISAM wp_vtprd_purchase_log_product: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_vtprd_purchase_log_product_rule: Data: 0.02MB + Index: 0.02MB + 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: 1.38MB + Index: 0.41MB + Engine InnoDB wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_etransactions_cards: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wc_etransactions_payment: Data: 3.28MB + Index: 0.12MB + Engine MyISAM wp_wc_order_addresses: Data: 0.17MB + Index: 0.23MB + Engine InnoDB wp_wc_order_coupon_lookup: Data: 0.06MB + Index: 0.06MB + Engine InnoDB wp_wc_order_operational_data: Data: 0.13MB + Index: 0.06MB + Engine InnoDB wp_wc_order_product_lookup: Data: 5.25MB + Index: 6.78MB + Engine InnoDB wp_wc_order_stats: Data: 3.39MB + Index: 3.08MB + Engine InnoDB wp_wc_order_tax_lookup: Data: 2.28MB + Index: 2.80MB + Engine InnoDB wp_wc_orders: Data: 0.22MB + Index: 0.30MB + Engine InnoDB wp_wc_orders_meta: Data: 2.52MB + Index: 7.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.08MB + Index: 0.13MB + 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.02MB + Index: 0.02MB + Engine InnoDB wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wfblockediplog: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wfblocks7: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_wfconfig: Data: 1.52MB + Index: 0.00MB + Engine InnoDB wp_wfcrawlers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wffilechanges: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wffilemods: Data: 9.52MB + Index: 0.00MB + Engine InnoDB wp_wfhits: Data: 0.03MB + Index: 0.05MB + Engine InnoDB wp_wfhoover: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wfissues: Data: 1.52MB + Index: 0.25MB + Engine InnoDB wp_wfknownfilelist: Data: 3.52MB + Index: 0.00MB + Engine InnoDB wp_wflivetraffichuman: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wflocs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wflogins: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 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 InnoDB wp_wfpendingissues: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_wfreversecache: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wfsnipcache: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_wfstatus: Data: 0.11MB + Index: 0.06MB + Engine InnoDB wp_wftrafficrates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wp_phpmyadmin_extension__errors_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wpfm_backup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wpml_mails: Data: 0.45MB + Index: 0.00MB + Engine InnoDB wp_wusers_inputs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wzen_time_table: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_yith_wcaf_affiliates: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_yith_wcaf_clicks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_yith_wcaf_commission_notes: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_yith_wcaf_commissions: Data: 0.49MB + Index: 0.51MB + Engine MyISAM wp_yith_wcaf_payment_commission: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_yith_wcaf_payment_notes: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_yith_wcaf_payments: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_yith_wcaf_rate_rulemeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_yith_wcaf_rate_rules: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_yith_wcbk_booking_notes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_wcbk_external_bookings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_wcbk_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_wcbm_badge_rules_associations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_wcch_emails: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_wcdn_desktop_notification: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_wcmbs_downloads_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_wcps_shippings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_wcwtl_emails: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_wcwtl_users: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_wcwtl_waitlists: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_ywpar_points_log: Data: 0.98MB + Index: 0.24MB + Engine MyISAM wp_yith_ywrac_email_log: Data: 0.18MB + Index: 0.04MB + Engine MyISAM wp_yith_ywsbs_activities_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_ywsbs_delivery_schedules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_ywsbs_order_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_ywsbs_revenue_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_ywsbs_stats: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_ylc_chat_rows: Data: 0.18MB + Index: 0.05MB + Engine MyISAM wp_ylc_chat_sessions: Data: 0.01MB + Index: 0.01MB + Engine MyISAM wp_ylc_chat_visitors: Data: 0.01MB + Index: 0.01MB + Engine MyISAM wp_ylc_offline_messages: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_yoast_indexable: Data: 0.45MB + Index: 0.16MB + Engine InnoDB wp_yoast_indexable_hierarchy: Data: 0.05MB + Index: 0.05MB + 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.14MB + Index: 0.09MB + Engine InnoDB wp_yoast_seo_meta: Data: 1.52MB + Index: 0.00MB + Engine InnoDB wp_ywrr_email_blocklist: Data: 0.01MB + Index: 0.00MB + Engine MyISAM wp_ywrr_email_schedule: Data: 0.05MB + Index: 0.02MB + Engine MyISAM ### Post Type Counts ### attachment: 6099 cookielawinfo: 12 courses: 1 custom_css: 1 gift_card: 2 jp_img_sitemap: 1 jp_sitemap: 1 jp_sitemap_master: 1 mail-debug: 55 mc4wp-form: 2 nav_menu_item: 585 oembed_cache: 2 page: 84 post: 2 product: 323 product_variation: 12 question_answer: 1 revision: 45 salient_g_sections: 1 seedprod: 1 shop_coupon: 10 shop_order: 562 shop_order_placehold: 1 user_request: 3 vtprd-rule: 1 wp_global_styles: 1 wp_navigation: 1 wp_template: 2 wpcf7_contact_form: 6 yith_booking: 2 yith_popup: 1 yith_price_rule: 1 yith_wcdls_offer: 9 yith-wcbm-badge: 19 yith-wccos-ostatus: 2 ylc-macro: 8 ywar_reviews: 84 ywcbk-search-form: 1 ywcbm-badge-rule: 3 ywcm_message: 6 ywcpos_survey_email: 3 ywdpd_discount: 3 ywpar-banner: 4 ywpar-level-badge: 4 ywpi-pdf-template: 8 ywrac_cart: 1 ywrac_email: 6 ywtm_tab: 1 ### Security ### Secure connection (HTTPS): ? Hide errors from visitors: ? ### Active Plugins (2) ### Query Monitor: by John Blackbourn – 3.15.0 WooCommerce: by Automattic – 8.3.0 ### Inactive Plugins (53) ### Admin Menu Editor: by Janis Elsts – 1.12 Advanced Cron Manager: by BracketSpace – 2.5.2 Akismet Anti-spam: Spam Protection: by Automattic - Anti-spam Team – 5.3 BackWPup: by WP MEDIA SAS – 4.0.1 Boutique Nature et Partage: by Benfou – 2.09 Brevo - WooCommerce Email Marketing: by Brevo – 4.0.5 Chronopost: by Adexos – 1.2.7 Colissimo shipping methods for WooCommerce: by Colissimo – 1.9.1 Coming Soon Page, Maintenance Mode, Landing Pages & WordPress Website Builder by SeedProd: by SeedProd – 6.15.15.3 Contact Form 7: by Takayuki Miyoshi – 5.8.3 CookieYes | GDPR Cookie Consent: by CookieYes – 3.1.7 Force Authentification Before Checkout for WooCommerce: by Luiz Bills – 1.4.4 GTranslate: by Translate AI Multilingual Solutions – 3.0.4 Jetpack: by Automattic – 12.8.1 Mail Debug for WooCommerce: by Leanza Francesco – 1.3.0 Salient Core: by ThemeNectar – 2.0.5 Salient Social: by ThemeNectar – 1.2.4 Salient WPBakery Page Builder: by Michael M - WPBakery.com | Modified by ThemeNectar – 7.1 Trustpilot-reviews: by Trustpilot – 2.5.925 Up2pay e-Transactions: by Up2pay e-Transactions – 1.0.9 User Role Editor: by Vladimir Garagulya – 4.64.1 User Switching: by John Blackbourn & contributors – 1.7.2 WooCommerce Cheapest & Most Expensive Product Promotions!: by Lagudi Domenico – 3.7 WooCommerce Google Analytics Pro: by SkyVerge – 2.0.13 WooCommerce Monetico Gateway: by Nicolas Maillard – 2.4.7 WooCommerce Order Navigation: by woosmartcod.com – 1.1 WooCommerce Stripe Gateway: by WooCommerce – 7.7.0 WP Cerber Security, Anti-spam & Malware Scan: by Cerber Tech Inc. – 9.5.8 WP Fastest Cache: by Emre Vona – 1.2.2 WP Fastest Cache Premium: by Emre Vona – 1.7.0 WPML Multilingual CMS: by OnTheGoSystems – 4.6.7 WPML SEO: by OnTheGoSystems – 2.1.0 WPML String Translation: by OnTheGoSystems – 3.2.8 YITH Deals for WooCommerce Premium: by YITH – 1.26.0 YITH Desktop Notifications for WooCommerce Premium: by YITH – 1.29.0 YITH Google Product Feed for WooCommerce Premium: by YITH – 1.28.0 YITH WooCommerce Added to Cart Popup Premium: by YITH – 2.13.0 YITH WooCommerce Affiliates Premium: by YITH – 3.0.0 YITH WooCommerce Ajax Search Premium: by YITH – 1.37.0 YITH WooCommerce Badge Management Premium: by YITH – 3.0.0 YITH WooCommerce Cart Messages Premium: by YITH – 1.36.0 YITH WooCommerce Coupon Email System Premium: by YITH – 1.33.0 YITH WooCommerce Frequently Bought Together Premium: by YITH – 1.34.0 YITH WooCommerce Gift Cards Premium: by YITH – 4.4.0 YITH WooCommerce PDF Invoices & Packing Slips Premium: by YITH – 4.13.0 YITH WooCommerce Pending Order Survey Premium: by YITH – 1.27.0 YITH WooCommerce Points and Rewards Premium: by YITH – 4.0.0 YITH WooCommerce Review Reminder Premium: by YITH – 1.36.0 YITH WooCommerce Social Login Premium: by YITH – 1.34.0 YITH WooCommerce Subscription Premium: by YITH – 2.31.1 YITH WooCommerce Waitlist Premium: by YITH – 3.6.0 Yoast SEO: by Team Yoast – 21.5 Yoast SEO: WooCommerce: by Team Yoast – 15.8 ### Dropin Plugins (1) ### db.php: Query Monitor Database Class (Drop-in) ### Settings ### API Enabled: – Force SSL: ? Currency: EUR (€) Currency Position: right Thousand Separator: Decimal Separator: , Number of Decimals: 2 Taxonomies: Product Types: booking (booking) external (external) gift-card (gift-card) 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: Automattic\WooCommerce\Internal\DataStores\Orders\OrdersTableDataStore HPOS data sync enabled: ? ### WC Pages ### Shop base: #11 - /tous-nos-produits/ Cart: #12 - /panier/ Checkout: #13 - /confirmer/ My account: #14 - /mon-compte/ Terms and conditions: #3679 - /conditions-generales-de-vente/ ### Theme ### Name: Storefront Version: 4.5.3 Author URL: https://woocommerce.com/ Child Theme: ? – If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme WooCommerce Support: ? ### Templates ### Overrides: – ### Admin ### Enabled Features: activity-panels analytics product-block-editor coupons core-profiler 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 product-variation-management 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: customize-store minified-js new-product-management-experience product-virtual-downloadable product-external-affiliate settings async-product-editor-category-field Daily Cron: ? Next scheduled: 2023-11-21 10:06:50 +01:00 Options: ? Notes: 18 Onboarding: completed ### Action Scheduler ### Complete: 70 Oldest: 2023-10-20 22:40:19 +0200 Newest: 2023-11-20 11:51:53 +0100 Failed: 51 Oldest: 2021-11-25 13:57:18 +0100 Newest: 2023-11-20 11:43:23 +0100 Pending: 2 Oldest: 2023-11-20 12:41:45 +0100 Newest: 2023-11-20 19:09:01 +0100 ### Status report information ### Generated at: 2023-11-20 11:54:55 +01:00 `
- This reply was modified 1 year ago by benoitfouc.