- TutorialsSystem status parameters guide
- NewsmagRequirements for Newsmag
- NewspaperRequirements for Newspaper
Hello @Calin
I am writing to you after a deep technical audit that lasted two days, conducted by a Senior Infrastructure Engineer and Web Performance Specialist. We had to take this measure because our PageSpeed scores are stuck between 31% and 41% on mobile, despite running on a high-end VPS with persistent cache (Redis/Object Cache) and every possible server-side optimization.
Google has officially notified us regarding this poor performance, stating that our site is no longer a priority in search rankings due to failing Core Web Vitals. After a thorough investigation of the source code and database, we have pinpointed the root cause: The Newspaper theme is loading both Desktop and Mobile assets simultaneously on mobile devices.
Even with dedicated mobile pages (separate IDs), the theme “stacks” the entire desktop framework on top of the mobile one. This redundancy is killing our performance.
I need you to take this diagnostic to the tagDiv development team immediately. We need to know if and when a fix will be released. If this architectural flaw is not resolved, I will be forced to migrate to another theme or develop a custom one, as I cannot afford to lose my SEO ranking due to theme bloat.
Technical Diagnostic:
Problem: Mobile pages heavier than desktop pages
Date: 03/05/2026
Theme: Newspaper 12.7.5
Plugin: td-composer
Server: VPS Ubuntu — CyberPanel — LiteSpeed
CONTEXT
The site glostv.com uses the Newspaper 12.7.5 theme with the td-composer plugin and has a system of separate pages for mobile and desktop, where each version was built individually in the Newspaper visual editor (tagDiv Composer). The site owner reported that pages on mobile are significantly heavier than on desktop, even though there are separate and optimized mobile pages already built.
MOBILE SYSTEM ARCHITECTURE
The following pages were created as mobile templates inside the tagDiv Composer itself and are marked in the database with the flag tdc_is_mobile_template = 1:
ID 7584 — tv ao vivo Brasil (mobile version)
ID 7617 — POPULARES TOP (mobile version)
ID 8700 — Estados (mobile version)
ID 8872 — Homepage (mobile version)
ID 9944 — Política de Privacidade (mobile version)
ID 9948 — Termos de Uso (mobile version)
ID 10581 — Sobre Nós (mobile version)
ID 10597 — Política de Cookies (mobile version)
TECHNICAL PROBLEM IDENTIFIED
Problem 1 — td-composer loads assets WITHOUT any device distinction
Confirmed directly in the file:
wp-content/plugins/td-composer/legacy/common/wp_booster/td_wp_booster_functions.php
Line 362 — Composer JS loads for ALL devices:
add_action(‘wp_enqueue_scripts’, ‘load_js_composer_front’, 1000);
Line 430 — Full Newspaper CSS loads for ALL devices:
add_action(‘wp_enqueue_scripts’, ‘load_front_css’, 1001);
Line 744 — Full theme JS loads for ALL devices:
add_action(‘wp_enqueue_scripts’, ‘load_front_js’);
None of these functions have any device check. They load for both desktop and mobile equally, without any condition whatsoever.
Problem 2 — The mobile engine loads ON TOP of the desktop engine
Confirmed in the file:
wp-content/plugins/td-composer/mobile/functions.php
Line 149 — Mobile CSS loads ON TOP of the desktop CSS already loaded:
add_action(‘wp_enqueue_scripts’, ‘tdm_load_front_css’);
Line 173 — Mobile JS loads ON TOP of the desktop JS already loaded:
add_action(‘wp_enqueue_scripts’, ‘load_front_js’);
Line 184 — Mobile specific script loads ON TOP of all previous ones:
wp_enqueue_script(‘td-site’, TDC_URL.’/mobile/js/tagdiv_theme.min.js’);
Problem 3 — The flag tdc_is_mobile_template does NOT remove desktop assets
Confirmed in the file:
wp-content/plugins/td-composer/includes/tdc_state.php
Line 42:
private static $is_mobile_template = false;
Line 202:
public static function set_is_mobile_template($is_mobile_template) {
self::$is_mobile_template = $is_mobile_template;
}
This flag only serves to let the visual editor know it is on a mobile page. It does not execute any removal of desktop CSS or JS. It is purely an internal state variable with no effect on asset loading.
Problem 4 — Proof: Zero wp_dequeue for mobile anywhere in td-composer
I ran the following command directly on the server via terminal:
grep -r “wp_dequeue|deregister” wp-content/plugins/td-composer/ -n | grep -i “mobile|desktop|css|js”
The only result found was the removal of Visual Composer scripts in the backend administrative editor, not in the frontend. Throughout the entire td-composer codebase, there is not a single wp_dequeue_style() or wp_dequeue_script() instruction conditioned on mobile device detection in the frontend.
WHAT THE MOBILE BROWSER IS ACTUALLY DOWNLOADING
When a user accesses the site from a mobile device, the browser downloads all of this before rendering the mobile page:
From the desktop engine (which should NOT load on mobile):
Full legacy CSS of Newspaper
td-composer frontend JS (desktop visual engine)
tagdiv_theme.min.js desktop version
td-cloud-library CSS
td-standard-pack CSS
td-multi-purpose/style.css
Desktop version fonts
From the mobile engine (which loads ON TOP of the desktop):
Newspaper mobile CSS
tagdiv_theme.min.js mobile version
Mobile specific scripts
Fonts loaded again
The mobile browser is downloading the complete Newspaper framework twice. Once for the desktop layout that is discarded and once for the mobile layout that is actually used. This directly explains why mobile pages feel heavier and slower than desktop pages. DIRECT QUESTION TO SUPPORT
Does td-composer 12.7.5 have any native mechanism to remove desktop engine assets—specifically the functions load_front_css, load_js_composer_front, and load_front_js located in td_wp_booster_functions.php—when the page being served is already marked with tdc_is_mobile_template = 1 in the database?
If yes, in which file and on which line does this asset cleanup occur?
If no, when is the development team going to release an update to fix this? It is unacceptable that a high-end theme like Newspaper forces a mobile device to download the entire desktop framework AND the mobile framework simultaneously. My server-side analysis confirms that even when using dedicated mobile pages, the theme simply “stacks” assets instead of “swapping” them.
This redundancy is causing a massive performance overhead and killing our Core Web Vitals. We have separate pages for a reason, and the theme should NOT be loading desktop junk on a mobile-dedicated template. We need a clear position on when this will be resolved so that tdc_is_mobile_template = 1 actually triggers a wp_dequeue of unnecessary desktop resources.
Problem solved. It was the Cookiebot plugin. I finally installed “Matomo” to track visits and so I no longer use cookies and am okay with the gdpr law. Adsense has a separate cookie.
I would say perfect like this, and in addition I have many more accessible statistics.
I am getting an error message from WooCommerce about the theme. Can you help me wit that?:
Your theme (Newspaper) contains outdated copies of some WooCommerce template files. These files may need updating to ensure they are compatible with the current version of WooCommerce. Suggestions to fix this:
Update your theme to the latest version. If no update is available contact your theme author asking about compatibility with the current WooCommerce version.
If you copied over a template file to change something, then you will need to copy the new version of the template and apply your changes again.
Status Report:
### WordPress Environment ###
WordPress address (URL): https://craycle.com
Site address (URL): https://craycle.com
WC Version: 8.8.3
REST API Version: ✔ 8.8.3
Action Scheduler Version: ✔ 3.7.4
Log Directory Writable: ✔
WP Version: 6.5.2
WP Multisite: –
WP Memory Limit: 1 GB
WP Debug Mode: –
WP Cron: ✔
Language: en_US
External object cache: –
### Server Environment ###
Server Info: Apache
PHP Version: 8.1.28
PHP Post Max Size: 300 MB
PHP Time Limit: 30
PHP Max Input Vars: 100000
cURL Version: 7.87.0
OpenSSL/1.1.1w
SUHOSIN Installed: –
MySQL Version: 8.0.35
Max Upload Size: 300 MB
Default Timezone is UTC: ✔
fsockopen/cURL: ✔
SoapClient: ✔
DOMDocument: ✔
GZip: ✔
Multibyte String: ✔
Remote Post: ✔
Remote Get: ✔
### Database ###
WC Database Version: 8.8.3
WC Database Prefix: wp_
Total Database Size: 314.92MB
Database Data Size: 233.70MB
Database Index Size: 81.22MB
wp_woocommerce_sessions: Data: 2.02MB + Index: 0.05MB + 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: 1.05MB + Index: 2.25MB + Engine InnoDB
wp_woocommerce_order_items: Data: 1.52MB + Index: 0.25MB + Engine InnoDB
wp_woocommerce_order_itemmeta: Data: 6.52MB + Index: 6.03MB + Engine InnoDB
wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + 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
wp_actionscheduler_actions: Data: 3.02MB + Index: 1.41MB + 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: 2.02MB + Index: 1.34MB + Engine InnoDB
wp_ce4wp_contacts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_chaty_contact_form_leads: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_cleantalk_ac_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_cleantalk_connection_reports: Data: 9.52MB + Index: 0.00MB + Engine InnoDB
wp_cleantalk_no_cookie_data: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_cleantalk_sessions: Data: 3.02MB + Index: 0.00MB + Engine InnoDB
wp_cleantalk_sfw: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_cleantalk_sfw_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_cleantalk_sfw_personal: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_cleantalk_spamscan_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_cleantalk_ua_bl: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_cleantalk_wc_spam_orders: 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.08MB + Index: 0.03MB + Engine InnoDB
wp_comments: Data: 2.52MB + Index: 1.36MB + Engine InnoDB
wp_cr_reminders_log: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_e_events: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_gla_attribute_mapping_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_gla_budget_recommendations: Data: 0.19MB + Index: 0.14MB + Engine InnoDB
wp_gla_merchant_issues: Data: 1.02MB + Index: 0.00MB + Engine InnoDB
wp_gla_shipping_rates: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_gla_shipping_times: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_iyzico_card: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_iyzico_order: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailchimp_carts: Data: 0.30MB + Index: 0.00MB + Engine InnoDB
wp_mailchimp_jobs: Data: 0.16MB + Index: 0.00MB + Engine InnoDB
wp_nx_entries: Data: 0.09MB + Index: 0.03MB + Engine InnoDB
wp_nx_posts: Data: 0.05MB + Index: 0.05MB + Engine InnoDB
wp_nx_stats: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_options: Data: 23.20MB + Index: 0.22MB + Engine InnoDB
wp_postmeta: Data: 34.39MB + Index: 25.03MB + Engine InnoDB
wp_posts: Data: 45.47MB + Index: 2.44MB + Engine InnoDB
wp_rank_math_internal_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_rank_math_internal_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_term_relationships: Data: 0.09MB + Index: 0.08MB + Engine InnoDB
wp_term_taxonomy: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
wp_termmeta: Data: 0.13MB + Index: 0.16MB + Engine InnoDB
wp_terms: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
wp_trackship_shipment: Data: 0.02MB + Index: 0.14MB + Engine InnoDB
wp_trackship_shipment_meta: Data: 0.13MB + Index: 0.02MB + Engine InnoDB
wp_trackship_shipping_provider: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
wp_trp_dictionary_en_us_tr_tr: Data: 1.52MB + Index: 0.64MB + Engine InnoDB
wp_trp_gettext_en_us: Data: 1.52MB + Index: 1.98MB + Engine InnoDB
wp_trp_gettext_original_meta: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_trp_gettext_original_strings: Data: 1.52MB + Index: 1.52MB + Engine InnoDB
wp_trp_gettext_tr_tr: Data: 1.52MB + Index: 0.61MB + Engine InnoDB
wp_trp_original_meta: Data: 0.16MB + Index: 0.27MB + Engine InnoDB
wp_trp_original_strings: Data: 0.47MB + Index: 0.42MB + Engine InnoDB
wp_um_metadata: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_usermeta: Data: 30.48MB + Index: 28.95MB + Engine InnoDB
wp_users: Data: 1.50MB + Index: 0.48MB + Engine InnoDB
wp_wc_admin_note_actions: Data: 0.08MB + Index: 0.02MB + Engine InnoDB
wp_wc_admin_notes: Data: 0.14MB + Index: 0.00MB + Engine InnoDB
wp_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wc_customer_lookup: Data: 1.50MB + Index: 0.31MB + Engine InnoDB
wp_wc_download_log: Data: 0.48MB + Index: 0.47MB + Engine InnoDB
wp_wc_order_addresses: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_order_operational_data: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_order_product_lookup: Data: 1.52MB + Index: 1.02MB + Engine InnoDB
wp_wc_order_stats: Data: 1.52MB + Index: 0.44MB + Engine InnoDB
wp_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_orders: Data: 0.02MB + Index: 0.11MB + Engine InnoDB
wp_wc_orders_meta: Data: 0.17MB + Index: 0.36MB + 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.05MB + Index: 0.09MB + 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_wcpdf_invoice_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wcpdf_packing_slip_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wdr_order_discounts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wdr_order_item_discounts: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_wdr_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wfblockediplog: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wfblocks7: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_wfconfig: Data: 2.28MB + 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: 30.58MB + Index: 0.00MB + Engine InnoDB
wp_wfhits: Data: 2.02MB + Index: 0.19MB + Engine InnoDB
wp_wfhoover: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wfissues: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_wfknownfilelist: Data: 13.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.45MB + Index: 0.16MB + Engine InnoDB
wp_wfls_2fa_secrets: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wfls_role_counts: Data: 0.00MB + Index: 0.00MB + Engine MEMORY
wp_wfls_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wfnotifications: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
wp_wfpendingissues: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_wfpklist_template_data: Data: 0.11MB + Index: 0.00MB + Engine InnoDB
wp_wfreversecache: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wfsecurityevents: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wfsnipcache: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_wfstatus: Data: 1.02MB + Index: 0.11MB + Engine InnoDB
wp_wftrafficrates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wfwaffailures: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_woo_shippment_provider: Data: 0.13MB + Index: 0.00MB + Engine InnoDB
wp_wpcb_folders: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wpcb_snippets: Data: 0.09MB + Index: 0.00MB + Engine InnoDB
wp_wpfm_backup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wpforms_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wpmailsmtp_debug_events: Data: 0.14MB + Index: 0.00MB + Engine InnoDB
wp_wpmailsmtp_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wpr_rocket_cache: Data: 0.08MB + Index: 0.09MB + Engine InnoDB
wp_wpr_rucss_used_css: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
wp_yoast_indexable: Data: 0.27MB + Index: 0.13MB + 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.34MB + Index: 0.17MB + Engine InnoDB
wp_zerobounce_credit_usage_logs: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_zerobounce_validation_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_zorem_email_sms_log: Data: 0.02MB + Index: 0.11MB + Engine InnoDB
### Post Type Counts ###
attachment: 1229
bp3d-model-viewer: 1
cookielawinfo: 22
custom_css: 1
elementor_library: 1
language_switcher: 4
mycred_rank: 1
nav_menu_item: 46
oembed_cache: 2
page: 23
post: 32
product: 114
product_variation: 82
revision: 1302
seedprod: 1
shop_coupon: 41
shop_order: 5685
shop_order_refund: 3
tdb_templates: 16
um_directory: 1
um_form: 3
wp_global_styles: 1
wp_navigation: 1
wpcf7_contact_form: 5
wpforms: 1
yay-currency-manage: 8
yaymail_template: 12
### Security ###
Secure connection (HTTPS): ✔
Hide errors from visitors: ✔
### Active Plugins (42) ###
WPCodeBox 2: by WPCodeBox – 1.1.0
3D Viewer: by bPlugins LLC – 1.3.28
Bulk Regenerate Download Permissions for WooCommerce Orders Pro: by WP Wham – 1.4.4
Anti-Spam by CleanTalk: by СleanTalk - Anti-Spam Protection – 6.31
Contact Form 7: by Takayuki Miyoshi – 5.9.3
CookieYes | GDPR Cookie Consent: by CookieYes – 3.2.2
Customer Reviews for WooCommerce: by CusRev – 5.48.1
Easy Auto SKU Generator for WooCommerce: by Dan Zakirov – 1.2.0
Email Verification for WooCommerce: by WPFactory – 2.7.7
Facebook for WooCommerce: by Facebook – 3.2.0
iyzico WooCommerce: by iyzico – 3.4.0
JivoChat: by JivoChat – 1.3.6.1
Mailchimp for WooCommerce: by Mailchimp – 4.0.1
NotificationX: by WPDeveloper – 2.8.6
Perfmatters: by forgemedia – 2.2.7
WooCommerce PDF Invoices, Packing Slips, Delivery Notes and Shipping Labels: by WebToffee – 4.5.0
Printful Integration for WooCommerce: by Printful – 2.2.7
Really Simple SSL: by Really Simple Plugins – 8.1.0
tagDiv Cloud Library: by tagDiv – 3.4 | built on 11.03.2024 11:04
tagDiv Composer: by tagDiv – 4.8 | built on 11.03.2024 11:04
tagDiv Social Counter: by tagDiv – 5.5 | built on 11.03.2024 11:04
tagDiv Standard Pack: by tagDiv – 2.5 | built on 11.03.2024 11:04
tagDiv Shop: by tagDiv – 2.2| built on 11.03.2024 11:04
TrackShip for WooCommerce: by TrackShip – 1.7.6
UpdraftPlus - Backup/Restore: by UpdraftPlus.Com
DavidAnderson – 1.24.3
CTX Feed: by WebAppick – 6.4.26
WebP Express: by Bjørn Rosell – 0.25.9
WooCommerce Weight Based Shipping: by weightbasedshipping.com – 5.9.0
Advanced Shipment Tracking for WooCommerce: by zorem – 3.6.6
Cart Weight: by Octolize – 1.8.8
DHL Express Commerce: by DHL Express – 3.0.0
WooCommerce Legacy REST API: by WooCommerce – 1.0.1
WooCommerce Shipping & Tax: by WooCommerce – 2.5.5
WooCommerce: by Automattic – 8.8.3
Wordfence Security: by Wordfence – 7.11.5
Yoast SEO: by Team Yoast – 22.6
WP File Manager: by mndpsingh287 – 7.2.6
WP Mail SMTP: by WP Mail SMTP – 4.0.1
WP Rocket: by WP Media – 3.15.10
YayCurrency Pro: by YayCommerce – 2.4.6
YayMail - WooCommerce Email Customizer: by YayCommerce – 3.5.0
YayPricing Pro - WooCommerce Dynamic Pricing And Discounts: by YayCommerce – 2.5.4
### Inactive Plugins (0) ###
### Dropin Plugins () ###
advanced-cache.php: advanced-cache.php
db.php: Query Monitor Database Class (Drop-in)
### Must Use Plugins (2) ###
Activity Log Plugin: by – 1.0.0
CDN Cache Plugin: by – 1.1.3
### Settings ###
API Enabled: ✔
Force SSL: –
Currency: EUR (€)
Currency Position: left_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: ✔
Enforce Approved Product Download Directories: –
HPOS feature screen enabled: –
HPOS feature enabled: –
Order datastore: WC_Order_Data_Store_CPT
HPOS data sync enabled: –
### Logging ###
Enabled: ✔
Handler: Automattic\WooCommerce\Internal\Admin\Logging\LogHandlerFileV2
Retention period: 30 days
Level threshold: –
Log directory size: 3 MB
### WC Pages ###
Shop base: #415 - /store/
Cart: ❌ Page does not contain the [woocommerce_cart] shortcode or the woocommerce/cart block.
Checkout: ❌ Page does not contain the [woocommerce_checkout] shortcode or the woocommerce/checkout block.
My account: #14 - /account/
Terms and conditions: #15 - /terms-conditions/
### Theme ###
Name: Newspaper
Version: 12.6.5
Author URL: https://themeforest.net/user/tagDiv/portfolio
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: Newspaper/woocommerce/archive-product.php version 3.4.1 is out of date. The core version is 8.6.0
/home/skoiumc/public_html/wp-content/plugins/td-woo/templates/woocommerce/cart/cart.php version 3.8.0 is out of date. The core version is 7.9.0
/home/skoiumc/public_html/wp-content/plugins/td-woo/templates/woocommerce/checkout/form-checkout.php
Newspaper/woocommerce/single-product.php
Outdated Templates: ❌
Learn how to update
### Bulk Regenerate Download Permissions Settings ###
License Key: (set)
Enable: yes
Enable: no
Enable: no
Enable: yes
If your server has limited resources, increasing this value will slow down background processing and reduce the load on your server.: 100
Send an email to this address when the process is complete.: (set)
### Admin ###
Enabled Features: activity-panels
analytics
product-block-editor
coupons
core-profiler
customize-store
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
product-virtual-downloadable
product-external-affiliate
product-grouped
product-linked
product-pre-publish-modal
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: minified-js
new-product-management-experience
product-custom-fields
settings
async-product-editor-category-field
launch-your-store
Daily Cron: ✔ Next scheduled: 2024-05-03 11:45:23 +03:00
Options: ✔
Notes: 191
Onboarding: completed
### Action Scheduler ###
Canceled: 3
Oldest: 2024-04-07 10:56:51 +0000
Newest: 2024-04-14 16:22:14 +0000
Complete: 3,761
Oldest: 2024-04-01 13:00:11 +0000
Newest: 2024-05-02 12:32:26 +0000
Failed: 902
Oldest: 2022-10-29 14:29:22 +0000
Newest: 2024-03-06 13:51:45 +0000
Pending: 38
Oldest: 2024-05-02 12:31:39 +0000
Newest: 2024-05-06 12:26:39 +0000
### Status report information ###
Generated at: 2024-05-02 15:32:32 +03:00
Is there a cookies plugin that doesn’t cover the whole screen on mobile? The new european law about the GDPR made google force us to use that bad plugin. Is there a better one?
I use the Newspaper theme and Real Cookie Banner. Now Real Cookie Banner has now informed me that the theme integrates the cdnjs.cloudflare.com script, which is supposedly problematic in terms of data protection law in my country. The developers of Real Cookie Banner have therefore advised me to contact tagDiv support and ask for a local integration of the cdnjs.cloudflare.com script. This way I could avoid the data protection issue. Could you help me with this?
Here from System Status in Theme Option:
php.ini configuration
Server software i Apache
PHP Version i 7.4.33
post_max_size i 256M – You cannot upload images, themes and plugins that have a size bigger than this value. To see how you can change this please check our guide here.
max_execution_time 120
max_input_vars 3000
SUHOSIN installed false
PHP extensions
mbstring available
GD library available
WP version i 6.3.2
WP multisite enabled i No
WP Language i en_US
WP Memory Limit 256 MB/request
WP_DEBUG False
Caching plugin WP Rocket – we recommend WP super cache
Here are the plugins:
Ad Inserter
Settings | Deactivate
Ad management with many advanced advertising features to insert ads at optimal positions
Version 2.7.31 | By Igor Funa | View details | Safe mode
Disable auto-updates
Automatic update overdue by 1 week. There may be a problem with WP-Cron.
There is a new version of Ad Inserter available. View version 2.7.32 details or update now.
Select All In One WP Security
All In One WP Security
Settings | Deactivate
All round best WordPress security plugin!
Version 5.2.5 | By All In One WP Security & Firewall Team | View details
Disable auto-updates
Select Asset CleanUp: Page Speed Booster
Asset CleanUp: Page Speed Booster
Deactivate | Getting Started | Settings | Go Pro
Unload Chosen Scripts & Styles from Posts/Pages to reduce HTTP Requests, Combine/Minify CSS/JS files
Version 1.3.9.3 | By Gabe Livan | View details
Disable auto-updates
Select Better Search Replace
Better Search Replace
Deactivate
A small plugin for running a search/replace on your WordPress database.
Version 1.4.3 | By WP Engine | View details | Upgrade to Pro
Disable auto-updates
Select Broken Link Checker
Broken Link Checker
Cloud | Local | Docs | Deactivate
Checks your blog for broken links and notifies you on the dashboard if any are found.
Version 2.2.3 | By WPMU DEV | View details
Disable auto-updates
Select Classic Editor
Classic Editor
Deactivate | Settings
Enables the WordPress classic editor and the old-style Edit Post screen with TinyMCE, Meta Boxes, etc. Supports the older plugins that extend this screen.
Version 1.6.3 | By WordPress Contributors | View details
Disable auto-updates
Select CookieYes | GDPR Cookie Consent
CookieYes | GDPR Cookie Consent
Deactivate | Settings | Support | Premium Upgrade
A simple way to show your website complies with the EU Cookie Law / GDPR.
Version 3.1.6 | By CookieYes | View details
Disable auto-updates
Select Easy Custom Sidebars
Easy Custom Sidebars
Deactivate
Replace any sidebar/widget area in any WordPress theme (no coding required).
Version 2.0.1 | By Titanium Themes | View details
Disable auto-updates
Select Easy Table of Contents
Easy Table of Contents
Deactivate | Settings | Support | Upgrade | Website
Adds a user friendly and fully automatic way to create and display a table of contents generated from the page content.
Version 2.0.57.1 | By Magazine3 | View details
Disable auto-updates
Select Elementor
Elementor
Activate | Delete
The Elementor Website Builder has it all: drag and drop page builder, pixel perfect design, mobile responsive editing, and more. Get started now!
Version 3.17.1 | By Elementor.com | View details
Disable auto-updates
Automatic update overdue by 1 week. There may be a problem with WP-Cron.
There is a new version of Elementor available. View version 3.17.2 details or update now.
Select Essential Addons for Elementor
Essential Addons for Elementor
Activate | Delete
The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
Version 5.8.13 | By WPDeveloper | View details
Disable auto-updates
Automatic update overdue by 1 week. There may be a problem with WP-Cron.
There is a new version of Essential Addons for Elementor available. View version 5.8.14 details or update now.
Select Fixed Widget
Fixed Widget
Settings | Deactivate
Use the fixed widget plugin to create sticky widgets that stay in the visible screen area when the page is scrolled up or down and boost your conversions.
Version 6.2.3 | By Thomas Maier, Max Bond | View details
Disable auto-updates
Select Genesis Simple Edits
Genesis Simple Edits
Deactivate
Genesis Simple Edits lets you edit the three most commonly modified areas in any Genesis theme: the post-info, the post-meta, and the footer area.
Version 2.3.1 | By StudioPress | Visit plugin site
Select Header Footer Code Manager
Header Footer Code Manager
Settings | Deactivate
Header Footer Code Manager by 99 Robots is a quick and simple way for you to add tracking code snippets, conversion pixels, or other scripts required by third party services for analytics, tracking, marketing, or chat functions. For detailed documentation, please visit the plugin’s official page.
Version 1.1.36 | By 99robots | View details
Disable auto-updates
Select Hotjar
Hotjar
Deactivate
The fast & visual way to understand your users.
Version 1.0.16 | By Hotjar | View details
Disable auto-updates
Select HTTP2 push content
HTTP2 push content
Settings | SEND SUGGESTIONS TO IMPROVE | Deactivate
Push all CSS and JS file throuhg http2 server, plugin add extra files that you want to push like images font files and other
Version 1.9.71 | By Pi websolution | View details
Disable auto-updates
Automatic update overdue by 1 week. There may be a problem with WP-Cron.
There is a new version of HTTP2 push content available. View version 1.9.72 details or update now.
Select Imagify
Imagify
Settings | Bulk Optimization | Documentation | Deactivate
Dramatically reduce image file sizes without losing quality, make your website load faster, boost your SEO and save money on your bandwidth using Imagify, the new most advanced image optimization tool.
Version 2.1.2 | By Imagify – Optimize Images & Convert WebP | View details
Disable auto-updates
Select Inline Related Posts
Inline Related Posts
Settings | PREMIUM | Deactivate
Inline Related Posts AUTOMATICALLY inserts related posts INSIDE your content, capturing immediately the reader’s attention
Version 3.3.1 | By Data443 | View details
Disable auto-updates
Select Lightweight Social Icons
Lightweight Social Icons
Deactivate
Add simple icon font social media buttons. Choose the order, colors, size and more for 42 different icons!
Version 1.1 | By Thomas Usborne | View details
Disable auto-updates
Select myStickymenu
myStickymenu
Activate | Delete
Simple sticky (fixed on top) menu implementation for navigation menu and Welcome bar for announcements and promotion. After install go to Settings / myStickymenu and change Sticky Class to .your_navbar_class or #your_navbar_id.
Version 2.6.5 | By Premio | View details
Disable auto-updates
Select Post Duplicator
Post Duplicator
Deactivate
Creates functionality to duplicate any and all post types, including taxonomies & custom fields
Version 2.31 | By Metaphor Creations | View details
Disable auto-updates
Select Post Tags and Categories for Pages
Post Tags and Categories for Pages
Deactivate
Simply adds the stock Categories and Post Tags to your Pages.
Version 1.4.1 | By curtismchale | View details
Disable auto-updates
Select Post Type Switcher
Post Type Switcher
Deactivate | Sponsor
A simple way to change a post’s type in WordPress
Version 3.2.1 | By Triple J Software, Inc. | View details
Disable auto-updates
Select Post/Page specific custom CSS
Post/Page specific custom CSS
Deactivate | Settings
Post/Page specific custom CSS will allow you to add cascade stylesheet to specific posts/pages. It will give you special area in the post/page edit field to attach your CSS. It will also let you decide if this CSS has to be added in multi-page/post view (like archive posts) or only in a single view.
Version 0.2.4 | By Łukasz Nowicki | View details
Disable auto-updates
Select Redirection
Redirection
Settings | Deactivate
Manage all your 301 redirects and monitor 404 errors
Version 5.3.10 | By John Godley | View details
Disable auto-updates
Select Sensei LMS
Sensei LMS
Activate | Delete
Share your knowledge, grow your network, and strengthen your brand by launching an online course.
Version 4.18.0 | By Automattic | View details
Disable auto-updates
Automatic update overdue by 1 week. There may be a problem with WP-Cron.
There is a new version of Sensei LMS available. View version 4.19.1 details or update now.
Select Sercanto
Sercanto
Deactivate
Sercanto Widget Plugin
Version 1.0 | By Sercanto | Visit plugin site
Select Shortcodes Ultimate
Shortcodes Ultimate
Deactivate
A comprehensive collection of visual components for WordPress
Version 5.13.2 | By Vova Anokhin | View details
Disable auto-updates
Select Simple Author Box
Simple Author Box
Configure Author Box | Deactivate
Adds a responsive author box with social icons on any post.
Version 2.52 | By WebFactory Ltd | View details
Disable auto-updates
Select Site Kit by Google
Site Kit by Google
Settings | Deactivate
Site Kit is a one-stop solution for WordPress users to use everything Google has to offer to make them successful on the web.
Version 1.111.1 | By Google | View details | Rate Site Kit | Support
Disable auto-updates
Automatic update overdue by 1 week. There may be a problem with WP-Cron.
There is a new version of Site Kit by Google available. View version 1.113.0 details or update now.
Select Sucuri Security – Auditing, Malware Scanner and Hardening
Sucuri Security – Auditing, Malware Scanner and Hardening
Deactivate
The Sucuri plugin provides the website owner the best Activity Auditing, SiteCheck Remote Malware Scanning, Effective Security Hardening and Post-Hack features. SiteCheck will check for malware, spam, blocklisting and other security issues like .htaccess redirects, hidden eval code, etc. The best thing about it is it’s completely free.
Version 1.8.39 | By Sucuri Inc. | View details
Disable auto-updates
Select tagDiv Cloud Library
tagDiv Cloud Library
Deactivate
Access a huge collection of pre-made templates you can import on your website and customize on the frontend using the tagDiv Composer plugin.
Version 3.0 | built on 05.10.2023 12:50 | By tagDiv | Visit plugin site
Select tagDiv Composer
tagDiv Composer
Deactivate
Create everything on your website right on the frontend with this drag and drop builder. Perfect for articles, pages, headers, and footers. No coding skills required.
Version 4.4 | built on 05.10.2023 12:50 | By tagDiv | Visit plugin site
Select tagDiv Opt-In Builder
tagDiv Opt-In Builder
Deactivate
Generate leads and increase conversion rates with opt-in content lockers and subscription lists. tagDiv Opt-In Builder helps you easily create content lockers, subscribing lists (membership) and gives your visitors a compelling reason to enter their email address (opt-in) to unlock your content.
Version 1.5 | built on 06.10.2023 12:11 | By tagDiv | Visit plugin site
Select tagDiv Social Counter
tagDiv Social Counter
Deactivate
Displays your activity on social networks with style. Use it as a cool widget or shortcode.
Version 5.4 | built on 06.10.2023 12:11 | By tagDiv | Visit plugin site
Select tagDiv Standard Pack
tagDiv Standard Pack
Deactivate
Standard Pack Support
Version 2.1 | built on 06.10.2023 12:11 | By tagDiv | Visit plugin site
Select Tawk.to Live Chat
Tawk.to Live Chat
Settings | Deactivate
Embeds Tawk.to live chat widget to your site
Version 0.8.1 | By Tawkto | View details
Disable auto-updates
Select The Moneytizer
The Moneytizer
Settings | Deactivate
Plugin of the ad network The Moneytizer that facilitates the integration of your ad tags
Version 9.5.20 | By The Moneytizer | View details
Disable auto-updates
Select To Top
To Top
Settings | Deactivate
To Top plugin allows the visitor as well as admin to easily scroll back to the top of the page, with fully customizable options and ability to use image.
Version 2.5.2 | By Catch Plugins | View details | Support Forum |
Disable auto-updates
Select UpdraftPlus – Backup/Restore
UpdraftPlus – Backup/Restore
Premium / Pro Support | Settings | Deactivate | Take Tour
Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV & email, on automatic schedules.
Version 1.23.10 | By UpdraftPlus.Com, DavidAnderson | View details
Disable auto-updates
Automatic update overdue by 1 week. There may be a problem with WP-Cron.
There is a new version of UpdraftPlus – Backup/Restore available. View version 1.23.11 details or update now.
Select WP Reset
WP Reset
Open WP Reset Tools | Deactivate
Reset the entire site or just selected parts while reserving the option to undo by using snapshots.
Version 1.98 | By WebFactory Ltd | View details | Support | Plugin Homepage | Rate the plugin ★★★★★
Disable auto-updates
Select WP Rocket
WP Rocket
Settings | FAQ | Docs | Support | Deactivate
The best WordPress performance plugin.
Version 3.9.3 | By WP Media | Visit plugin site
Auto-updates disabled
Select WPForms Lite
WPForms Lite
Get WPForms Pro | Settings | Docs | Deactivate
Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
Version 1.8.4.1 | By WPForms | View details
Disable auto-updates
Select Yoast SEO
Yoast SEO
Get Premium | FAQ | Settings | Deactivate
The first true all-in-one SEO solution for WordPress, including on-page content analysis, XML sitemaps and much more.
Version 21.5 | By Team Yoast | View details
Disable auto-updates
Hello Bettina,
with PHP 8 the website shows only a boxed version of the header and then this list of errors.
Fatal error: Uncaught TypeError: number_format(): Argument #1 ($num) must be of type float, string given in /web/htdocs/www.rottadeitrasporti.it/home/wp-content/plugins/td-social-counter/shortcode/td_block_social_counter.php:1102 Stack trace: #0 /web/htdocs/www.rottadeitrasporti.it/home/wp-content/plugins/td-social-counter/shortcode/td_block_social_counter.php(1102): number_format() #1 /web/htdocs/www.rottadeitrasporti.it/home/wp-content/plugins/td-composer/legacy/common/wp_booster/td_global_blocks.php(27): td_block_social_counter->render() #2 /web/htdocs/www.rottadeitrasporti.it/home/wp-includes/shortcodes.php(355): td_global_blocks::proxy_function() #3 [internal function]: do_shortcode_tag() #4 /web/htdocs/www.rottadeitrasporti.it/home/wp-includes/shortcodes.php(227): preg_replace_callback() #5 /web/htdocs/www.rottadeitrasporti.it/home/wp-content/plugins/td-composer/includes/tdc_composer_block.php(278): do_shortcode() #6 /web/htdocs/www.rottadeitrasporti.it/home/wp-content/plugins/td-composer/includes/shortcodes/vc_column.php(316): tdc_composer_block->do_shortcode() #7 /web/htdocs/www.rottadeitrasporti.it/home/wp-content/plugins/td-composer/legacy/common/wp_booster/td_global_blocks.php(27): vc_column->render() #8 /web/htdocs/www.rottadeitrasporti.it/home/wp-includes/shortcodes.php(355): td_global_blocks::proxy_function() #9 [internal function]: do_shortcode_tag() #10 /web/htdocs/www.rottadeitrasporti.it/home/wp-includes/shortcodes.php(227): preg_replace_callback() #11 /web/htdocs/www.rottadeitrasporti.it/home/wp-content/plugins/td-composer/includes/tdc_composer_block.php(278): do_shortcode() #12 /web/htdocs/www.rottadeitrasporti.it/home/wp-content/plugins/td-composer/includes/shortcodes/vc_row.php(1145): tdc_composer_block->do_shortcode() #13 /web/htdocs/www.rottadeitrasporti.it/home/wp-content/plugins/td-composer/legacy/common/wp_booster/td_global_blocks.php(27): vc_row->render() #14 /web/htdocs/www.rottadeitrasporti.it/home/wp-includes/shortcodes.php(355): td_global_blocks::proxy_function() #15 [internal function]: do_shortcode_tag() #16 /web/htdocs/www.rottadeitrasporti.it/home/wp-includes/shortcodes.php(227): preg_replace_callback() #17 /web/htdocs/www.rottadeitrasporti.it/home/wp-content/plugins/td-composer/includes/tdc_composer_block.php(278): do_shortcode() #18 /web/htdocs/www.rottadeitrasporti.it/home/wp-content/plugins/td-composer/includes/shortcodes/tdc_zone.php(591): tdc_composer_block->do_shortcode() #19 /web/htdocs/www.rottadeitrasporti.it/home/wp-content/plugins/td-composer/legacy/common/wp_booster/td_global_blocks.php(27): tdc_zone->render() #20 /web/htdocs/www.rottadeitrasporti.it/home/wp-includes/shortcodes.php(355): td_global_blocks::proxy_function() #21 [internal function]: do_shortcode_tag() #22 /web/htdocs/www.rottadeitrasporti.it/home/wp-includes/shortcodes.php(227): preg_replace_callback() #23 /web/htdocs/www.rottadeitrasporti.it/home/wp-includes/class-wp-hook.php(308): do_shortcode() #24 /web/htdocs/www.rottadeitrasporti.it/home/wp-includes/plugin.php(205): WP_Hook->apply_filters() #25 /web/htdocs/www.rottadeitrasporti.it/home/wp-includes/post-template.php(255): apply_filters() #26 /web/htdocs/www.rottadeitrasporti.it/home/wp-content/plugins/td-composer/legacy/Newspaper/page.php(51): the_content() #27 /web/htdocs/www.rottadeitrasporti.it/home/wp-includes/template-loader.php(106): include(‘…’) #28 /web/htdocs/www.rottadeitrasporti.it/home/wp-blog-header.php(19): require_once(‘…’) #29 /web/htdocs/www.rottadeitrasporti.it/home/index.php(17): require(‘…’) #30 {main} thrown in /web/htdocs/www.rottadeitrasporti.it/home/wp-content/plugins/td-social-counter/shortcode/td_block_social_counter.php on line 1102
Si è verificato un errore critico sul tuo sito web.
Scopri di più riguardo la risoluzione dei problemi in WordPress.
Notice: ob_end_flush(): Failed to send buffer of zlib output compression (1) in /web/htdocs/www.rottadeitrasporti.it/home/wp-includes/functions.php on line 5279
Notice: ob_end_flush(): Failed to send buffer of zlib output compression (1) in /web/htdocs/www.rottadeitrasporti.it/home/wp-includes/functions.php on line 5279
Notice: ob_end_flush(): Failed to send buffer of zlib output compression (1) in /web/htdocs/www.rottadeitrasporti.it/home/wp-content/plugins/iubenda-cookie-law-solution/iubenda_cookie_solution.php on line 722
I have recently migrated our website from staging to live wp multisite and I am unable to login using the theme login modal, I have no idea how this sidebar has activated and i cannot find where to deactivate in the theme panel and for some reason one of my client’s domain (megphilipauthor.com) is registered on the theme with my license. However the client website is not hosted on my WPMS and has a different license.
I have used WP Troubleshooting to see if there’s a plugin conflict but there’s doesn’t seem to be one.
See images:
Can you help please? I am completely confused.
Thanks,
Justin.
### WordPress Environment ###
WordPress address (URL): https://partycaribbean.com
Site address (URL): https://partycaribbean.com
WC Version: 7.3.0
REST API Version: ✔ 7.3.0
WC Blocks Version: ✔ 9.1.5
Action Scheduler Version: ✔ 3.5.2
Log Directory Writable: ✔
WP Version: 6.1.1
WP Multisite: ✔
WP Memory Limit: 512 MB
WP Debug Mode: –
WP Cron: ✔
Language: en_US
External object cache: ✔
### Server Environment ###
Server Info: Apache
PHP Version: 8.1.13
PHP Post Max Size: 40 GB
PHP Time Limit: 600
PHP Max Input Vars: 5000
cURL Version: 7.74.0
OpenSSL/1.1.1n
SUHOSIN Installed: –
MySQL Version: 10.6.11-MariaDB
Max Upload Size: 40 GB
Default Timezone is UTC: ✔
fsockopen/cURL: ✔
SoapClient: ✔
DOMDocument: ✔
GZip: ✔
Multibyte String: ✔
Remote Post: ✔
Remote Get: ✔
### Database ###
WC Database Version: 7.3.0
WC Database Prefix: jpf_
Total Database Size: 132.41MB
Database Data Size: 96.66MB
Database Index Size: 35.75MB
jpf_woocommerce_sessions: Data: 2.02MB + Index: 0.08MB + Engine InnoDB
jpf_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
jpf_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
jpf_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_2_aiowps_events: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_2_aiowps_failed_logins: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_2_aiowps_global_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_2_aiowps_login_activity: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_2_aiowps_login_lockdown: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_2_aiowps_permanent_block: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_aiowps_debug_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_aiowps_events: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_aiowps_failed_logins: Data: 1.52MB + Index: 0.95MB + Engine InnoDB
jpf_3_aiowps_global_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_aiowps_login_activity: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_aiowps_login_lockdown: Data: 1.52MB + Index: 0.52MB + Engine InnoDB
jpf_3_aiowps_permanent_block: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_as3cf_items: Data: 0.02MB + Index: 0.11MB + Engine InnoDB
jpf_3_cartflows_ca_cart_abandonment: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_cartflows_ca_email_history: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_3_cartflows_ca_email_templates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_cartflows_ca_email_templates_meta: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_ce4wp_abandoned_checkout: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_ce4wp_contacts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_cli_cookie_scan: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_cli_cookie_scan_categories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_cli_cookie_scan_cookies: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_3_cli_cookie_scan_url: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_cli_scripts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_csp3_subscribers: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_ewwwio_images: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_3_ewwwio_queue: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_e_events: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_e_notes: Data: 0.02MB + Index: 0.17MB + Engine InnoDB
jpf_3_e_notes_users_relations: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_3_e_submissions: Data: 1.52MB + Index: 1.44MB + Engine InnoDB
jpf_3_e_submissions_actions_log: Data: 0.23MB + Index: 0.48MB + Engine InnoDB
jpf_3_e_submissions_values: Data: 3.52MB + Index: 0.34MB + Engine InnoDB
jpf_3_failed_jobs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_jetpack_waf_blocklog: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_litespeed_avatar: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
jpf_3_litespeed_img_optm: Data: 0.22MB + Index: 0.16MB + Engine InnoDB
jpf_3_litespeed_img_optming: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_3_litespeed_url: Data: 0.13MB + Index: 0.16MB + Engine InnoDB
jpf_3_litespeed_url_file: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
jpf_3_mailchimp_carts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_mailchimp_jobs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_queue: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_tm_taskmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_3_tm_tasks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_wc_product_attributes_lookup: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_wfBlockedIPLog: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_wfBlocks7: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_3_wfConfig: Data: 1.52MB + Index: 0.00MB + Engine InnoDB
jpf_3_wfCrawlers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_wfFileChanges: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_wfFileMods: Data: 2.52MB + Index: 0.00MB + Engine InnoDB
jpf_3_wfHits: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_3_wfHoover: Data: 2.52MB + Index: 0.50MB + Engine InnoDB
jpf_3_wfIssues: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
jpf_3_wfKnownFileList: Data: 1.52MB + Index: 0.00MB + Engine InnoDB
jpf_3_wfLiveTrafficHuman: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_wfLocs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_wfLogins: Data: 0.09MB + Index: 0.03MB + Engine InnoDB
jpf_3_wfls_2fa_secrets: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_wfls_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_wfNotifications: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
jpf_3_wfPendingIssues: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
jpf_3_wfReverseCache: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_wfSNIPCache: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_3_wfStatus: Data: 0.16MB + Index: 0.13MB + Engine InnoDB
jpf_3_wfTrafficRates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_wpforms_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_wpmailsmtp_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_3_yoast_indexable: Data: 0.42MB + Index: 0.36MB + Engine InnoDB
jpf_3_yoast_indexable_hierarchy: Data: 0.05MB + Index: 0.05MB + Engine InnoDB
jpf_3_yoast_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_3_yoast_primary_term: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_3_yoast_seo_links: Data: 0.08MB + Index: 0.03MB + Engine InnoDB
jpf_3_yoast_seo_meta: Data: 0.13MB + Index: 0.00MB + Engine InnoDB
jpf_4_actionscheduler_actions: Data: 0.02MB + Index: 0.11MB + Engine InnoDB
jpf_4_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_4_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_4_actionscheduler_logs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_4_aiowps_debug_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_aiowps_events: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_aiowps_failed_logins: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_4_aiowps_global_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_aiowps_login_activity: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_aiowps_login_lockdown: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_4_aiowps_permanent_block: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_4_as3cf_items: Data: 0.02MB + Index: 0.11MB + Engine InnoDB
jpf_4_cli_cookie_scan: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_cli_cookie_scan_categories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_4_cli_cookie_scan_cookies: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_4_cli_cookie_scan_url: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_cli_scripts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_4_comments: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
jpf_4_csp3_subscribers: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_4_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_4_loginizer_logs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
jpf_4_options: Data: 0.39MB + Index: 0.06MB + Engine InnoDB
jpf_4_postmeta: Data: 0.48MB + Index: 0.03MB + Engine InnoDB
jpf_4_posts: Data: 0.14MB + Index: 0.06MB + Engine InnoDB
jpf_4_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_4_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_4_term_relationships: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_4_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_4_ucare_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfBadLeechers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfBlockedCommentLog: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfBlockedIPLog: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfBlocks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_4_wfBlocksAdv: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfConfig: Data: 0.27MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfCrawlers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfFileMods: Data: 1.52MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfHits: Data: 0.42MB + Index: 0.22MB + Engine InnoDB
jpf_4_wfHoover: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_4_wfIssues: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfKnownFileList: Data: 0.31MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfLeechers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfLockedOut: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfLocs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfLogins: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_4_wfNet404s: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_4_wfNotifications: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfPendingIssues: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfReverseCache: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfScanners: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wfSNIPCache: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_4_wfStatus: Data: 0.14MB + Index: 0.09MB + Engine InnoDB
jpf_4_wfThrottleLog: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_4_wfVulnScanners: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wpmailsmtp_debug_events: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wpmailsmtp_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wp_criticalcss_api_queue: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_wp_criticalcss_web_check_queue: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_4_yoast_indexable: Data: 0.14MB + Index: 0.09MB + Engine InnoDB
jpf_4_yoast_indexable_hierarchy: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_4_yoast_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_4_yoast_primary_term: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_4_yoast_seo_links: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_4_yoast_seo_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_5_aiowps_events: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_5_aiowps_failed_logins: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_5_aiowps_global_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_5_aiowps_login_activity: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_5_aiowps_login_lockdown: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_5_aiowps_permanent_block: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_5_as3cf_items: Data: 0.02MB + Index: 0.11MB + Engine InnoDB
jpf_5_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_5_comments: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
jpf_5_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_5_options: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
jpf_5_postmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_5_posts: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
jpf_5_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_5_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_5_term_relationships: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_5_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_actionscheduler_actions: Data: 0.38MB + Index: 0.41MB + Engine InnoDB
jpf_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_actionscheduler_logs: Data: 0.30MB + Index: 0.20MB + Engine InnoDB
jpf_aiowps_debug_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_aiowps_events: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_aiowps_failed_logins: Data: 0.14MB + Index: 0.23MB + Engine InnoDB
jpf_aiowps_global_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_aiowps_login_activity: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
jpf_aiowps_login_lockdown: Data: 0.09MB + Index: 0.08MB + Engine InnoDB
jpf_aiowps_permanent_block: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_as3cf_items: Data: 4.52MB + Index: 1.50MB + Engine InnoDB
jpf_blogmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_blogs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_bp_activity: Data: 0.25MB + Index: 0.19MB + Engine InnoDB
jpf_bp_activity_meta: Data: 0.09MB + Index: 0.06MB + Engine InnoDB
jpf_bp_friends: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_bp_groups: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_bp_groups_groupmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_bp_groups_members: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
jpf_bp_invitations: Data: 0.02MB + Index: 0.14MB + Engine InnoDB
jpf_bp_messages_messages: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_bp_messages_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_bp_messages_notices: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_bp_messages_recipients: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
jpf_bp_notifications: Data: 0.02MB + Index: 0.11MB + Engine InnoDB
jpf_bp_notifications_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_bp_optouts: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_bp_user_blogs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_bp_user_blogs_blogmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_bp_xprofile_data: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_bp_xprofile_fields: Data: 0.08MB + Index: 0.08MB + Engine InnoDB
jpf_bp_xprofile_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_bp_xprofile_meta: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
jpf_bwg_album: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_bwg_album_gallery: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_bwg_file_paths: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_bwg_gallery: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_bwg_image: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_bwg_image_comment: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_bwg_image_rate: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_bwg_image_tag: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_bwg_shortcode: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_bwg_theme: Data: 0.08MB + Index: 0.00MB + Engine InnoDB
jpf_bwt_failed_submissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_bwt_passed_submissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_cli_cookie_scan: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_cli_cookie_scan_categories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_cli_cookie_scan_cookies: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_cli_cookie_scan_url: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_cli_scripts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
jpf_ewwwio_images: Data: 2.52MB + Index: 2.95MB + Engine InnoDB
jpf_ewwwio_queue: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_fv_fp_hls_access_tokens: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_fv_player_encoding_jobs: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
jpf_fv_player_playermeta: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
jpf_fv_player_players: Data: 0.09MB + Index: 0.00MB + Engine InnoDB
jpf_fv_player_stats: Data: 0.08MB + Index: 0.19MB + Engine InnoDB
jpf_fv_player_videometa: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
jpf_fv_player_videos: Data: 0.19MB + Index: 0.23MB + Engine InnoDB
jpf_indexnow_failed_submissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_indexnow_passed_submissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_jetpack_waf_blocklog: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_lbg_audio7_html5_categories: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
jpf_lbg_audio7_html5_players: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
jpf_lbg_audio7_html5_playlist: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
jpf_lbg_audio7_html5_settings: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
jpf_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_litespeed_avatar: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_litespeed_crawler: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_litespeed_crawler_blacklist: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_litespeed_img_optm: Data: 3.52MB + Index: 2.98MB + Engine InnoDB
jpf_litespeed_img_optming: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_litespeed_url: Data: 0.47MB + Index: 0.61MB + Engine InnoDB
jpf_litespeed_url_file: Data: 0.05MB + Index: 0.08MB + Engine InnoDB
jpf_mailchimp_carts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_mailchimp_jobs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_ngg_album: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_ngg_gallery: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_ngg_pictures: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_options: Data: 10.23MB + Index: 0.25MB + Engine InnoDB
jpf_postmeta: Data: 26.52MB + Index: 6.03MB + Engine InnoDB
jpf_posts: Data: 4.52MB + Index: 0.88MB + Engine InnoDB
jpf_presto_player_audio_presets: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_presto_player_email_collection: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_presto_player_presets: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_presto_player_videos: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
jpf_presto_player_visits: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
jpf_queue: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_registration_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_signups: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
jpf_site: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_sitemeta: Data: 2.06MB + Index: 0.06MB + Engine InnoDB
jpf_smush_dir_images: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_snippets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_swp_analytics: Data: 0.09MB + Index: 0.00MB + Engine InnoDB
jpf_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_terms: Data: 0.13MB + Index: 0.16MB + Engine InnoDB
jpf_term_relationships: Data: 0.33MB + Index: 0.27MB + Engine InnoDB
jpf_term_taxonomy: Data: 0.14MB + Index: 0.16MB + Engine InnoDB
jpf_tm_taskmeta: Data: 0.25MB + Index: 0.11MB + Engine InnoDB
jpf_tm_tasks: Data: 0.20MB + Index: 0.05MB + Engine InnoDB
jpf_usermeta: Data: 1.50MB + Index: 0.36MB + Engine InnoDB
jpf_users: Data: 0.05MB + Index: 0.05MB + Engine InnoDB
jpf_wc_admin_notes: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
jpf_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
jpf_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_wc_product_meta_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
jpf_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_wpfm_backup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_wpforms_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_wpmailsmtp_debug_events: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_wpmailsmtp_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_yasr_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_yasr_log_multi_set: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_yasr_multi_set: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_yasr_multi_set_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_yoast_indexable: Data: 4.48MB + Index: 1.63MB + Engine InnoDB
jpf_yoast_indexable_hierarchy: Data: 0.28MB + Index: 0.41MB + Engine InnoDB
jpf_yoast_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_yoast_primary_term: Data: 0.08MB + Index: 0.09MB + Engine InnoDB
jpf_yoast_seo_links: Data: 3.52MB + Index: 3.03MB + Engine InnoDB
jpf_youzify_activity_polls_votes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_youzify_bookmarks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_youzify_hashtags: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_youzify_hashtags_items: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_youzify_media: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_youzify_reviews: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_youzify_social_login_users: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_zbscrm_api_keys: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_zbs_admlog: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_zbs_aka: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_zbs_companies: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
jpf_zbs_contacts: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_zbs_customfields: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_zbs_dbmigration_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_zbs_dbmigration_posts: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
jpf_zbs_events: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
jpf_zbs_event_reminders: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_zbs_externalsources: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_zbs_forms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_zbs_invoices: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
jpf_zbs_lineitems: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_zbs_logs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_zbs_meta: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
jpf_zbs_notifications: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_zbs_object_links: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_zbs_quotes: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
jpf_zbs_quotes_templates: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_zbs_security_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_zbs_segments: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_zbs_segments_conditions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_zbs_settings: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_zbs_sys_cronmanagerlogs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_zbs_sys_email: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_zbs_sys_email_hist: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
jpf_zbs_tags: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_zbs_tags_links: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
jpf_zbs_tax_table: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_zbs_temphash: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_zbs_tracking: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
jpf_zbs_transactions: Data: 0.02MB + Index: 0.14MB + Engine InnoDB
### Post Type Counts ###
album: 2
apppush-log: 328
attachment: 2803
bp-email: 20
bwg_gallery: 1
cookielawinfo: 6
custom_css: 2
display_type: 7
envira: 15
envira_album: 9
envira_deactivated: 1
envira_default_album: 1
give_forms: 1
jetpack_migration: 2
jp_img_sitemap: 1
jp_sitemap: 1
jp_sitemap_master: 1
jp_vid_sitemap: 1
nav_menu_item: 20
oembed_cache: 14
page: 40
post: 561
product: 117
tdb_templates: 17
tds_locker: 2
videoplayer: 1
wp_block: 7
wp_global_styles: 2
wp_navigation: 8
wp_template: 18
wp_template_part: 21
wpcode: 3
zn_pb_templates: 2
znpb_template_mngr: 1
### Security ###
Secure connection (HTTPS): ✔
Hide errors from visitors: ✔
### Active Plugins (65) ###
AppPresser Media Images: by AppPresser Team – 1.0
All In One WP Security: by All In One WP Security & Firewall Team – 5.1.4
WP Offload Media: by Delicious Brains – 3.1.0
AppCamera: by AppPresser Team – 3.1.1
AppCommerce: by AppPresser – 2.3.1
AppPresser CORS fix: by – 0.1
AppPresser In App Purchases: by Scott Bolinger – 2.0.4
AppPresser: by AppPresser Team – 4.2.3
AppPush: by AppPresser Team – 4.1.0
Bing Webmaster Url Submission: by Bing Webmaster – 1.0.13
Envato Market: by Envato – 2.0.8
Envira Gallery – Albums Addon: by Envira Gallery Team – 1.7.8.7
Envira Gallery – Deeplinking Addon: by Envira Gallery Team – 1.4.9
Envira Gallery – Dynamic Addon: by Envira Gallery Team – 1.6.1
Envira Gallery – Featured Content Addon: by Envira Gallery Team – 1.2.8
Envira Gallery – Fullscreen Addon: by Envira Gallery Team – 1.2.4
Envira Gallery – Gallery Themes Addon: by Envira Gallery Team – 2.0.4
Envira Gallery: by Envira Gallery Team – 1.9.5
Envira Gallery – Lightroom Addon: by Envira Gallery Team – 2.3.1
Envira Gallery – Pagination Addon: by Envira Gallery Team – 1.7.12
Envira Gallery – Slideshow Addon: by Envira Gallery Team – 1.3.6
Envira Gallery – Social Addon: by Envira Gallery Team – 1.6.6.1
Envira Gallery – Tags Addon: by Envira Gallery Team – 1.7.15
Envira Gallery – Watermarking Addon: by Envira Gallery Team – 1.4.2
Envira Gallery – ZIP Importer Addon: by Envira Gallery Team – 1.2.3
Envira Gallery – Zoom Addon: by Envira Gallery Team – 1.3.8.1
EventON: by AshanJay – 4.2.2
EWWW Image Optimizer: by Exactly WWW – 6.9.3
FV Player: by – 7.5.30.7212
Site Kit by Google: by Google – 1.92.0
Gutenberg: by Gutenberg Team – 14.9.1
Health Check & Troubleshooting: by The WordPress.org community – 1.5.1
IndexNow: by Microsoft Bing – 1.0.1
JWT Authentication for WP-API: by Enrique Chavez – 1.3.2
Apollo – Sticky Full Width HTML5 Audio Player: by Lambert Group – 3.6.3
LiteSpeed Cache: by LiteSpeed Technologies – 5.3.2
LoginPress – Customizing the WordPress Login Screen.: by WPBrigade – 1.7.0
Mailchimp for WooCommerce: by Mailchimp – 2.7.6
Members: by MemberPress – 3.2.2
Microsoft Clarity: by Microsoft – 0.8.0
OneSignal Push Notifications: by OneSignal – 2.3.3
Reveal IDs: by Oliver Schlöbe – 1.5.4
Simple Local Avatars: by 10up – 2.7.3
Social Warfare – Pro: by Warfare Plugins – 4.3.0
Social Warfare: by Warfare Plugins – 4.3.0
tagDiv Cloud Library: by tagDiv – 2.4 | built on 09.01.2023 8:48
tagDiv Composer: by tagDiv – 3.8 | built on 09.01.2023 8:48
tagDiv Newsletter: by tagDiv – 1.8 | built on 09.01.2023 8:48
tagDiv Social Counter: by tagDiv – 5.1 | built on 09.01.2023 8:48
tagDiv Standard Pack: by tagDiv – 1.6 | built on 09.01.2023 8:48
tagDiv Opt-In Builder: by tagDiv – 1.4 | built on 09.01.2023 8:48
tagDiv Shop: by tagDiv – 1.7 | built on 09.01.2023 8:48
WooCommerce Amazon S3 Storage: by Themesquad – 2.4.5
WooCommerce Payments: by Automattic – 5.3.0
WooCommerce: by Automattic – 7.3.0
Yoast SEO: by Team Yoast – 19.14
WP Crontrol: by John Blackbourn & crontributors – 1.15.1
WP Mail SMTP: by WPForms – 3.7.0
WP Rollback: by GiveWP.com – 1.7.3
WP Super Cache: by Automattic – 1.9.2
All-in-One WP Migration Multisite Extension: by ServMask – 4.26
All-in-One WP Migration: by ServMask – 7.70
All-in-One WP Migration Unlimited Extension: by ServMask – 2.47
All In One WP Security: by All In One WP Security & Firewall Team – 5.1.4
LH Add Media from URL: by Peter Shaw – 1.22
### Inactive Plugins (55) ###
Age Gate: by Phil Baker – 3.1.2
AppCommunity: by AppPresser – 2.0.0
AppLMS: by AppPresser – 2.0.0
AWS for WordPress: by AWS Labs
WP Engine – 4.3.2
Checkinera Pro: by Tickera – 1.3.4
Checkout reCAPTCHA: by Tickera.com – 1.0.4
Classic Editor: by WordPress Contributors – 1.6.2
Compact Audio Player: by Tips and Tricks HQ – 1.9.8
Customer.io Connect for Tickera: by Tickera – 1.0.7
Envira Gallery – Defaults Addon: by Envira Gallery Team – 1.5.0
Envira Gallery – Dropbox Importer Addon: by Envira Gallery Team – 1.3.3
Envira Gallery – Protection Addon: by Envira Gallery Team – 1.3.4
Envira Gallery – Schedule Addon: by Envira Gallery Team – 1.2.3
Event Calendar for Tickera: by Tickera.com – 1.1.8
Force Regenerate Thumbnails: by Exactly WWW – 2.1.1
FV Player Pro: by Foliovision – 7.4.47.727
FV Top Level Categories: by Foliovision – 1.9.1
GTranslate: by Translate AI Multilingual Solutions – 2.9.14
Import Eventbrite Events: by Xylus Themes – 1.6.7
Jetpack: by Automattic – 11.7.1
Mollie for Tickera: by Tickera.com – 1.3
Performance Lab: by WordPress Performance Team – 1.9.0
Regenerate Thumbnails: by Alex Mills (Viper007Bond) – 3.1.5
Role based prices for Tickera: by Tickera.com – 1.1
Speakers: by Tickera.com – 1.0.4
Stripe Connect for Tickera: by Tickera.com – 1.2.3.3
tagDiv Mobile Theme: by tagDiv – 2.2 | built on 09.01.2023 8:48
Tickera (Premium): by Tickera.com – 3.4.6.9
Tickera – Barcode Reader Add-on: by Tickera.com – 1.2.2.3
Tickera – Custom Forms: by Tickera.com – 1.2.2.7
Tickera – Custom Ticket Template Fonts: by Tickera.com – 1.0.6
Tickera – Events Listing: by Tickera.com – 1.0.8
Tickera – serial ticket codes: by Tickera.com – 1.0.7
Tickera Bridge for WooCommerce: by Tickera – 1.1.7
Tickera Bulk Discount Codes: by Tickera.com – 1.0.7
Tickera Check-in App Translation: by Tickera.com – 1.1
Tickera Check-in Notifications: by Tickera.com – 1.1.4
Tickera CSV Export: by Tickera.com – 1.2.5.2
Tickera Mailchimp: by Tickera.com – 1.1.8
Tickera Slack Notifications: by Tickera.com – 1.1.7
Tickera Terms & Conditions: by Tickera.com – 1.2
Twilio SMS Notifications for Tickera: by Tickera.com – 1.2.2
Verify domain for Apple Pay with Stripe: by Memberful – 1.0.3
WooCommerce – ShipStation Integration: by WooCommerce – 4.3.2
WooCommerce Admin: by WooCommerce – 3.3.2
WooCommerce Amazon Pay: by WooCommerce – 2.3.0
WooCommerce Blocks: by Automattic – 9.4.0
WooCommerce Cart Abandonment Recovery: by CartFlows Inc – 1.2.21
WooCommerce Cart Tab: by jameskoster – 1.1.2
WooCommerce Google Analytics Integration: by WooCommerce – 1.5.19
WooCommerce Royal Mail Shipping Calculator: by WPRuby – 1.7.8
WooCommerce Shipping & Tax: by WooCommerce – 2.1.1
WooCommerce Stripe Gateway: by WooCommerce – 7.0.2
WordPress Multisite Content Copier/Updater: by Obtain Infotech – 1.5.0
WPForms Lite: by WPForms – 1.7.9.1
### Dropin Plugins (2) ###
advanced-cache.php: advanced-cache.php
object-cache.php: object-cache.php
### Must Use Plugins (2) ###
aios-firewall-loader.php: by –
Health Check Troubleshooting Mode: by – 1.7.1
### Settings ###
API Enabled: –
Force SSL: –
Currency: GBP (£)
Currency Position: left
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: ✔
Enforce Approved Product Download Directories: –
Order datastore: WC_Order_Data_Store_CPT
### WC Pages ###
Shop base: #30593 – /store/
Cart: #30590 – /cart/
Checkout: #30591 – /checkout/
My account: #30592 – /my-account/
Terms and conditions: #30595 – /tas/
### Theme ###
Name: Newspaper
Version: 12.2
Author URL: http://themeforest.net/user/tagDiv/portfolio
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: Newspaper/woocommerce/archive-product.php
/bitnami/wordpress/wp-content/plugins/td-woo/templates/woocommerce/cart/cart.php version 3.8.0 is out of date. The core version is 7.0.1
/bitnami/wordpress/wp-content/plugins/td-woo/templates/woocommerce/checkout/form-checkout.php
Newspaper/woocommerce/single-product.php
Outdated Templates: ❌
Learn how to update
### Admin ###
Enabled Features: activity-panels
analytics
coupons
customer-effort-score-tracks
experimental-products-task
experimental-import-products-task
experimental-fashion-sample-products
shipping-smart-defaults
shipping-setting-tour
homescreen
marketing
multichannel-marketing
mobile-app-banner
navigation
onboarding
onboarding-tasks
remote-inbox-notifications
remote-free-extensions
payment-gateway-suggestions
shipping-label-banner
subscriptions
store-alerts
transient-notices
woo-mobile-welcome
wc-pay-promotion
wc-pay-welcome-page
Disabled Features: minified-js
new-product-management-experience
settings
Daily Cron: ✔ Next scheduled: 2023-01-18 10:54:29 +00:00
Options: ✔
Notes: 60
Onboarding: completed
### WooCommerce Payments ###
Version: 5.3.0
Connected to WPCOM: No
Blog ID: –
Account ID: –
### Action Scheduler ###
Complete: 231
Oldest: 2022-12-19 11:18:56 +0000
Newest: 2023-01-18 08:18:05 +0000
Failed: 655
Oldest: 2022-11-07 05:49:39 +0000
Newest: 2023-01-14 05:49:47 +0000
Pending: 3
Oldest: 2023-01-19 08:18:05 +0000
Newest: 2023-01-24 23:13:36 +0000
### Status report information ###
Generated at: 2023-01-18 08:32:59 +00:00
Hi,
If you want to change the icon this can be done with css, if you can give me the icon I will make a css for you.
The problem with the color in the table, it seems that those are coming from the plugin (like you said the color is not for a back website) and the theme can not overwrite them, you can can use a custom css -> https://i.imgur.com/AHqorwl.png
table.cookielawinfo-classic td{
color: #fff;
}
The Exchange widgetExchange API indeed seems to not be ok, you need to create a new one, because I do not know why, but this one is not valid -> https://forum.tagdiv.com/exchange-widget/
Thank you!
Good Morning,
With the new law in europe about div for consent people affect a lot the prestashop theme.
With out Cookie consent theme have medium score in google insight.
Adding Div for consent score become very very bad bad.
I have other theme and i don t experencing this issue.
It s possible to optimise better scoring reducing donwload time of Theme for java Tag.
Regard
Olivier
PS : i sude dedicated server + Litespped + litesped cache all fully optimised.
Hi Calin,
This weekend I had the opportunity to try various roads, and all without exit … unfortunately.
I thought about going back to version 9.5 and I told myself that, then, I could not have the theme with important updates.
Rest at 9.6, but what I can see is the problem with the AMP plugin.
Wordpress mia has reported the following error message:
The following plugins may be incompatible with AMP: td-composer, really-simple-ssl, wp-excel-cms, wp-content-copy-protection, eu-cookie-law, wp-fastest-cache, wp-recaptcha , wp-fastest-cache-premium More details
Where with More details it signals to me, for each article, something like this:
/ La-played-vertical-of-torque-equidistant-di-osvaldo-manara /
Details | View | Recheck | Forget
Clear Stale results
New Accepted: 12
Accepted: 48
script (48),
input (8),
[Border]
Plugins (9)
tagDiv Composer
EU Cookie Law
Really Simple SSL
WP Excel CMS
WP Content Copy Protection
Yoast SEO Premium
WP Fastest Cache
WP-reCAPTCHA
WP Fastest Cache Premium
From what I understand, mind you I’m not an expert, but it’s not your theme to have problems, but it has the AMP plugin.
And even on your “td composer” plugin.
Even if my assumptions were correct, do not you think it would be better to settle the issue by intervening on the AMP plugin and making it perfectly compatible with the theme?
When I bought your theme at the time, I did it essentially because it allowed us to have graphically interesting AMP pages.
Now I am forced to have AMP pages, a painful graphics and I had to create a personal plugin to have the opportunity to put adsense advertising.
I hope you can solve this problem soon, not so much for me that somehow I arrange, as for all the other 77,000, and more, who have bought your theme.
A question arises spontaneously, but is there anybody to whom the theme works perfectly with the new version of the AMP plugin?
A cordial greeting and a good job …
Hi,
I think that can be achieve using some plugins for Cookie
5 Best Free Cookie Notification WordPress Plugins to Comply with the EU Cookie Law Regulations -> https://smallenvelop.com/cookie-notice-wordpress-plugins/
Thank you for your understanding!
Thanks Alin.
The theme is tested with very popular Iubenda plugin?
https://it.wordpress.org/plugins/iubenda-cookie-law-solution/
This is very important for all EU client.
PS: can we have a list of tested plugin?
Thanks again.
Waiting for the theme update.
https://forum.tagdiv.com/topic/cookies-law-pop-up/
A theme update is planned in the matter of GDPR, it should be available soon. Please have a little more patience.
The update is currently in final stages. It will be released before the deadline, the team is working fast to provide this update as soon as possible.
https://forum.tagdiv.com/topic/cookies-law-pop-up/
A theme update is planned in the matter of GDPR, it should be available soon. Please have a little more patience.
The update is currently in final stages. It will be released before the deadline, the team is working fast to provide this update as soon as possible.
https://forum.tagdiv.com/topic/cookies-law-pop-up/
https://forum.tagdiv.com/topic/cookies-law-pop-up/#post-233899 A theme update is planned in the matter of GDPR, it should be available soon. Please have a little more patience.
https://forum.tagdiv.com/topic/cookies-law-pop-up/#post-234075 The update is currently in final stages. It will be released before the deadline, the team is working fast to provide this update as soon as possible.
Hi,
In France, we have now a new law which forces the websites to let visitors navigate WITHOUT cookie if they choose that option. So a page with “more info” about the cookies is not enough. And most of the plugins (that I know) offer the possibility to add a button “I Refuse” but they don’t go further. We have to implement a “if … function” everywhere :
if ( function_exists(‘cn_cookies_accepted’) && cn_cookies_accepted() ) {
// code here
}
My question to the theme’s team : is there something in your todo-list to make the theme compatible wich such policies (EU-policy, French one etc.) or not ?
By the way, is there a simple way to add a function to make the theme compatible with the option “I refuse” ?
Hello,
If the need arises we will most definitely make the proper implementation in this regard. Until now, users simply activated a notice through a plugin (cookie law) or others opted for customization to remove te google fonts like so:
https://forum.tagdiv.com/topic/do-i-really-need-to-change-all-the-text-fields-for-fonts/
Thank you!
You do not need that. But if you want something like that anyway here is a nice plugin for that:
https://wordpress.org/plugins/cookie-notice/
https://wordpress.org/plugins/uk-cookie-consent/
https://wordpress.org/plugins/eu-cookie-law/
Likely a flaw in the membership plugin you’re using that is setting IP based cookies, vs session cookies. So, anybody coming in on a shared IP gets access. That is only a guess, of course.
Theme has nothing to do with the membership plugin, obviously.
Likely want to check the support forum and page for the plugin you’re using, to see what others have reported as issues/flaws, etc.
( I don’t work here. )
Ok, managed to get the php.ini problem sorted out with my hosting provider. This is my system panel right now:
Everything looking good I guess? Still, no success in saving the translation settings. I should also say, this is the only setting that I cannot save. Everything else has always been working just fine.
As for plugins: I only use three not tested plugins that I all deactivated, but that didn’t help:
Cookie Law Info
Limit Login Attempts
Reveal IDs
I’m also using WP Super Cache and WP User Avatar which are supported. (Also deactivated WP Super Cache, didn’t help.)
Any ideas? Many thanks,
Manfred
Hey Catalin,
thanks for the quick reply. As for plugins: I’m only using WP User Avatar, Limit Login Attempts and Cookie Law Info. Deactivating those didn’t change anything. If you want to look at the site: http://www.godoculus.at Site hasn’t launched yet so it’s pw protected. Login godoculuspreview PW 321launch. Many thanks in advance!
Hello,
Unfortunately the theme does not have any such option. You will have to use a plugin to do it. You can try to search through this forum to see what others use or maybe a member of our community can suggest a plugin for the cookie law policy .
https://forum.tagdiv.com/search/cookie+law/
Thank you!
