Search Results for 'advanced custom fields'

Results from the Forum
Eighthats
tagDiv Member

WP = 6.6.2
PHP = 8.1.29
Newspaper: 12.6.7

This error has occurred on multiple category templates intermittently, displaying the same way.

We have many plugins across the site, things like Advanced Ads Pro, and Advanced Custom Fields Pro, but when we disable those plugins, it doesn’t fix the problem.

Perhaps it is related to the following:

When editing the 6G category (the link I provided that was previously not working), we tried using “Edit” instead of “Edit with TD Composer.” We were then able to assign the category in the Gutenberg editor which resolved the problem BUT made the category template disappear from Cloud Templates on the back end.

It’s strange, sometimes when I click the “Edit” button on a category in the Cloud Templates, it shows the Gutenberg block editor, and sometimes it shows the “Classic Editor” without categories available. Something seems broken here… images attached.

View post on imgur.com

kubick
Participant
#0

Hello Support Team,

I am creating an event calendar using Advanced Custom Fields (ACF) to store event information, including the event date and location. I want to achieve the following:

Display only future events, starting from the current date (including events happening today).
Sort events by the event date (stored in an ACF field) rather than the post creation date in the CMS.
The event date is stored in an ACF date_time_picker field named data_i_godzina_wydarzenia.
The event location is stored in an ACF text field named miejsce_wydarzenia.
I am using Flex Block Builder to display the posts from my custom post type (CPT). Could you please guide me on how to modify the query or settings so that my event list displays only future events, filtering out past ones and sorting them by the event date?

Thank you very much for your help!

Best regards,
Jakub

Bettina
tagDiv Staff

Hello!

Then try to use the Single image shortcode that have a field to insert an image link.
The problem appears in the flex block builder because it will apply the same image or you can add multiple flex blocks builder with different module created custom for each post/article.
With custom fields, you will need custom code: https://support.advancedcustomfields.com/forums/topic/how-to-link-an-image-field-to-an-external-url/

This will require custom work, which is not covered by the support team.
For customization and other services, you can contact our custom work team here: https://tagdiv.com/premium-customization-services/.

Thank you!

Anamaria
tagDiv Staff

Hello,

You can use the shortcode to add the acf https://www.advancedcustomfields.com/resources/shortcode/ and set the shortcode in the column text element in the text area.

Thank you!

Michael Smart
Participant
#0

I have two custom post types (cpt_business and cpt_deal) on my website, each with its own set of custom fields managed by Advanced Custom Fields (ACF):

cpt_business: Managed by the “Business Information” ACF group.
cpt_deal: Managed by the “Deals Information” ACF group.
In the “Deals Information” ACF group, I have added a relationship field named related_business which links to posts of type cpt_business. This allows me to associate each cpt_deal post with a cpt_business post.

Objective
I aim to create a front-end form using tagDiv Composer that allows users to create or edit cpt_deal posts. This form should include the related_business relationship field so that users can select the associated cpt_business post when submitting or editing a deal.

Requirements
Front-End Form Integration: I need guidance on how to configure the front-end form in tagDiv Composer to include and handle the related_business ACF relationship field for cpt_deal posts.
Data Retrieval and Display: Additionally, I have a shortcode that needs to retrieve and display the contact information (country code and WhatsApp number) from the associated cpt_business post on the front-end, based on the related_business field.
Example Shortcode
Here is the shortcode I am using to display the WhatsApp link:

function smart_whatsapp_link_with_acf_shortcode($atts) {
$attributes = shortcode_atts(array(‘urlencode’ => ‘true’), $atts);
if (is_singular(array(‘cpt_business’, ‘cpt_deal’))) {
$page_url = get_permalink();
if (!validate_url($page_url) || !is_safe_protocol($page_url)) return ‘Invalid URL’;
$country_code = ”;
$phone_number = ”;
if (get_post_type() == ‘cpt_deal’) {
$related_business = get_field(‘related_business’);
if ($related_business) {
$country_code = get_field(‘country_code’, $related_business->ID);
$phone_number = get_field(‘whatsapp_number’, $related_business->ID);
}
} else {
$country_code = get_field(‘country_code’);
$phone_number = get_field(‘whatsapp_number’);
}
if (!$country_code || !$phone_number) return ‘Missing WhatsApp contact information’;
$phone_number = preg_replace(‘/[^0-9]/’, ”, $phone_number);
$message = “Hello! I’m interested in this deal listed on Shockvibes:\n\n”;
$encoded_message = ($attributes[‘urlencode’] === ‘true’) ? urlencode($message) . rawurlencode($page_url) : $message . $page_url;
$whatsapp_link = ‘https://wa.me/’ . $country_code . $phone_number . ‘?text=’ . $encoded_message;
return $whatsapp_link;
} else {
return ‘No WhatsApp link available’;
}
}
add_shortcode(‘smart_whatsapp_link_with_acf’, ‘smart_whatsapp_link_with_acf_shortcode’);

Anamaria
tagDiv Staff

Hello,

You can set the acf shortcode here -> https://i.imgur.com/XmQAH23.png -> https://www.advancedcustomfields.com/resources/shortcode/

Thank you!

Michael Smart
tagDiv Member
Anamaria
tagDiv Staff

Hi,

Unfortunately, this type of acf is not implemented in the theme, but you can use the shortcode of acf to display it using column text https://support.advancedcustomfields.com/forums/topic/repeater-field-shortcode/

Thank you!

cemalozcelik
Participant
#0

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
newspatron
Participant
#0

Hi!
I connected the woocommerce plugin and the tag store plugin both in order to configure a downloadable product using woocommerce.
here the error thats received.


### WordPress Environment ###

WordPress address (URL): https://newspatron.com
Site address (URL): https://newspatron.com
WC Version: 8.8.2
REST API Version: ✔ 8.8.2
Action Scheduler Version: ✔ 3.7.4
Log Directory Writable: ✔
WP Version: 6.5.2
WP Multisite: –
WP Memory Limit: 512 MB
WP Debug Mode: –
WP Cron: ✔
Language: en_US
External object cache: ✔

### Server Environment ###

Server Info: nginx
PHP Version: 8.1.28
PHP Post Max Size: 2 GB
PHP Time Limit: 1200
PHP Max Input Vars: 6144
cURL Version: 8.7.1
OpenSSL/1.1.1w

SUHOSIN Installed: –
MySQL Version: 10.6.15-MariaDB-log
Max Upload Size: 2 GB
Default Timezone is UTC: ✔
fsockopen/cURL: ✔
SoapClient: ✔
DOMDocument: ✔
GZip: ✔
Multibyte String: ✔
Remote Post: ✔
Remote Get: ✔

### Database ###

WC Database Version: 8.8.2
WC Database Prefix: wp_
Total Database Size: 329.66MB
Database Data Size: 289.23MB
Database Index Size: 40.43MB
wp_woocommerce_sessions: Data: 0.09MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.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.03MB + 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
tds_billing: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
tds_companies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
tds_coupons: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
tds_options: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
tds_payment_bank: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
tds_payment_paypal: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
tds_payment_stripe: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
tds_paypal_payments: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
tds_plans: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
tds_subscriptions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
tds_trackings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
tds_trackings_templates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_actionscheduler_actions: Data: 7.52MB + Index: 6.16MB + Engine InnoDB
vp_backup_wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_actionscheduler_logs: Data: 4.52MB + Index: 3.03MB + Engine InnoDB
vp_backup_wp_bv_airlift_config: Data: 41.52MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_bv_airlift_stats: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_bv_dynamic_sync: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_bwt_failed_submissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_bwt_passed_submissions: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_cff_facebook_feed_locator: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_cff_feeds: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_cff_feed_caches: Data: 0.05MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_cff_sources: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_comments: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
vp_backup_wp_ctf_feeds: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_ctf_feeds_posts: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_ctf_feed_caches: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_ctf_feed_locator: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_ctf_posts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_jetpack_sync_queue: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
vp_backup_wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_automations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_mailpoet_automation_runs: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
vp_backup_wp_mailpoet_automation_run_logs: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
vp_backup_wp_mailpoet_automation_run_subjects: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_mailpoet_automation_triggers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_mailpoet_automation_versions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_custom_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_dynamic_segment_filters: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_feature_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_mailpoet_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_mailpoet_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_newsletters: Data: 0.19MB + Index: 0.05MB + Engine InnoDB
vp_backup_wp_mailpoet_newsletter_links: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
vp_backup_wp_mailpoet_newsletter_option: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_newsletter_option_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_newsletter_posts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_newsletter_segment: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_newsletter_templates: Data: 5.52MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_mailpoet_scheduled_tasks: Data: 0.08MB + Index: 0.06MB + Engine InnoDB
vp_backup_wp_mailpoet_scheduled_task_subscribers: Data: 1.52MB + Index: 0.45MB + Engine InnoDB
vp_backup_wp_mailpoet_segments: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_mailpoet_sending_queues: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_mailpoet_settings: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_statistics_bounces: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_mailpoet_statistics_clicks: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
vp_backup_wp_mailpoet_statistics_forms: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_statistics_newsletters: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_mailpoet_statistics_opens: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
vp_backup_wp_mailpoet_statistics_unsubscribes: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
vp_backup_wp_mailpoet_statistics_woocommerce_purchases: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
vp_backup_wp_mailpoet_stats_notifications: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_mailpoet_subscribers: Data: 0.09MB + Index: 0.27MB + Engine InnoDB
vp_backup_wp_mailpoet_subscriber_custom_field: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_subscriber_ips: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_subscriber_segment: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_mailpoet_subscriber_tag: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_mailpoet_tags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_user_agents: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_mailpoet_user_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_options: Data: 1.48MB + Index: 0.06MB + Engine InnoDB
vp_backup_wp_postmeta: Data: 16.55MB + Index: 3.03MB + Engine InnoDB
vp_backup_wp_posts: Data: 52.52MB + Index: 0.75MB + Engine InnoDB
vp_backup_wp_rank_math_404_logs: Data: 0.16MB + Index: 0.13MB + Engine InnoDB
vp_backup_wp_rank_math_analytics_adsense: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_rank_math_analytics_ga: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_rank_math_analytics_gsc: Data: 0.06MB + Index: 0.06MB + Engine InnoDB
vp_backup_wp_rank_math_analytics_inspections: Data: 0.27MB + Index: 0.11MB + Engine InnoDB
vp_backup_wp_rank_math_analytics_keyword_manager: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_rank_math_analytics_objects: Data: 0.09MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_rank_math_internal_links: Data: 0.31MB + Index: 0.16MB + Engine InnoDB
vp_backup_wp_rank_math_internal_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_rank_math_redirections: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_rank_math_redirections_cache: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_sbi_feeds: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_sbi_feed_caches: Data: 0.17MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_sbi_instagram_feeds_posts: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_sbi_instagram_feed_locator: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_sbi_instagram_posts: Data: 0.14MB + Index: 0.00MB + Engine InnoDB
vp_backup_wp_sbi_sources: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_sbr_feeds: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_sbr_feed_caches: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_sbr_feed_locator: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_sbr_reviews_posts: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
vp_backup_wp_sbr_sources: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_sby_feeds: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_sby_feed_caches: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
vp_backup_wp_sby_feed_locator: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_terms: Data: 0.23MB + Index: 0.34MB + Engine InnoDB
vp_backup_wp_term_relationships: Data: 0.17MB + Index: 0.11MB + Engine InnoDB
vp_backup_wp_term_taxonomy: Data: 0.20MB + Index: 0.22MB + Engine InnoDB
vp_backup_wp_usermeta: Data: 0.14MB + Index: 0.03MB + Engine InnoDB
vp_backup_wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_actionscheduler_actions: Data: 8.02MB + Index: 5.84MB + 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: 4.28MB + Index: 2.92MB + Engine InnoDB
wp_bv_airlift_config: Data: 6.52MB + Index: 0.00MB + Engine InnoDB
wp_bv_airlift_stats: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_bv_dynamic_sync: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_bwt_failed_submissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_bwt_passed_submissions: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
wp_cff_facebook_feed_locator: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_cff_feeds: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_cff_feed_caches: Data: 0.05MB + Index: 0.02MB + Engine InnoDB
wp_cff_sources: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
wp_ctf_feeds_posts: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_ctf_posts: Data: 0.02MB + Index: 0.00MB + 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: 0.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_jetpack_sync_queue: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_automations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_mailpoet_automation_runs: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
wp_mailpoet_automation_run_logs: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_mailpoet_automation_run_subjects: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_mailpoet_automation_triggers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_mailpoet_automation_versions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_custom_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_dynamic_segment_filters: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_feature_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_mailpoet_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_mailpoet_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_newsletters: Data: 0.19MB + Index: 0.05MB + Engine InnoDB
wp_mailpoet_newsletter_links: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_mailpoet_newsletter_option: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_newsletter_option_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_newsletter_posts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_newsletter_segment: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_newsletter_templates: Data: 5.52MB + Index: 0.00MB + Engine InnoDB
wp_mailpoet_scheduled_tasks: Data: 0.08MB + Index: 0.06MB + Engine InnoDB
wp_mailpoet_scheduled_task_subscribers: Data: 1.52MB + Index: 0.45MB + Engine InnoDB
wp_mailpoet_segments: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_mailpoet_sending_queues: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_mailpoet_settings: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_statistics_bounces: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_mailpoet_statistics_clicks: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_mailpoet_statistics_forms: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_statistics_newsletters: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
wp_mailpoet_statistics_opens: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
wp_mailpoet_statistics_unsubscribes: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_mailpoet_statistics_woocommerce_purchases: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
wp_mailpoet_stats_notifications: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_mailpoet_subscribers: Data: 0.09MB + Index: 0.27MB + Engine InnoDB
wp_mailpoet_subscriber_custom_field: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_subscriber_ips: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_subscriber_segment: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
wp_mailpoet_subscriber_tag: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_mailpoet_tags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_user_agents: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_mailpoet_user_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_options: Data: 1.17MB + Index: 0.08MB + Engine InnoDB
wp_postmeta: Data: 16.55MB + Index: 3.03MB + Engine InnoDB
wp_posts: Data: 52.52MB + Index: 0.75MB + Engine InnoDB
wp_rank_math_404_logs: Data: 0.16MB + Index: 0.13MB + Engine InnoDB
wp_rank_math_analytics_adsense: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_rank_math_analytics_ga: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_rank_math_analytics_gsc: Data: 0.06MB + Index: 0.06MB + Engine InnoDB
wp_rank_math_analytics_inspections: Data: 0.27MB + Index: 0.11MB + Engine InnoDB
wp_rank_math_analytics_keyword_manager: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_rank_math_analytics_objects: Data: 0.09MB + Index: 0.02MB + Engine InnoDB
wp_rank_math_internal_links: Data: 0.31MB + Index: 0.16MB + Engine InnoDB
wp_rank_math_internal_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_rank_math_redirections: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_rank_math_redirections_cache: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_sbi_feeds: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_sbi_feed_caches: Data: 0.17MB + Index: 0.02MB + Engine InnoDB
wp_sbi_instagram_feeds_posts: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_sbi_instagram_feed_locator: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_sbi_instagram_posts: Data: 0.14MB + Index: 0.00MB + Engine InnoDB
wp_sbi_sources: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_terms: Data: 0.23MB + Index: 0.34MB + Engine InnoDB
wp_term_relationships: Data: 0.17MB + Index: 0.11MB + Engine InnoDB
wp_term_taxonomy: Data: 0.20MB + Index: 0.22MB + Engine InnoDB
wp_usermeta: Data: 0.14MB + Index: 0.03MB + Engine InnoDB
wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_wc_admin_notes: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
wp_wc_admin_note_actions: Data: 0.06MB + Index: 0.02MB + Engine InnoDB
wp_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_download_log: 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.02MB + Index: 0.03MB + 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: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_product_attributes_lookup: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wc_product_meta_lookup: Data: 0.02MB + 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_actionscheduler_actions: Data: 1.52MB + Index: 0.77MB + Engine InnoDB
__wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_actionscheduler_logs: Data: 0.48MB + Index: 0.31MB + Engine InnoDB
__wp_bwt_failed_submissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
__wp_bwt_passed_submissions: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
__wp_commentmeta: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
__wp_comments: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
__wp_jetpack_sync_queue: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
__wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_automations: Data: 0.03MB + Index: 0.00MB + Engine InnoDB
__wp_mailpoet_automation_runs: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
__wp_mailpoet_automation_run_logs: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
__wp_mailpoet_automation_run_subjects: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
__wp_mailpoet_automation_triggers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
__wp_mailpoet_automation_versions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_custom_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_dynamic_segment_filters: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_feature_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
__wp_mailpoet_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
__wp_mailpoet_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_newsletters: Data: 0.17MB + Index: 0.05MB + Engine InnoDB
__wp_mailpoet_newsletter_links: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
__wp_mailpoet_newsletter_option: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_newsletter_option_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_newsletter_posts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_newsletter_segment: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_newsletter_templates: Data: 2.52MB + Index: 0.00MB + Engine InnoDB
__wp_mailpoet_scheduled_tasks: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
__wp_mailpoet_scheduled_task_subscribers: Data: 0.08MB + Index: 0.05MB + Engine InnoDB
__wp_mailpoet_segments: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
__wp_mailpoet_sending_queues: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
__wp_mailpoet_settings: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_statistics_bounces: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
__wp_mailpoet_statistics_clicks: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
__wp_mailpoet_statistics_forms: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_statistics_newsletters: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
__wp_mailpoet_statistics_opens: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
__wp_mailpoet_statistics_unsubscribes: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
__wp_mailpoet_statistics_woocommerce_purchases: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
__wp_mailpoet_stats_notifications: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
__wp_mailpoet_subscribers: Data: 0.09MB + Index: 0.27MB + Engine InnoDB
__wp_mailpoet_subscriber_custom_field: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_subscriber_ips: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_subscriber_segment: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
__wp_mailpoet_subscriber_tag: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
__wp_mailpoet_tags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_user_agents: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_mailpoet_user_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
__wp_options: Data: 1.16MB + Index: 0.06MB + Engine InnoDB
__wp_postmeta: Data: 11.52MB + Index: 1.80MB + Engine InnoDB
__wp_posts: Data: 33.48MB + Index: 0.48MB + Engine InnoDB
__wp_rank_math_analytics_inspections: Data: 0.02MB + Index: 0.11MB + Engine InnoDB
__wp_rank_math_analytics_keyword_manager: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
__wp_rank_math_analytics_objects: Data: 0.08MB + Index: 0.02MB + Engine InnoDB
__wp_rank_math_internal_links: Data: 0.20MB + Index: 0.08MB + Engine InnoDB
__wp_rank_math_internal_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
__wp_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
__wp_terms: Data: 0.22MB + Index: 0.33MB + Engine InnoDB
__wp_term_relationships: Data: 0.16MB + Index: 0.14MB + Engine InnoDB
__wp_term_taxonomy: Data: 0.19MB + Index: 0.19MB + Engine InnoDB
__wp_usermeta: Data: 0.09MB + Index: 0.03MB + Engine InnoDB
__wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB

### Post Type Counts ###

adstxt: 1
app-adstxt: 1
attachment: 2351
customize_changeset: 2
jetpack_migration: 2
jp_img_sitemap: 4
jp_img_sitemap_index: 1
jp_mem_plan: 1
jp_sitemap: 3
jp_sitemap_master: 3
jp_vid_sitemap: 3
mailpoet_page: 1
nav_menu_item: 34
oembed_cache: 23
page: 38
post: 402
product: 3
revision: 963
tdb_templates: 15
tds_locker: 1
wp_block: 5
wp_global_styles: 1
wp_navigation: 1

### Security ###

Secure connection (HTTPS): ✔
Hide errors from visitors: ✔

### Active Plugins (28) ###

Ads.txt Manager: by 10up – 1.4.3
AirLift: by AirLift – 5.54
Akismet Anti-spam: Spam Protection: by Automattic - Anti-spam Team – 5.3.2
Bing Webmaster Url Submission: by Bing Webmaster – 1.0.13
Smash Balloon Custom Facebook Feed: by Smash Balloon – 4.2.4
Instant Indexing: by Rank Math – 1.1.18
WordPress.com Editing Toolkit: by Automattic – 4.20606
GN Publisher: by Chris Andrews – 1.5.14
Google Listings and Ads: by WooCommerce – 2.6.8
Site Kit by Google: by Google – 1.125.0
GTranslate: by Translate AI Multilingual Solutions – 3.0.6
Smash Balloon Instagram Feed: by Smash Balloon – 6.3.1
Jetpack: by Automattic – 13.4-a.3
Layout Grid: by Automattic – 1.8.4
MailPoet: by MailPoet – 4.49.0
Pinterest for WooCommerce: by WooCommerce – 1.4.0
Rank Math SEO PRO: by Rank Math – 3.0.60
Rank Math SEO with AI Best SEO Tools: by Rank Math – 1.0.217
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 Opt-In Builder: by tagDiv – 1.5.3 | built on 11.03.2024 11:04
tagDiv Shop: by tagDiv – 2.2| built on 18.04.2024 12:54
WooCommerce.com Update Manager: by Automattic – 1.0.2
WooCommerce Stripe Gateway: by WooCommerce – 8.2.0
WooCommerce PayPal Payments: by WooCommerce – 2.6.1
WooCommerce: by Automattic – 8.8.2
WP Consent API: by RogierLankhorst – 1.0.7

### Inactive Plugins (0) ###

### Dropin Plugins () ###

advanced-cache.php: advanced-cache.php
object-cache.php: Memcached

### Must Use Plugins (1) ###

WP.com Site Helper: by  –

### Settings ###

API Enabled: –
Force SSL: –
Currency: INR (₹)
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: ✔
HPOS feature screen enabled: ✔
HPOS feature enabled: ✔
Order datastore: Automattic\WooCommerce\Internal\DataStores\Orders\OrdersTableDataStore
HPOS data sync enabled: –

### Logging ###

Enabled: ✔
Handler: Automattic\WooCommerce\Internal\Admin\Logging\LogHandlerFileV2
Retention period: 30 days
Level threshold: –
Log directory size: 78 B

### WC Pages ###

Shop base: #4200 - /shop/
Cart: #4201 - /cart/
Checkout: #4202 - /checkout/
My account: #4203 - /my-account/
Terms and conditions: ❌ Page not set

### 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
/srv/htdocs/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
/srv/htdocs/wp-content/plugins/td-woo/templates/woocommerce/checkout/form-checkout.php
Newspaper/woocommerce/single-product.php

Outdated Templates: ❌
					
					
						Learn how to update

### WooCommerce PayPal Payments ###

Onboarded: ✔
Shop country code: IN
WooCommerce currency supported: –
Advanced Card Processing available in country: –
Pay Later messaging available in country: –
Webhook status: –
PayPal Vault enabled: –
ACDC Vault enabled: –
Logging enabled: –
Reference Transactions: –
Used PayPal Checkout plugin: –
Subscriptions Mode: Disabled

### 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-04-30 04:17:43 +05:30
Options: ✔
Notes: 60
Onboarding: completed

### MailPoet ###

Sending Method: MailPoet
Send all site's emails with: Current sending method
Task Scheduler method: Action Scheduler
Cron ping URL: https://newspatron.com?mailpoet_router&endpoint=cron_daemon&action=ping

### Action Scheduler ###

Complete: 17,020
Oldest: 2024-04-05 00:44:09 +0000
Newest: 2024-04-29 04:47:19 +0000

Failed: 3
Oldest: 2024-03-12 11:57:46 +0000
Newest: 2024-04-29 04:19:12 +0000

Pending: 8
Oldest: 2024-04-29 04:49:19 +0000
Newest: 2024-05-07 00:01:46 +0000

### Status report information ###

Generated at: 2024-04-29 10:18:56 +05:30
Calin
tagDiv Staff

Hi wizardoz28, I understand what you mean, you are referring to this – https://www.advancedcustomfields.com/resources/conditional-logic/ unfortunately for the moment that option for logic is working only on backend.
Thank you!

info@simonebarbone.net
tagDiv Member

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

ACAD
tagDiv Member

Dear Support Team,

I have purchased the Momentum Pro theme with the intention of using the template displayed at the following link: https://demo.tagdiv.com/newspaper_momentum_pro/tdcpt_case_studies/personal-trainer-shop/. However, I am encountering difficulties in setting it up correctly, despite having installed the ACF plugin.

I would like to request a detailed tutorial on how to use this template. I am having trouble replicating it using ACF and CPT (Advanced Custom Fields and Custom Post Types). I would greatly appreciate your assistance in making the most of the product I have purchased.

I look forward to your guidance and thank you for your prompt help.

Sincerely,
Cristian

nolandolce
tagDiv Member

Hi Calin,

I figured out a workaround, furthering through the initial instructions from HeritageLab. This workaround means I don’t need to install the advanced fields plug-in.

In the custom field value box, I simply include:
(<)img src=”” alt=”” width=”20″ height=”20″ border-radius=”50%”(>) Medically Reviewed by (<)a href=””(>)(<)b(>)(name)(<)/b(>)(<)/a(>), (title)

You can see the example here: https://rareparenting.com/what-is-occupational-therapy-for-children/

The only problem is that the border radius isn’t working. Could you let me know how to update this so it works?

Also, the alignment of the custom field also doesn’t work, within the TagDiv designer. It horizontally aligns but the vertical alignment doesn’t work. Any ideas about this?

Overall, this does mean a lot of work per-post, so it would be great if the theme can be updated to accommodate guest authors, multiple authors, and two rows.

Thanks!

Hindistack
Participant
#0

Hello,
Is it possible to implement a filter for the ‘flex block/flex loop’ using an ACF (Advanced Custom Fields) select field? For example, if I select ‘Book’ from the select field, could I configure it to display only posts related to books within the ‘flex block/flex loop’?

Thanks in Advance

NickDeBaerdemaeker
tagDiv Member

hi,

this is a post in the category album review.
We want to have the album cover artwork to be uploaded in the featured image section.
With the Advanced custom fields, we have added the option to upload an extra image with the field name “camera eye”.

Basically, when the post, which is in the album category, also has the category featured checked, we want to have the second image displayed that was uploaded in the advanced custom fields field called “camera eye”, but only in the block that is used in the featured section.

request

Basically, this can be done on the single post templates, as per photo below.
I’ve opted for the custom field to be displayed on the top right, instead of the featured image for this category.

It would come down to the option for the flex block on the front page, to be able to select between featured image or the custom field. While I know this isn’t an option today and likely won’t be any time soon, I was hoping how this could be achieved for just the flex block in the featured image for the album review category.

template
I hope this makes any sense…

Ahmet Hakan Kablama
tagDiv Member

I am using ACF plugin. -> ACP plugin

ACP plugin

I have added Link and Text.

link

I can’t do what you say, (https://i.imgur.com/8an3SfI.png ) it won’t let me choose. Other tools are fine, but the “Link” tool has.

NickDeBaerdemaeker
Participant
#0

Hello,

we would like to request if the following is possible.

For our album reviews we set the cover artwork as featured image, with an additional image uploaded using the advanced custom fields plugin. This image uploaded through the extra image field “camera eye” is then later loaded on the post page, referencing this field.

However if an album deserves additional attention, it gets a second category besides “Album”, namely “featured” and as such the article is displayed on the front page with a larger image to attract more readers.

We would like to know if it is possible somehow to only display the image uploaded in the camera field there, instead of the featured image ? We use flex block 2 and flex block 1.

So basically what I’m trying to achieve is that flex block 2 and flex block 1, if an article is in the category of Music AND featured, to use the image uploaded in the field “camera eye” instead of the image uploaded in the featured image.

Later on the front page the albums have their own section, and there we would like to show the cover artwork in a smaller form, hence falling back on the regular “featured image”
Hoping this makes sense

Nick.

Atithya
Participant
#0

Hi, I have created two forms using ACF on the website. I am facing 2 issues

1. The users are not able to use forms, They can’t add names, country, email
2. When the user log in the form disappears on the same url and once logged out, the forms again shows up.

Bettina
tagDiv Staff

Hello @artsetsu !

At the moment, we do not have any archive templates for CPT, ACF or custom taxonomies.
Check this: https://www.advancedcustomfields.com/resources/creating-wp-archive-custom-field-filter/ and this: https://www.acf-extended.com/features/field-groups/locations/post-type-archive

I hope that helps you!

Thank you!

Calin
tagDiv Staff

Hi,
“Is there a resource that shows all of the plugins that Newspaper supports?” – do you mean if there is a plugin that can do this can is also working with our theme? Unfortunately, we do not know this because we didn’t test this kind of plugins, but, I think that using ACF and CPT it can be achieved and those are supported by our theme.
Thank you!

Bettina
tagDiv Staff

Hello @artetsu!

The URL field it will take only the URL. Check this guide: https://support.advancedcustomfields.com/forums/topic/acf-field-inside-button/
Or try like this: https://prnt.sc/OE7EXR-CG4os

I hope that helps you!

Thank you!

vikashkunwar
Participant
#0

When I install Prebuilt website not installing MOMENTUM PRO then show error please install Advanced Custom Fields plugin manually but in plugins section Advanced Custom Fields in not available please solve.

Viewing 25 results - 26 through 50 (of 273 total)