티스토리 수익 글 보기
Updated and now, Elementor pro isnt detected despite updating that too, instead in the elementor dashboard, had to roll back to version 3.34.0. Tried on both a production and fresh install.
]]>Fatal error after updating to Elementor 3.34.2. The website is still working, but WordPress cannot be accessed; it shows a fatal error.
]]>Hello Elementor Support Team,
I am experiencing a persistent visual bug with the Video Playlist widget (Elementor Pro) on a two-column layout: main video player on the left, playlist list on the right (narrower column).
Description of the issue:
The playlist list (right side) appears “truncated” with white/blank spaces during vertical scrolling:
- At the initial load: bottom part of the list is white/blank (videos missing).
- When scrolling to the middle: both top and bottom parts show white spaces.
- At the end of the list: top part is white/blank.
This is a rendering/repaint glitch — the items are there (you can sometimes see them flicker), but white zones replace parts of the list during scroll. It happens consistently on desktop (Chrome/Firefox), even in incognito mode.
Steps to reproduce:
- Add Video Playlist widget to a page.
- Use YouTube videos (multiple items in the playlist).
- Set layout to two columns: video player left, playlist tabs right.
- Save and view the page frontend.
- Scroll the playlist vertically — white/blank areas appear at top/bottom depending on scroll position.
Console errors (from browser dev tools, incognito):
- Uncaught (in promise) TypeError: this.playerObject.h.addEventListener is not a function
at playerYoutube.handleFullScreenChange (video-playlist.[hash].bundle.min.js:2:20239) - Failed to execute ‘postMessage’ on ‘DOMWindow’: The target origin provided (‘https://www.youtube.com‘) does not match the recipient window’s origin (site origin). (This is secondary/warning)
What I’ve already tried (without success):
- Full update of Elementor + Pro + regenerate CSS & data
- Clear all caches (browser, server, any caching plugins disabled)
- Disable experiments (Improved Asset Loading, Optimized DOM Output, Inline Font Icons, etc.)
- Custom CSS overrides for .e-tabs-items-wrapper (overflow-y: scroll, transform: translate3d(0,0,0), will-change, etc.)
- JS override to skip fullscreenchange listener (no resolution)
- Tested in incognito, multiple browsers
The bug seems directly tied to the YouTube player initialization + IntersectionObserver/lazy load timing, causing incomplete UI refresh and scroll rendering issues.
Could you please investigate if there’s a patch, hotfix, or confirmed resolution for this in recent versions? Or advise on a reliable workaround (e.g., forcing player ready state or alternative embed)?
Thank you for your help.
]]>Hello,
I am experiencing an issue with the contact form on my website.
The form is built with Elementor and is set to send submissions to info@mydomain.com, which is an email address created via my hosting account (not Gmail). Previously, the contact form emails were delivered correctly, but they are no longer arriving.
There is no error message when the form is submitted, and the form appears to send successfully, but the emails are not received (also not in spam).
I would like to know:
- Whether the server is correctly configured to send emails (PHP mail or SMTP)
- If SPF, DKIM, and DMARC records are correctly set for my domain
- Whether outgoing emails from WordPress are being blocked or restricted
- If you recommend using SMTP instead of PHP mail, and if so, which settings should be used
Please let me know what could be causing this issue and how it can be resolved.
Thank you in advance for your help.
Kind regards,
Donadoni Petter
Good morning,I have been working with elementor and Astra but I’ve had a problem for a few days now. My CSS used to work perfectly, but now I need to update a rule, and when I do it through the Astra CSS customizer, the rule doesn’t apply to the design and does not appear in Google Dev Tools after the elementor update
]]>5 new pages built with Elementor are duplicating the content made in the Elementor builder: screenshot.
Help appreciated.
]]>Hi,
I want to highlight that even though I have disabled all sharing settings I see this API request being made on every page which unnecessarily slows down the website.
GET https://assets.elementor.com/mixpanel/v1/mixpanel.json
Elementor\C\C\M\E\Module::get_remote_mixpanel_config()
I have version 3.34.1.
https://wordpress.org/support/topic/usage-tracking-even-when-data-sharing-is-off-3-34-0/
]]>Hello Elementor Team,
We’re experiencing an issue after Elementor v3.33.3 release that affects our site builder header functionality.
Problem: Our custom site builder header breaks on Elementor pages. After investigation, we found that Elementor disables WordPress template buffering with this code:
if ( version_compare( get_bloginfo( 'version' ),'6.9', '>=' ) ){add_filter( 'wp_should_output_buffer_template_for_enhancement', '__return_false', 1 ); }
This prevents our site builder header from rendering correctly. We’ve also noticed that Astra’s site builder faces a similar issue with this filter, suggesting this may affect other theme/plugin builders that rely on WordPress template buffering. This appears to be a broader compatibility concern.
Our Solution: We’re re-enabling buffering when our site builder header is active. However, we’re concerned this might break some Elementor functionality, as we’re not sure why you introduced this change in the first place.
]]>On januari 1st i updatet elementor on my website from version 3.33.2 to 3.34.0.
Today january 7th my website crashed. See dump below.
The website is using the Mesmerize Pro template in combination with Elementor.
PHP version is 8.3.27 and WP 6.9
After a restore to december 31 the website is back online.
= = = = =
Page of crashed website
= = = = =
&E# 5g &E# 5 &E# 6 &E# 7 &E# 7 &E# 0G &E# 1' &E# 1 &E# 2g &E# 2 &E# 3 &E# < &E# < &E# =G &E# >' &E# > &E# ?g &E# ? &E# 8 &E# 9 &E# 9 &E# :G &E# ;' e( $widget ) { if ( in_array( 'wordpress', $widget->get_categories() ) ) { // phpcs:ignore WordPress.WP.CapitalPDangit.MisspelledInText return esc_html__( 'WordPress Widgets', 'elementor' ); } $class_reflection = new \ReflectionClass( $widget ); $plugin_basename = plugin_basename( $class_reflection->getFileName() ); $plugin_directory = strtok( $plugin_basename, '/' ); $plugins_data = get_plugins( '/' . $plugin_directory ); $plugin_data = array_shift( $plugins_data ); return $plugin_data['Name'] ?? esc_html__( 'Unknown', 'elementor' ); } public function ajax_save_disabled_elements() { $this->verify_permission(); $elements = Utils::get_super_global_value( $_POST, 'widgets' ); // phpcs:ignore WordPress.Security.NonceVerification.Missing if ( empty( $elements ) ) { wp_send_json_error( esc_html__( 'No elements to save.', 'elementor' ) ); } $disabled_elements = json_decode( $elements ); if ( ! is_array( $disabled_elements ) ) { wp_send_json_error( esc_html__( 'Unexpected elements data.', 'elementor' ) ); } Options::update_disabled_elements( $disabled_elements ); do_action( 'elementor/element_manager/save_disabled_elements' ); wp_send_json_success(); } public function ajax_get_widgets_usage() { $this->verify_permission(); /** @var Usage_Module $usage_module */ $usage_module = Usage_Module::instance(); $usage_module->recalc_usage(); $widgets_usage = []; foreach ( $usage_module->get_formatted_usage( 'raw' ) as $data ) { foreach ( $data['elements'] as $element => $count ) { if ( ! isset( $widgets_usage[ $element ] ) ) { $widgets_usage[ $element ] = 0; } $widgets_usage[ $element ] += $count; } } wp_send_json_success( $widgets_usage ); } }
]]>
Hi guys!
After updating Elementor to 3.34.0, I found a syntax error in a line inside elementor/css/post-2.css:
.elementor-2 .elementor-element.elementor-element-e0bd076 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute) {
margin-block-end: : 5px;
}
It looks like there’s an extra colon. It should be:
margin-block-end: 5px;
Because of this extra colon, all websites are now showing much larger margins between text elements. I hope you can fix this as soon as possible. Thank you!
]]>We are using addify’s Custom User Registration Fields for WooCommerce plugin to get some details from customers. in this scenario when the customer select parent carer as option from the drop down menu, the file upload filed will enable. After updated the elementor resent version, it is not working. when i contacted the support team, they said that all the functionalities are matching. and asked to contact elementor for more help.
Status report:
` WordPress Environment</p> <p>WordPress address (URL): https://sendelightgifts.com<br>Site address (URL): https://sendelightgifts.com<br>WC Version: 10.4.3<br>Legacy REST API Package Version: The Legacy REST API plugin is not installed on this site.<br>Action Scheduler Version: ✔ 3.9.3<br>Log Directory Writable: ✔<br>WP Version: 6.9<br>WP Multisite: –<br>WP Memory Limit: 1 GB<br>WP Debug Mode: –<br>WP Cron: –<br>Language: en_GB<br>External object cache: – Server Environment</p> <p>Server Info: Apache<br>Server Architecture: Linux 4.18.0-553.80.1.lve.el8.x86_64 x86_64<br>PHP Version: 8.3.27<br>PHP Post Max Size: 32 MB<br>PHP Time Limit: 300<br>PHP Max Input Vars: 5000<br>cURL Version: 8.14.1<br>OpenSSL/1.1.1w</p> <p>SUHOSIN Installed: –<br>MySQL Version: 10.6.23-MariaDB-cll-lve<br>Max Upload Size: 32 MB<br>Default Timezone is UTC: ✔<br>fsockopen/cURL: ✔<br>SoapClient: ✔<br>DOMDocument: ✔<br>GZip: ✔<br>Multibyte String: ✔<br>Remote Post: ✔<br>Remote Get: ✔ Database</p> <p>WC Database Version: 10.4.3<br>WC Database Prefix: wp_<br>Total Database Size: 214.64MB<br>Database Data Size: 174.46MB<br>Database Index Size: 40.18MB<br>wp_woocommerce_sessions: Data: 1.82MB + Index: 0.20MB + Engine MyISAM<br>wp_woocommerce_api_keys: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp_woocommerce_attribute_taxonomies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_woocommerce_downloadable_product_permissions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_woocommerce_order_items: Data: 0.33MB + Index: 0.17MB + Engine MyISAM<br>wp_woocommerce_order_itemmeta: Data: 2.60MB + Index: 1.88MB + Engine MyISAM<br>wp_woocommerce_tax_rates: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_woocommerce_tax_rate_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_woocommerce_shipping_zones: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_woocommerce_shipping_zone_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_woocommerce_shipping_zone_methods: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_woocommerce_payment_tokens: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_woocommerce_payment_tokenmeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_woocommerce_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_actionscheduler_actions: Data: 1.65MB + Index: 1.03MB + Engine MyISAM<br>wp_actionscheduler_claims: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_actionscheduler_groups: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp_actionscheduler_logs: Data: 1.16MB + Index: 0.71MB + Engine MyISAM<br>wp_admin_columns: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_aioseo_cache: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_cartflows_ca_cart_abandonment: Data: 2.52MB + Index: 0.05MB + Engine InnoDB<br>wp_cartflows_ca_email_history: Data: 0.06MB + Index: 0.06MB + Engine InnoDB<br>wp_cartflows_ca_email_templates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_cartflows_ca_email_templates_meta: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_check_email_error_logs: Data: 0.13MB + Index: 0.00MB + Engine InnoDB<br>wp_check_email_log: Data: 1.52MB + Index: 0.00MB + Engine InnoDB<br>wp_check_email_spam_analyzer: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_cky_banners: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_cky_cookies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_cky_cookie_categories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_cleantalk_ac_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_cleantalk_connection_reports: Data: 0.06MB + Index: 0.00MB + Engine InnoDB<br>wp_cleantalk_sessions: Data: 2.02MB + Index: 0.00MB + Engine InnoDB<br>wp_cleantalk_sfw: Data: 1.52MB + Index: 1.52MB + Engine InnoDB<br>wp_cleantalk_sfw_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_cleantalk_sfw_personal: Data: 17.52MB + Index: 15.55MB + Engine InnoDB<br>wp_cleantalk_spamscan_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_cleantalk_ua_bl: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_cleantalk_wc_spam_orders: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_commentmeta: Data: 0.04MB + Index: 0.04MB + Engine MyISAM<br>wp_comments: Data: 1.65MB + Index: 0.74MB + Engine MyISAM<br>wp_e_events: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_gla_attribute_mapping_rules: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_gla_budget_recommendations: Data: 0.10MB + Index: 0.12MB + Engine MyISAM<br>wp_gla_merchant_issues: Data: 0.06MB + Index: 0.01MB + Engine MyISAM<br>wp_gla_merchant_price_benchmarks: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_gla_shipping_rates: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_gla_shipping_times: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_links: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_nextend2_image_storage: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_nextend2_section_storage: Data: 0.05MB + Index: 0.06MB + Engine InnoDB<br>wp_nextend2_smartslider3_generators: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_nextend2_smartslider3_sliders: Data: 0.06MB + Index: 0.03MB + Engine InnoDB<br>wp_nextend2_smartslider3_sliders_xref: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_nextend2_smartslider3_slides: Data: 0.05MB + Index: 0.11MB + Engine InnoDB<br>wp_ngg_album: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_ngg_gallery: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_ngg_pictures: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_nmgr_wishlist_items: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_options: Data: 10.63MB + Index: 1.39MB + Engine MyISAM<br>wp_pmpro_discount_codes: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_pmpro_discount_codes_levels: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_pmpro_discount_codes_uses: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_pmpro_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_pmpro_memberships_categories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_pmpro_memberships_pages: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_pmpro_memberships_users: Data: 0.02MB + Index: 0.09MB + Engine InnoDB<br>wp_pmpro_membership_levelmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_pmpro_membership_levels: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_pmpro_membership_levels_groups: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_pmpro_membership_ordermeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_pmpro_membership_orders: Data: 0.02MB + Index: 0.20MB + Engine InnoDB<br>wp_pmpro_subscriptionmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_pmpro_subscriptions: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_pmxe_exports: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_pmxe_google_cats: Data: 0.38MB + Index: 0.00MB + Engine InnoDB<br>wp_pmxe_posts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_pmxe_templates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_pmxi_files: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_pmxi_hash: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_pmxi_history: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_pmxi_images: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_pmxi_imports: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_pmxi_posts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_pmxi_templates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_postmeta: Data: 40.00MB + Index: 4.23MB + Engine MyISAM<br>wp_posts: Data: 43.29MB + Index: 0.74MB + Engine MyISAM<br>wp_prevent_direct_access_free: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_rank_math_404_logs: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_rank_math_internal_links: Data: 1.48MB + Index: 0.45MB + Engine InnoDB<br>wp_rank_math_internal_meta: Data: 0.08MB + Index: 0.00MB + Engine InnoDB<br>wp_rank_math_redirections: Data: 0.11MB + Index: 0.02MB + Engine InnoDB<br>wp_rank_math_redirections_cache: Data: 0.08MB + Index: 0.02MB + Engine InnoDB<br>wp_revslider_css: Data: 0.09MB + Index: 0.01MB + Engine MyISAM<br>wp_revslider_css_bkp: Data: 0.01MB + Index: 0.00MB + Engine MyISAM<br>wp_revslider_layer_animations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_revslider_layer_animations_bkp: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_revslider_navigations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_revslider_navigations_bkp: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_revslider_sliders: Data: 0.06MB + Index: 0.00MB + Engine MyISAM<br>wp_revslider_sliders7: Data: 0.08MB + Index: 0.02MB + Engine InnoDB<br>wp_revslider_sliders_bkp: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_revslider_slides: Data: 0.26MB + Index: 0.00MB + Engine MyISAM<br>wp_revslider_slides7: Data: 0.34MB + Index: 0.02MB + Engine InnoDB<br>wp_revslider_slides_bkp: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_revslider_static_slides: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_revslider_static_slides_bkp: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_smush_dir_images: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_termmeta: Data: 0.22MB + Index: 0.16MB + Engine MyISAM<br>wp_terms: Data: 0.16MB + Index: 0.35MB + Engine MyISAM<br>wp_term_relationships: Data: 0.32MB + Index: 0.68MB + Engine MyISAM<br>wp_term_taxonomy: Data: 0.17MB + Index: 0.15MB + Engine MyISAM<br>wp_usermeta: Data: 2.98MB + Index: 1.61MB + Engine MyISAM<br>wp_users: Data: 0.13MB + Index: 0.12MB + Engine MyISAM<br>wp_wcpdf_invoice_number: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_packing_slip_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_admin_notes: Data: 0.06MB + Index: 0.00MB + Engine MyISAM<br>wp_wc_admin_note_actions: Data: 0.03MB + Index: 0.01MB + Engine MyISAM<br>wp_wc_category_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_wc_customer_lookup: Data: 0.08MB + Index: 0.07MB + Engine MyISAM<br>wp_wc_download_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_wc_orders: Data: 0.30MB + Index: 0.18MB + Engine MyISAM<br>wp_wc_orders_meta: Data: 3.48MB + Index: 3.68MB + Engine MyISAM<br>wp_wc_order_addresses: Data: 0.27MB + Index: 0.16MB + Engine MyISAM<br>wp_wc_order_coupon_lookup: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp_wc_order_operational_data: Data: 0.17MB + Index: 0.08MB + Engine MyISAM<br>wp_wc_order_product_lookup: Data: 0.41MB + Index: 0.56MB + Engine MyISAM<br>wp_wc_order_stats: Data: 0.09MB + Index: 0.10MB + Engine MyISAM<br>wp_wc_order_tax_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_wc_product_attributes_lookup: Data: 0.02MB + Index: 0.03MB + Engine MyISAM<br>wp_wc_product_download_directories: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp_wc_product_meta_lookup: Data: 0.10MB + Index: 0.16MB + Engine MyISAM<br>wp_wc_rate_limits: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine MyISAM<br>wp_wc_tax_rate_classes: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp_wc_webhooks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp_wdr_order_discounts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wdr_order_item_discounts: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_wdr_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wfauditevents: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wfblockediplog: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wfblocks7: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_wfconfig: Data: 1.14MB + Index: 0.00MB + Engine InnoDB<br>wp_wfcrawlers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wffilechanges: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wffilemods: Data: 16.55MB + Index: 0.00MB + Engine InnoDB<br>wp_wfhits: Data: 2.02MB + Index: 0.20MB + Engine InnoDB<br>wp_wfhoover: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wfissues: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_wfknownfilelist: Data: 7.52MB + Index: 0.00MB + Engine InnoDB<br>wp_wflivetraffichuman: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wflocs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wflogins: Data: 0.33MB + Index: 0.11MB + Engine InnoDB<br>wp_wfls_2fa_secrets: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wfls_role_counts: Data: 0.00MB + Index: 0.00MB + Engine MEMORY<br>wp_wfls_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wfnotifications: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wfpendingissues: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_wfreversecache: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wfsecurityevents: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wfsnipcache: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_wfstatus: Data: 0.27MB + Index: 0.16MB + Engine InnoDB<br>wp_wftrafficrates: Data: 0.08MB + Index: 0.00MB + Engine InnoDB<br>wp_wfwaffailures: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wpfm_backup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wpforms_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wpforms_payments: Data: 0.02MB + Index: 0.14MB + Engine InnoDB<br>wp_wpforms_payment_meta: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_wpforms_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wpmailsmtp_debug_events: Data: 2.52MB + Index: 0.00MB + Engine InnoDB<br>wp_wpmailsmtp_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wpr_rocket_cache: Data: 1.52MB + Index: 0.64MB + Engine InnoDB<br>wp_wpr_rucss_used_css: Data: 0.02MB + Index: 0.09MB + Engine InnoDB<br>wp_wt_iew_action_history: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wt_iew_mapping_template: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wt_sc_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_yith_wcwl: Data: 0.01MB + Index: 0.01MB + Engine MyISAM<br>wp_yith_wcwl_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_yith_wcwl_lists: Data: 0.00MB + Index: 0.01MB + Engine MyISAM Post Type Counts</p> <p>addf_gift_registry: 5<br>afreg_fields: 2<br>attachment: 1966<br>bzotech_courses: 6<br>bzotech_footer: 12<br>bzotech_header: 12<br>bzotech_mega_item: 17<br>cc_restriction: 1<br>custom_css: 2<br>customize_changeset: 3<br>def_reg_fields: 10<br>display_type: 7<br>elementor_library: 1<br>mc4wp-form: 1<br>mt_pp: 2<br>nav_menu_item: 42<br>nm_gift_registry: 2<br>page: 88<br>popup: 3<br>popup_theme: 8<br>post: 37<br>product: 704<br>product_variation: 258<br>revision: 1402<br>rm_content_editor: 1<br>shop_coupon: 36<br>shop_order_placehold: 1174<br>sp_wcslider: 2<br>wccs_showcase: 2<br>wp_navigation: 1<br>wp_template: 2<br>wpcf7_contact_form: 4<br>wpcode: 5<br>yith_price_rule: 1 Security</p> <p>Secure connection (HTTPS): ✔<br>Hide errors from visitors: ✔ Active Plugins (43)</p> <p>Cost of Goods: Product Cost & Profit Calculator for WooCommerce Pro: by WPFactory – 3.6.5<br>WP Rocket: by WP Media – 3.12.3.3<br>Bzotech Core: by BZOTech – 1.5<br>Bzotech Elementor: by BZOTech – 1.4<br>Anti-Spam by CleanTalk: by CleanTalk – Anti-Spam Protection – 6.70.1<br>Contact Form 7: by Rock Lobster Inc. – 6.1.4<br>Duplicate Page: by mndpsingh287 – 4.5.6<br>Elementor: by Elementor.com – 3.34.0<br>Gift Wrapping for WooCommerce: by Pexle Chris & Theo Gkitsos – 1.2.4<br>Google for WooCommerce: by WooCommerce – 3.5.1<br>MC4WP: Mailchimp for WordPress: by ibericode – 4.10.9<br>Popup Maker: by Popup Maker – 1.21.5<br>Redux Framework: by Team Redux – 4.5.9<br>Slider Revolution: by ThemePunch – 6.7.40<br>Role Based Pricing for WooCommerce: by Addify – 2.2.1<br>Coupons Role Restriction for WooCommerce: by runthingsdev – 1.1.2<br>Rank Math SEO: by Rank Math SEO – 1.0.261<br>Simple Page Access Restriction: by Plugins & Snippets – 1.0.33<br>WooCommerce Tiered Price Table: by U2Code – 5.5.1<br>Ultra Addons for Contact Form 7: by Themefic – 3.5.34<br>Custom User Registration Fields for WooCommerce: by Addify – 2.2.0<br>User Role Editor: by Vladimir Garagulya – 4.64.6<br>Users Registration Date: by Slava Abakumov – 1.0.1<br>Category Showcase: by PluginEver – 2.2.7<br>WC Hide Shipping Methods: by WPExperts – 2.0.5<br>Cart Abandonment Recovery for WooCommerce: by Brainstorm Force – 2.0.5<br>Free Shipping Per Product for WooCommerce: by WPRuby – 1.3.4<br>WPC Product Bundles for WooCommerce (Premium): by WPClever – 8.4.2<br>WooCommerce.com Update Manager: by Automattic – 1.0.3<br>Variation Swatches for WooCommerce: by Emran Ahmed – 2.2.2<br>Custom Mix & Match Product Boxes: by Extendons – 1.3.8<br>WooCommerce Stripe Gateway: by Stripe – 10.2.0<br>Google Analytics for WooCommerce: by WooCommerce – 2.1.19<br>WooCommerce PayPal Payments: by PayPal – 3.3.1<br>PDF Invoices & Packing Slips for WooCommerce: by WP Overnight – 5.4.0<br>WooCommerce Shipping: by WooCommerce – 2.0.2<br>WooCommerce: by Automattic – 10.4.3<br>WP Crontrol: by John Blackbourn – 1.20.0<br>WP File Manager: by mndpsingh287 – 8.0.2<br>WP Mail SMTP: by WP Mail SMTP – 4.7.1<br>WP Rollback: by WP Rollback – 3.0.10<br>WPForms Lite: by WPForms – 1.9.8.7<br>Smart Coupons For WooCommerce Coupons: by WebToffee – 2.2.6 Inactive Plugins (0) Dropin Plugins ()</p> <p>advanced-cache.php: advanced-cache.php Must Use Plugins (1)</p> <p>WP STAGING Optimizer: by WP STAGING – 1.6.0 Settings</p> <p>Legacy API Enabled: –<br>Force SSL: –<br>Currency: GBP (£)<br>Currency Position: left<br>Thousand Separator: ,<br>Decimal Separator: .<br>Number of Decimals: 2<br>Taxonomies: Product Types: external (external)<br>grouped (grouped)<br>simple (simple)<br>variable (variable)<br>wooextmm (wooextmm)<br>woosb (woosb)</p> <p>Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)<br>exclude-from-search (exclude-from-search)<br>featured (featured)<br>outofstock (outofstock)<br>rated-1 (rated-1)<br>rated-2 (rated-2)<br>rated-3 (rated-3)<br>rated-4 (rated-4)<br>rated-5 (rated-5)</p> <p>Connected to WooCommerce.com: ✔<br>Enforce Approved Product Download Directories: ✔<br>HPOS feature enabled: ✔<br>Order datastore: Automattic\WooCommerce\Internal\DataStores\Orders\OrdersTableDataStore<br>HPOS data sync enabled: –<br>Enabled Features: analytics<br>marketplace<br>order_attribution<br>site_visibility_badge<br>remote_logging<br>email_improvements<br>blueprint<br>point_of_sale<br>custom_order_tables Logging</p> <p>Enabled: ✔<br>Handler: Automattic\WooCommerce\Internal\Admin\Logging\LogHandlerFileV2<br>Retention period: 30 days<br>Level threshold: –<br>Log directory size: 20 MB WC Pages</p> <p>Shop base: #7 – /shop/<br>Basket: #8 – /basket/ – Contains the [woocommerce_cart] shortcode<br>Checkout: #9 – /checkout/ – Contains the [woocommerce_checkout] shortcode<br>My account: #10 – /my-account/ – Contains the [woocommerce_my_account] shortcode<br>Terms and conditions: #24247 – /terms-and-conditions/ Theme</p> <p>Name: Bw KidXtore Child<br>Version: 1.5<br>Author URL: #<br>Child Theme: ✔<br>Parent Theme Name: Bw KidXtore<br>Parent Theme Version: 3.0<br>Parent Theme Author URL: https://bzotech.com/<br>Theme type: Classic theme<br>WooCommerce Support: ✔ Templates</p> <p>Overrides: bw-kidxtore/woocommerce/cart/cart.php version 7.9.0 is out of date. The core version is 10.1.0<br>bw-kidxtore/woocommerce/cart/mini-cart.php version 9.2.0 is out of date. The core version is 10.0.0<br>bw-kidxtore/woocommerce/content-product.php version 3.6.0 is out of date. The core version is 9.4.0<br>bw-kidxtore/woocommerce/content-single-product.php<br>bw-kidxtore/woocommerce/global/quantity-input.php version 7.8.0 is out of date. The core version is 10.1.0<br>bw-kidxtore/woocommerce/loop/loop-end.php<br>bw-kidxtore/woocommerce/loop/loop-start.php<br>bw-kidxtore/woocommerce/myaccount/form-login.php version 9.2.0 is out of date. The core version is 9.9.0<br>bw-kidxtore/woocommerce/single-product/add-to-cart/grouped.php version 7.0.1 is out of date. The core version is 10.2.0<br>bw-kidxtore/woocommerce/single-product/add-to-cart/simple.php version 7.0.1 is out of date. The core version is 10.2.0<br>bw-kidxtore/woocommerce/single-product/add-to-cart/variable.php version 6.1.0 is out of date. The core version is 9.6.0<br>bw-kidxtore/woocommerce/single-product/add-to-cart/variation-add-to-cart-button.php version 7.0.1 is out of date. The core version is 10.2.0<br>bw-kidxtore/woocommerce/single-product/meta.php version 3.0.0 is out of date. The core version is 9.7.0<br>bw-kidxtore/woocommerce/single-product/price.php<br>bw-kidxtore/woocommerce/single-product/rating.php<br>bw-kidxtore/woocommerce/single-product-reviews.php version 4.3.0 is out of date. The core version is 9.7.0<br>bw-kidxtore/woocommerce/content-product_cat.php</p> <p>Outdated Templates: ❌</p> <pre class=”wp-block-code”><code> Learn how to update | Clear system status theme info cache</code></pre> <p>WooCommerce Stripe Payment Gateway</p> <p>Version: 10.2.0<br>Account ID: acct_1PMCyeEo9xOjmB0i<br>Test Mode Enabled: ✔<br>No<br>OAuth Connected: No<br>Sync Enabled: No<br>Optimized Checkout Enabled: No<br>Enabled Payment Methods: card<br>Express Checkout: ✔<br>Enabled (product,cart)<br>Auth and Capture: ✔<br>Yes<br>Logging: ✔<br>Yes WooCommerce PayPal Payments</p> <p>Onboarded: ✔<br>Branded only: –<br>New UI active: –<br>Shop country code: GB<br>WooCommerce currency supported: ✔<br>Advanced Card Processing available in country: ✔<br>Pay Later messaging available in country: ✔<br>Webhook status: ✔<br>PayPal Vault enabled: –<br>ACDC Vault enabled: –<br>Logging enabled: –<br>Reference Transactions: –<br>Used PayPal Checkout plugin: –<br>Subscriptions Mode: Disabled<br>PayPal Shipping Callback: –<br>Apple Pay: –<br>Google Pay: –<br>Fastlane: – Admin</p> <p>Enabled Features: activity-panels<br>analytics<br>product-block-editor<br>experimental-iapi-mini-cart<br>coupons<br>core-profiler<br>customize-store<br>customer-effort-score-tracks<br>import-products-task<br>experimental-fashion-sample-products<br>shipping-smart-defaults<br>shipping-setting-tour<br>homescreen<br>marketing<br>mobile-app-banner<br>onboarding<br>onboarding-tasks<br>pattern-toolkit-full-composability<br>product-custom-fields<br>remote-inbox-notifications<br>remote-free-extensions<br>payment-gateway-suggestions<br>printful<br>shipping-label-banner<br>subscriptions<br>store-alerts<br>transient-notices<br>woo-mobile-welcome<br>wc-pay-promotion<br>wc-pay-welcome-page<br>launch-your-store</p> <p>Disabled Features: product-data-views<br>experimental-blocks<br>experimental-iapi-runtime<br>coming-soon-newsletter-template<br>minified-js<br>product-pre-publish-modal<br>products-catalog-api<br>settings<br>async-product-editor-category-field<br>product-editor-template-system<br>use-wp-horizon<br>rest-api-v4</p> <p>Daily Cron: ✔ Next scheduled: 2026-01-02 15:56:49 +00:00<br>Options: ✔<br>Notes: 155<br>Onboarding: completed Google for WooCommerce</p> <p>Products API Pull: ❌ Disabled<br>Products MC Push: ✔ Enabled<br>Coupons API Pull: ❌ Disabled<br>Coupons MC Push: ✔ Enabled<br>Shipping API Pull: ❌ Disabled<br>Shipping MC Push: ✔ Enabled<br>Settings API Pull: ❌ Disabled<br>Settings MC Push: ✔ Enabled Action Scheduler</p> <p>Complete: 3,517<br>Oldest: 2025-12-06 18:07:47 +0000<br>Newest: 2026-01-06 15:51:50 +0000</p> <p>Failed: 643<br>Oldest: 2024-03-05 16:07:59 +0000<br>Newest: 2026-01-05 15:53:33 +0000</p> <p>Pending: 27<br>Oldest: 2026-01-06 17:50:35 +0000<br>Newest: 2026-01-30 18:46:47 +0000 Tiered Pricing Table</p> <p>Tiered Pricing: Activation date:<br>Tiered Pricing: Seen notifications:<br>Tiered Pricing: Tips hidden: Status report information</p> <p>Generated at: 2026-01-06 16:40:16 +00:00<br>`
]]>Hello,
I’m experiencing a critical routing issue on my WordPress site.
Environment:
- WordPress version: 6.9
- PHP: 8.3
- Server: LiteSpeed (Hostinger)
- Theme: Hello Elementor (child theme)
- Elementor: 3.34.0
- WooCommerce: 10.4.3
Issue:
When WooCommerce is activated, ALL frontend pages return 404 errors, including:
- normal pages (Contact, About, etc.)
- WooCommerce Cart (/cart)
- WooCommerce Checkout (/checkout)
Admin area remains accessible.
Debug logs show the following fatal error triggered when WooCommerce loads:
Call to undefined function Automattic\WooCommerce\Blocks\register_block_template()
This suggests the WordPress core function register_block_template() is not available, even though WordPress reports version 6.9.
If WooCommerce is disabled, all pages immediately work again.
Actions already taken:
- Permalinks flushed multiple times
- Cache cleared
- Theme switched (issue persists)
- Elementor disabled (issue persists)
- Confirmed pages exist and are published
Question:
Is WordPress 6.9 fully compatible with WooCommerce block template registration?
Could this be related to a host-modified or incomplete WordPress core build?
Any guidance on resolving this without downgrading WooCommerce would be appreciated.
Thank you.
]]>Hi Team,
I have a question regarding reCAPTCHA integration.
Our website has several forms that allow users to download slides. When a form is submitted, the information is sent directly to our email. Recently, however, we have started receiving spam submissions through one of our forms. (see here the example)
To prevent an increase in spam, we are looking for a way to block these submissions. While searching for a solution, we found a reCAPTCHA setup guide in the Elementor Help Center. According to the guide, there should be a reCAPTCHA section available under Integrations.
However, when we access the Integrations settings, we are unable to find any reCAPTCHA-related options. (see here the screenshot)
Could you please advise how we can properly set up reCAPTCHA and block spam submissions on our forms? Any guidance on this issue would be greatly appreciated.
Thank you in advance for your support.
]]>Hi,
may i know if WordPress V5.6 and php 5.6, i should download what elementor version?
thank you
]]>Olá,
Estou com um problema recorrente no meu site WordPress ao usar o Elementor (versão gratuita).
Sempre que:
- crio uma página nova
- uso um modelo guardado ou duplico uma página
- adiciono novas secções
- e publico
o layout fica desformatado no frontend (cores, espaçamentos e alinhamentos), apesar de no editor Elementor estar tudo correto.
Já tentei:
- regenerar ficheiros e biblioteca (Elementor → Ferramentas)
- limpar cache
- testar diferentes métodos de CSS
- verificar conflitos óbvios de plugins
O problema acontece sobretudo quando uso modelos guardados e HTML personalizado em algumas secções.
Suspeito de conflito entre:
- CSS dinâmico do Elementor
- o tema ativo
- e/ou plugin de cache
Podem indicar:
- se este é um problema conhecido
- ou se há alguma configuração específica recomendada para evitar que o layout se quebre após a publicação?
Obrigada desde já pela ajuda.
Rita Costa
]]>After updating to latest version of free elementor plugin, the Post Info widget can no longer align to the right. If aligned to the right in the style settings, it aligns to the left. Reverting to previous version returns the widget to it’s correct right alignment.
]]>Hi,
I just updated my elementor free plugin to the latest version (3.34.0). When I log in to my wordpress dashboard, I see this error in the console tab of my browser:

“Access to fetch at … from origin … has been blocked by CORS policy: …“
I did not change anything else in my website (other themes or plugins). This error appears just after updating “elementor free” to the 3.34.0 version. I could see that error in my other sites that use different plugins and themes. Could someone please guide me why this happens and how could I remove that error?
]]>Hello, my site http://www.buttinoni.it has been giving me this error for a few days:
“Elementor data update
The database update process is running in the background. Is it taking a while?”
And if I click to run it, it gives me an error:
A critical error has occurred on this site. Check the incoming emails in the site administrator’s mailbox for instructions. If you continue to have problems, try the support forums.
I also contacted my provider and this is the answer:
Thank you for your reply.
The exact issue that is showing up after the “Update DB data” in Elementor is clicked is:
Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 229855936 bytes) in /home/buttinon/public_html/wp-includes/class-wpdb.php on line 2357
We have noticed such an error before with other clients, and regardless of how much we increase the PHP memory, the error message still stays.
The way our clients resolved that issue was by contacting the support of Elementor, who then looked into the Elementor setup of the site and made configurations, so that the error does not show again.
]]>After updating Elementor to version 3.34.0, my browser warned me there’s tracking content on my website when I’m logged in: api-eu.mixpanel.com.
Data Sharing in Elementor > General > Settings is turned off.
I have searched through Elementor 3.34 Developers Update, the changelog and on the Github repository and there’s no indication that Elementor now connects to Mixpanel analytics and tracks logged in users. I’m wondering is there a way to prevent the website from connecting to Mixpanel when Data Sharing is turned off?
]]>Good morning everyone!
I’m confronted with a very strange issue: I embedded the header image with the highest Res (2583px x 1077px) I could achieve on Photoshop (https://pic.li/YLI3), but still in the Header are, these pictures are still slightly blurry on the screen, even I also set the highest possible image resolution on the website (https://pic.li/YL3l). Someone have an idea, what did I miss here?
]]>Dear Elementor Support Team,
I am reaching out to request technical assistance regarding a critical error on my website. One specific page (Product Page) is triggering a STATUS_BREAKPOINT error in the browser, specifically during the editing process.
Site Environment:
Website URL: https://tradestarpackaging.cn
Affected Page URL: https://tradestarpackaging.cn/wp-admin/post.php?post=473&action=elementor
Problem Description: The website generally functions normally, but I have identified a specific trigger for this crash. The STATUS_BREAKPOINT error occurs specifically when I try to modify the project names within an Accordion widget on my Product page.
Interestingly, other widgets on the same page and other pages on the site are working without any issues. The crash happens only during this specific interaction within the Accordion settings.
Troubleshooting Already Performed: To resolve this, I have already tried the following:
Plugin Conflict Test: Disabled all plugins (including SEO plugins like SureRank).
Regenerate CSS: Used the "Regenerate CSS & Data" tool.
Safe Mode: The error persists even when attempting to edit the Accordion in Elementor's Safe Mode.
Request: Could you please investigate if there is a known bug related to the Accordion widget's title/item editing in recent versions? It seems like a specific JavaScript conflict or memory issue triggered by this widget's data structure.
I can provide temporary administrative access if you need to inspect the backend.
Looking forward to your guidance.
Best regards,
]]>
As soon as I upgrade Elementor to 3.34 version the font icons stopped loading. Elementor 3.33 everythign works fine. Please clarify or share some light on how to resolve this.
alert tried : Elementor > Tool -> Elementor Cache
]]>Hello
I’m new to WordPress recently, after installing Elementor on a freshly installed WordPress Encounter following an error when visiting Elementor Home page.
Warning: Undefined array key “add_ons” in F:\wamp64\www\wp-content\plugins\elementor\modules\home\transformations\filter-plugins.php on line 21
or adding new page:
Warning: Trying to access array offset on null in F:\wamp64\www\wp-content\plugins\elementor\modules\pro-free-trial-popup\module.php on line 118
php version 8.3.28
]]>The Rank Math SEO icon inside Elementor has suddenly become inactive. Refreshing the page does not resolve the issue—the icon remains disabled.
The only temporary fix is using Elementor → Tools → Clear Files & Data, which restores the icon. However, as soon as the page is refreshed again, the problem returns and the SEO icon becomes inactive once more.
I would appreciate your assistance in identifying the root cause of this behavior and providing a permanent solution.
Thank you for your support.
https://drive.google.com/file/d/1laUfjVO3_8r7gEdjj7So17rH6ab8Ezp8/view?usp=sharing
]]>Hi Guys, so i am creating a website for tour experiences. now i have a experience page where i need to add the single product but i am not able to see any of the widgets for woocommerce like product, single product etc i remember there used to be lot of widgets in elementor for woo. these are the pro widgets of elemebtor which you see even without woo

33.4 breaks site layout
]]>I would like to add a minimalist classified ads ( marketplace) page to a WordPress website via a Plug-in – i see the WordPress Plug-in Library has classified ad Plug-ins – but all of these Plug-ins are bloated and have way too many features.
Question; will the Elementor Website Builder Plug-in or another Elementor product provide this solution? Note: 1) Access to the Classified ads Marketplace on my website would require a paid $ membership fee. 2) the idea is to have my site visitors be able to sign up for a membership and be able to post their own items for sale. The classified ads is to sell BMX bike parts – there will only be category in the classified ads Marketplace – A totally stripped down minimalist classified ads marketplace.
]]>Hello,
I just installed elementor. I added shortcode for contact form 7 but form doesn’t appear when page published. I saw you had this problem few days ago, it was resolved with 3.34.4 version but I uploaded 3.36 version and the problem came back… It shows “[contact form id shortcode]” instead the form.
Is there something I can do to resolve the problem or do you need to do an upgrade ?
Thank you !
]]>Hello there, I just updated to the latest version of Elementor and all of a sudden when editing our website / template which looked fantastic till, now adds random 20PX page gaps in between text boxes and headings, on said page. We are having to do with using negative page margins.
]]>Hi, there is a problem with the filter taxonomy, that is, when the items reach the pagination, and the user clicks on the pagination, it does not redirect to the next page (in fact, it redirects to a page that includes all items, not the page filtered by the filter taxonomy)
For example:
I have a mobile store
Now I click on the filter taxonomy and I see the mobiles of a specific brand (for example, Samsung) that I clicked on
Now when the number of Samsung mobiles is more than the loop grid limit, the loop pagination occurs
But when I click on the second page, the second page actually shows all the products, not the second page of Samsung products (filtered)
]]>