bandrajk
Forum Replies Created
-
Hi Diana, yes – I wrote a ticket do your technical team.
Thank you for your reply. The option is enabled. The additional field is integrated since 2 years with that option. It just stopped working like described before.
Additional Info: We just helped us with a workaround:
#billing_address_2_field .optional { display: none; } #billing_address_2_field label:after { content: '*'; display: inline-block; color: red; }
But still – if you make a cache reload you will see two red astersik and it would be great if we could remove the workaround.
Forum: Plugins
In reply to: [WooCommerce] WC-Admin filter by category is not showing productsHi @rainfallnixfig,
thank you for your reply and the hint with the theme. I didn′t tried this but now – and this led me to the problem.
We have a search field in a specific category. This search field should only search in it′s category so I added following code to the functions:
// shop search add_action('pre_get_posts', 'include_product_category'); function include_product_category( $query ) { if ($query->is_search() && is_shop()) { $tax_query = (array) $query->get('tax_query'); $tax_query[] = array( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => array('einzelkarten'), 'operator' => 'IN', ); $query->set('orderby', array('name' => 'ASC')); $query->set('tax_query', $tax_query); } return $query; }
I now excluded the admin:
// shop search add_action('pre_get_posts', 'include_product_category'); function include_product_category( $query ) { if (!is_admin()) { if ($query->is_search() && is_shop()) { $tax_query = (array) $query->get('tax_query'); $tax_query[] = array( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => array('einzelkarten'), 'operator' => 'IN', ); $query->set('orderby', array('name' => 'ASC')); $query->set('tax_query', $tax_query); } return $query; } }
Is there generally a better way to make sure the admin is not affected by adjustments in the functions.php?
Thanks in advance.
- This reply was modified 2 years, 8 months ago by bandrajk.
Forum: Plugins
In reply to: [WooCommerce] WC-Admin filter by category is not showing productsI regenerated the product lookup tables.
Still the same behaviour.
### WordPress Environment ### WordPress address (URL): https://bibelliga.jk-dev.org Site address (URL): https://bibelliga.jk-dev.org WC Version: 6.3.1 REST API Version: ? 6.3.1 WC Blocks Version: ? 6.9.0 Action Scheduler Version: ? 3.4.0 WC Admin Version: ? 3.2.1 Log Directory Writable: ? WP Version: 5.9.2 WP Multisite: – WP Memory Limit: 256 MB WP Debug Mode: – WP Cron: ? Language: de_DE_formal External object cache: – ### Server Environment ### Server Info: Apache PHP Version: 7.4.26 PHP Post Max Size: 64 MB PHP Time Limit: 60 PHP Max Input Vars: 1000 cURL Version: 7.64.0 OpenSSL/1.1.1d SUHOSIN Installed: – MySQL Version: 5.5.5-10.3.28-MariaDB-deb10-keen Max Upload Size: 64 MB Default Timezone is UTC: ? fsockopen/cURL: ? SoapClient: ? DOMDocument: ? GZip: ? Multibyte String: ? Remote Post: ? Remote Get: ? ### Database ### WC Database Version: 6.3.0 WC Database Prefix: wp_ Total Database Size: 187.95MB Database Data Size: 184.12MB Database Index Size: 3.83MB wp_woocommerce_sessions: Data: 0.01MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_api_keys: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_attribute_taxonomies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_downloadable_product_permissions: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_woocommerce_order_items: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_woocommerce_order_itemmeta: Data: 0.03MB + Index: 0.03MB + Engine MyISAM wp_woocommerce_tax_rates: Data: 0.01MB + Index: 0.01MB + Engine MyISAM wp_woocommerce_tax_rate_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_shipping_zones: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_shipping_zone_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_shipping_zone_methods: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_payment_tokens: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_payment_tokenmeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_actionscheduler_actions: Data: 0.50MB + Index: 0.28MB + Engine MyISAM wp_actionscheduler_claims: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_actionscheduler_groups: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_actionscheduler_logs: Data: 0.46MB + Index: 0.33MB + Engine MyISAM wp_cleverreach_wc_automation: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_cleverreach_wc_entity: Data: 81.59MB + Index: 0.00MB + Engine InnoDB wp_commentmeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_comments: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_defender_audit_log: Data: 0.02MB + Index: 0.08MB + Engine InnoDB wp_defender_email_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_defender_lockout: Data: 0.19MB + Index: 0.27MB + Engine InnoDB wp_defender_lockout_log: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_defender_scan: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_defender_scan_item: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_fbv: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_fbv_attachment_folder: Data: 0.06MB + Index: 0.00MB + Engine InnoDB wp_frmt_form_entry: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_frmt_form_entry_meta: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_frmt_form_views: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_links: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_options: Data: 1.94MB + Index: 0.11MB + Engine MyISAM wp_postmeta: Data: 9.59MB + Index: 1.04MB + Engine MyISAM wp_posts: Data: 89.01MB + Index: 0.52MB + Engine MyISAM wp_smartcrawl_redirects: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_smush_dir_images: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_storeabill_documentmeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_documents: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_storeabill_document_itemmeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_document_items: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_document_noticemeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_document_notices: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_journals: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_termmeta: Data: 0.01MB + Index: 0.02MB + Engine MyISAM wp_terms: Data: 0.01MB + Index: 0.03MB + Engine MyISAM wp_term_relationships: Data: 0.12MB + Index: 0.30MB + Engine MyISAM wp_term_taxonomy: Data: 0.01MB + Index: 0.01MB + Engine MyISAM wp_usermeta: Data: 0.10MB + Index: 0.04MB + Engine MyISAM wp_users: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_wc_admin_notes: Data: 0.03MB + Index: 0.00MB + Engine MyISAM wp_wc_admin_note_actions: Data: 0.02MB + Index: 0.01MB + Engine MyISAM wp_wc_category_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_customer_lookup: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_wc_download_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_order_coupon_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_order_product_lookup: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_wc_order_stats: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_wc_order_tax_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_product_attributes_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_product_meta_lookup: Data: 0.09MB + Index: 0.19MB + Engine MyISAM wp_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wc_reserved_stock: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_tax_rate_classes: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_wc_webhooks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_dhl_im_products: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_dhl_im_product_services: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_dhl_labelmeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_dhl_labels: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_packaging: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_packagingmeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_shipmentmeta: Data: 0.01MB + Index: 0.01MB + Engine MyISAM wp_woocommerce_gzd_shipments: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_shipment_itemmeta: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_woocommerce_gzd_shipment_items: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_woocommerce_gzd_shipment_labelmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_gzd_shipment_labels: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_gzd_shipping_provider: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_shipping_providermeta: Data: 0.01MB + Index: 0.01MB + Engine MyISAM ### Post Type Counts ### acf-field: 137 acf-field-group: 37 attachment: 1247 customize_changeset: 2 document_template: 4 filter-field: 3 filter-set: 2 forminator_forms: 3 nav_menu_item: 38 page: 100 post: 5 product: 354 revision: 5251 shop_order: 24 woobuilder_template: 3 wp_block: 41 wp_global_styles: 1 ### Security ### Secure connection (HTTPS): ? Hide errors from visitors: ? ### Active Plugins (22) ### Advanced Custom Fields PRO: by Delicious Brains – 5.12 All-in-One WP Migration: by ServMask – 7.56 Bibelliga export: by – 1.0 CleverReach? WooCommerce Integration: by CleverReach GmbH & Co. KG – 3.1.5 Yoast Duplicate Post: by Enrico Battocchi & Team Yoast – 4.4 Enable Media Replace: by ShortPixel – 3.6.3 FileBird: by Ninja Team – 4.9.9.1 Filter Everything PRO: by Andrii Stepasiuk – 1.6.0 Forminator Pro: by WPMU DEV – 1.15.12 Loco Translate: by Tim Whitlock – 2.6.1 Vendidero Helper: by Vendidero – 2.1.4 Checkout Field Editor for WooCommerce: by ThemeHigh – 1.5.3 Product Slider Block for WooCommerce: by eedee – 1.0.0 Germanized for WooCommerce Pro: by vendidero – 3.4.3 Germanized for WooCommerce: by vendidero – 3.8.4 WooCommerce: by Automattic – 6.3.1 WordPress Importer: by wordpressdotorg – 0.7 Defender Pro: by WPMU DEV – 2.8.0 Hummingbird Pro: by WPMU DEV – 3.3.2 Smush Pro: by WPMU DEV – 3.9.7 SmartCrawl Pro: by WPMU DEV – 2.19.1 WPMU DEV Dashboard: by WPMU DEV – 4.11.10 ### Inactive Plugins (0) ### ### Settings ### API Enabled: – Force SSL: – Currency: EUR (€) Currency Position: right_space Thousand Separator: . Decimal Separator: , Number of Decimals: 2 Taxonomies: Product Types: external (external) grouped (grouped) simple (simple) variable (variable) Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog) exclude-from-search (exclude-from-search) featured (featured) outofstock (outofstock) rated-1 (rated-1) rated-2 (rated-2) rated-3 (rated-3) rated-4 (rated-4) rated-5 (rated-5) Connected to WooCommerce.com: – ### WC Pages ### Shop base: #925 - /bestellen/ Cart: #9 - /warenkorb/ Checkout: #10 - /bestellen/versandinformationen/ My account: #11 - /bestellen/mein-konto/ Terms and conditions: ? Page ID is set but the page does not exist ### Theme ### Name: Bibel Liga Version: 1.0.0 Author URL: https://www.j-k.de 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: bibelliga/archive-product.php bibelliga/woocommerce/cart/cart.php bibelliga/woocommerce/checkout/review-order.php bibelliga/woocommerce/emails/email-addresses.php version 3.9.0 is out of date. The core version is 5.6.0 bibelliga/woocommerce/emails/email-order-details.php bibelliga/woocommerce/emails/email-order-items.php bibelliga/woocommerce/order/order-details-item.php bibelliga/woocommerce/single-product/meta.php bibelliga/woocommerce/single-product/up-sells.php bibelliga/single-product.php Outdated Templates: ? Learn how to update ### Action Scheduler ### Canceled: 1 Oldest: 2022-03-22 15:28:44 +0100 Newest: 2022-03-22 15:28:44 +0100 Complete: 2,178 Oldest: 2022-03-02 14:02:34 +0100 Newest: 2022-03-23 09:10:48 +0100 Pending: 3 Oldest: 2022-03-23 15:28:44 +0100 Newest: 2022-03-24 04:01:21 +0100 ### Status report information ### Generated at: 2022-03-23 09:17:56 +01:00
Forum: Plugins
In reply to: [WooCommerce] WC-Admin filter by category is not showing productsHi Maykato,
thank you for your fast reply.
I updated WC Database, WP Memory Limit and PHP Version.
Still the same behaviour as described before.
Any more suggestions?
### WordPress Environment ### WordPress address (URL): https://www.domain.com Site address (URL): https://www.domain.com WC Version: 6.3.1 REST API Version: ? 6.3.1 WC Blocks Version: ? 6.9.0 Action Scheduler Version: ? 3.4.0 WC Admin Version: ? 3.2.1 Log Directory Writable: ? WP Version: 5.9.2 WP Multisite: – WP Memory Limit: 256 MB WP Debug Mode: – WP Cron: ? Language: de_DE_formal External object cache: – ### Server Environment ### Server Info: Apache PHP Version: 7.4.26 PHP Post Max Size: 64 MB PHP Time Limit: 60 PHP Max Input Vars: 1000 cURL Version: 7.64.0 OpenSSL/1.1.1d SUHOSIN Installed: – MySQL Version: 5.5.5-10.3.28-MariaDB-deb10-keen Max Upload Size: 64 MB Default Timezone is UTC: ? fsockopen/cURL: ? SoapClient: ? DOMDocument: ? GZip: ? Multibyte String: ? Remote Post: ? Remote Get: ? ### Database ### WC Database Version: 6.3.0 WC Database Prefix: wp_ Datenbank-Gesamtgr??e: 187.94MB Datenbank-Datengr??e: 184.11MB Datenbank-Indexgr??e: 3.83MB wp_woocommerce_sessions: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_api_keys: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_attribute_taxonomies: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_downloadable_product_permissions: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_woocommerce_order_items: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_woocommerce_order_itemmeta: Daten: 0.03MB + Index: 0.03MB + Engine MyISAM wp_woocommerce_tax_rates: Daten: 0.01MB + Index: 0.01MB + Engine MyISAM wp_woocommerce_tax_rate_locations: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_shipping_zones: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_shipping_zone_locations: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_shipping_zone_methods: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_payment_tokens: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_payment_tokenmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_log: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_actionscheduler_actions: Daten: 0.50MB + Index: 0.28MB + Engine MyISAM wp_actionscheduler_claims: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_actionscheduler_groups: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_actionscheduler_logs: Daten: 0.46MB + Index: 0.33MB + Engine MyISAM wp_cleverreach_wc_automation: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB wp_cleverreach_wc_entity: Daten: 81.59MB + Index: 0.00MB + Engine InnoDB wp_commentmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_comments: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_defender_audit_log: Daten: 0.02MB + Index: 0.08MB + Engine InnoDB wp_defender_email_log: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB wp_defender_lockout: Daten: 0.19MB + Index: 0.27MB + Engine InnoDB wp_defender_lockout_log: Daten: 0.02MB + Index: 0.05MB + Engine InnoDB wp_defender_scan: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB wp_defender_scan_item: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_fbv: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB wp_fbv_attachment_folder: Daten: 0.06MB + Index: 0.00MB + Engine InnoDB wp_frmt_form_entry: Daten: 0.02MB + Index: 0.05MB + Engine InnoDB wp_frmt_form_entry_meta: Daten: 0.02MB + Index: 0.05MB + Engine InnoDB wp_frmt_form_views: Daten: 0.02MB + Index: 0.06MB + Engine InnoDB wp_links: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_options: Daten: 1.94MB + Index: 0.11MB + Engine MyISAM wp_postmeta: Daten: 9.59MB + Index: 1.04MB + Engine MyISAM wp_posts: Daten: 89.01MB + Index: 0.52MB + Engine MyISAM wp_smartcrawl_redirects: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB wp_smush_dir_images: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_storeabill_documentmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_documents: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_storeabill_document_itemmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_document_items: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_document_noticemeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_document_notices: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_journals: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_termmeta: Daten: 0.01MB + Index: 0.02MB + Engine MyISAM wp_terms: Daten: 0.01MB + Index: 0.03MB + Engine MyISAM wp_term_relationships: Daten: 0.12MB + Index: 0.30MB + Engine MyISAM wp_term_taxonomy: Daten: 0.01MB + Index: 0.01MB + Engine MyISAM wp_usermeta: Daten: 0.10MB + Index: 0.04MB + Engine MyISAM wp_users: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_wc_admin_notes: Daten: 0.03MB + Index: 0.00MB + Engine MyISAM wp_wc_admin_note_actions: Daten: 0.02MB + Index: 0.01MB + Engine MyISAM wp_wc_category_lookup: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_customer_lookup: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_wc_download_log: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_order_coupon_lookup: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_order_product_lookup: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_wc_order_stats: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_wc_order_tax_lookup: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_product_attributes_lookup: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_product_meta_lookup: Daten: 0.09MB + Index: 0.19MB + Engine MyISAM wp_wc_rate_limits: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wc_reserved_stock: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_tax_rate_classes: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_wc_webhooks: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_dhl_im_products: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_dhl_im_product_services: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_dhl_labelmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_dhl_labels: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_packaging: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_packagingmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_shipmentmeta: Daten: 0.01MB + Index: 0.01MB + Engine MyISAM wp_woocommerce_gzd_shipments: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_shipment_itemmeta: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_woocommerce_gzd_shipment_items: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_woocommerce_gzd_shipment_labelmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_gzd_shipment_labels: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_gzd_shipping_provider: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_shipping_providermeta: Daten: 0.01MB + Index: 0.01MB + Engine MyISAM ### Post Type Counts ### acf-field: 137 acf-field-group: 37 attachment: 1247 customize_changeset: 2 document_template: 4 filter-field: 3 filter-set: 2 forminator_forms: 3 nav_menu_item: 38 page: 100 post: 4 product: 354 revision: 5251 shop_order: 24 woobuilder_template: 3 wp_block: 41 wp_global_styles: 1 ### Security ### Secure connection (HTTPS): ? Hide errors from visitors: ? ### Active Plugins (22) ### Advanced Custom Fields PRO: von Delicious Brains – 5.12 All-in-One WP Migration: von ServMask – 7.56 Bibelliga export: von – 1.0 CleverReach? WooCommerce Integration: von CleverReach GmbH & Co. KG – 3.1.5 Yoast Duplicate Post: von Enrico Battocchi & Team Yoast – 4.4 Enable Media Replace: von ShortPixel – 3.6.3 FileBird: von Ninja Team – 4.9.9.1 Filter Everything PRO: von Andrii Stepasiuk – 1.6.0 Forminator Pro: von WPMU DEV – 1.15.12 Loco Translate: von Tim Whitlock – 2.6.1 Vendidero Helper: von Vendidero – 2.1.4 Checkout Field Editor for WooCommerce: von ThemeHigh – 1.5.3 Product Slider Block for WooCommerce: von eedee – 1.0.0 Germanized für WooCommerce Pro: von vendidero – 3.4.3 Germanized für WooCommerce: von vendidero – 3.8.4 WooCommerce: von Automattic – 6.3.1 WordPress Importer: von wordpressdotorg – 0.7 Defender Pro: von WPMU DEV – 2.8.0 Hummingbird Pro: von WPMU DEV – 3.3.2 Smush Pro: von WPMU DEV – 3.9.7 SmartCrawl Pro: von WPMU DEV – 2.19.1 WPMU DEV Dashboard: von WPMU DEV – 4.11.10 ### Inactive Plugins (0) ### ### Settings ### API Enabled: – Force SSL: – Currency: EUR (€) Currency Position: right_space Thousand Separator: . Decimal Separator: , Number of Decimals: 2 Taxonomies: Product Types: external (external) grouped (grouped) simple (simple) variable (variable) Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog) exclude-from-search (exclude-from-search) featured (featured) outofstock (outofstock) rated-1 (rated-1) rated-2 (rated-2) rated-3 (rated-3) rated-4 (rated-4) rated-5 (rated-5) Connected to WooCommerce.com: – ### WC Pages ### Shop-Basis: #925 - /bestellen/ Warenkorb: #9 - /warenkorb/ Kasse: #10 - /bestellen/versandinformationen/ Mein Konto: #11 - /bestellen/mein-konto/ Allgemeine Gesch?ftsbedingungen: ? Seiten-ID ist gesetzt aber die Seite existiert nicht ### Theme ### Name: Bibel Liga Version: 1.0.0 Author URL: https://www.j-k.de Child Theme: ? – Wenn Sie WooCommerce mit einem Theme das Sie nicht selbst entwickelt haben an eigene Bedürfnisse anpassen dann empfehlen wir die Verwendung eines Child-Themes. Siehe Wie Sie ein Child-Theme erstellen (engl.) WooCommerce Support: ? ### Templates ### Overrides: bibelliga/archive-product.php bibelliga/woocommerce/cart/cart.php bibelliga/woocommerce/checkout/review-order.php bibelliga/woocommerce/emails/email-addresses.php Version 3.9.0 ist veraltet. Die Hauptversion ist 5.6.0 bibelliga/woocommerce/emails/email-order-details.php bibelliga/woocommerce/emails/email-order-items.php bibelliga/woocommerce/order/order-details-item.php bibelliga/woocommerce/single-product/meta.php bibelliga/woocommerce/single-product/up-sells.php bibelliga/single-product.php Outdated Templates: ? Erfahren Sie wie Sie aktualisieren k?nnen ### Action Scheduler ### Abgebrochen: 1 Oldest: 2022-03-22 15:28:44 +0100 Newest: 2022-03-22 15:28:44 +0100 Abgeschlossen: 2.167 Oldest: 2022-03-02 14:02:34 +0100 Newest: 2022-03-22 15:31:46 +0100 Ausstehend: 3 Oldest: 2022-03-23 04:00:00 +0100 Newest: 2022-03-23 15:28:44 +0100 ### Status report information ### Generated at: 2022-03-22 15:40:00 +01:00
- This reply was modified 2 years, 8 months ago by bandrajk.