-
AuthorSearch Results
-
May 16, 2024 at 4:56 pm #1443906
Topic: Embedding images in the navigation
in forum Enfoldreqonsult
ParticipantHello, I would like to embed images or small logos in certain points of the navigation, similar to https://www.perforce.com/ (please see the point “Resources”). Is this possible in Enfold? Thank you very much for your support.
May 16, 2024 at 4:48 pm #1443905May 16, 2024 at 3:06 pm #1443896Hi,
Please refer to this: https://kriesi.at/documentation/enfold/accordion/#custom-tab-and-toggle-ids-for-prettier-url-hashes
Best regards,
RikardMay 16, 2024 at 12:57 pm #1443879Topic: Blogs slider
in forum EnfoldDeef
ParticipantI was assigned to a website made some time agou using enfold 5.0.1. when I upgraded it to 5.7 the posts slider (slider an custom post type) does not show the content any more. It is showing a ‘read more’ with link that seems to be correct but it does not output the image and text that is on that post.
I am not a php or enfold developer so do not know where to look at. It does not seem that there is a custom avia shortcode in the child theme so it is in the basic enfold theme. there is no error so I am clueless on where to start. Any help is appreciated.
May 16, 2024 at 11:46 am #1443870In reply to: Change ICON in a Accordion system
Hi,
This Google Ads code is not apart of the theme, it probably was added in the Enfold Theme Options ▸ Google Services ▸ Google Analytics Tracking Code or in the functions.php file or in the header.php file, or perhaps you have a Google Tag manager plugin. Please look in these places, if you can’t find it include a admin login in the Private Content area so we can examine.
Please note that we ask that each thread stays on a specific topic, this helps other users find solutions based on the opening subject line quicker, and helps the Mods keep the threads on topic. For further questions please open a new threadBest regards,
MikeMay 16, 2024 at 11:34 am #1443869In reply to: adding captions to featured image in single post
Hi,
The code above adds a class to the featured image caption called featured-image-caption it looks like you have found this and tried some css to set the max-width, but you have an error with a letter where a number should be: max-width: 1e3px;

I changed it to 900px for you:


I see that you tried to add some custom body classes to use some different css:

but I don’t see this on the frontend and I’m not sure how you are doing this, but this is a good approach.Best regards,
MikeMay 16, 2024 at 11:10 am #1443864aintzerga
ParticipantHi, I have a BIG issue as of today.
My theme and server are not communicating and the webpage is broken. See the webs: https://saitra.com/ and https://cocinasmetodo.es/
It is not uploading media of any sort from the server, but the media is present on the server.
Tried to fix with restoring latest backup from yesterday, nothing changed.
I need an urgent fix for this issue.Thanks
May 16, 2024 at 10:39 am #1443858In reply to: WordPress Error Messages Dynamic Avia Plugin
Hey loudcow,
Could you post a link to where we can see the actual errors please? Also, did you try to toggle the file compression options and activate the option to delete old CSS and JS files under Enfold->Performance?
Best regards,
RikardMay 16, 2024 at 7:01 am #1443819In reply to: Can’t edit homepage
Hey ijnavas,
Thank you for the inquiry.
We get an error in the console when we try to edit the home (Welcome) page. Have you tried temporarily disabling the plugins? We also noticed that the Welcome page is set as a custom footer. Please deselect the page as a custom footer in the Enfold > Footer panel.
Best regards,
IsmaelMay 16, 2024 at 6:30 am #1443812In reply to: Custom Colors Not Working
Hey tsays,
Thank you for the inquiry.
You may need to temporarily disable the Enfold > Performance > File Compression settings and make sure to purge the cache in order to ensure that the changes take effect before checking the page. If the issue persists, please provide the site URL in the private field.
Best regards,
IsmaelMay 16, 2024 at 6:28 am #1443811In reply to: Advanced layout editor not loading
Hey Genevieve,
Thank you for the inquiry.
You might have forgotten to include the site URL in the private field. Please provide the info in the private field. In the meantime, try toggling or temporarily disabling the Enfold > Performance > File Compression settings, then purge the cache. Let us know if it changes anything.
Best regards,
IsmaelMay 16, 2024 at 1:49 am #1443788Topic: ALB
in forum Pre Sale QuestionsLee
GuestHello,
I wanted to express my love for ENFOLD : – D … and ask a question.
As a coder/designer, I’ve utilised Enfold extensively in creating many clients websites. The ALB stands out to me as exceptionally user-friendly, and beats Elementor and Divi hands down.
Also, the consistent rollout of theme updates, coupled with comprehensive documentation and support, is brilliant.
However, I find myself investing considerable time refining the styling of demo designs and elements, which inevitably impacts my productivity.
While I believe this investment is 100% worthwhile as the theme rocks!, I suspect it may be a shared issue for other Enfold users.
Considering this, I’ve contemplated creating professionally designed ALB elements for fellow Enfold users. Essentially, designing ALB elements, exporting them as .txt files, and offering them for sale.
Could you provide guidance on whether such a thing would be possible in any circumstances? or licensing terms?
I’ve yet to come across any third-party providers offering similar services for Enfold, so I guess its not allowed due to TF licensing : – 0 But I thought I would ask for a definitive answer.
Thank you for your continued efforts in maintaining and improving the Enfold theme GUYS :-D
May 15, 2024 at 10:08 pm #1443757spokerstradingco
ParticipantHi, How would I remove the vertical line between products and about in my navigation menu?
May 15, 2024 at 4:50 pm #1443701In reply to: Fill the left and right gaps with a 1310px layout
Hi,
Thanks for the update. Please open a new thread if you should have any further questions or problems.
Best regards,
RikardMay 15, 2024 at 4:46 pm #1443700In reply to: How to get a different blog format ?
Hi,
The error that you see from adding the code to your functions.php file is typical for copying the code from a email notification from this thread, please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
It looks like you are not using a child theme, so in this case you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:

then add this code and save.function custom_larger_thumbnails_script() { ?> <script> (function($){ $('.av-magazine.larger-thumbnails .av-magazine-entry img').attr('width', '180px'); $('.av-magazine.larger-thumbnails .av-magazine-entry img').attr('height', '180px'); $('.av-magazine.larger-thumbnails .av-magazine-entry img').attr('sizes', '(max-width: 180px) 100vw, 180px'); $('.av-magazine.larger-thumbnails .av-magazine-entry .av-magazine-thumbnail').css({'height': '180px','width': '180px'}); })(jQuery); </script> <?php } add_action( 'wp_footer', 'custom_larger_thumbnails_script', 99 );If you still have trouble after you install the plugin, include a admin login in the Private Content area so we can assist.
Best regards,
MikeMay 15, 2024 at 4:34 pm #1443697Topic: Custom fonts not working in Safari, seem ok in Chrome
in forum Enfoldmattb1169
ParticipantHello! I’ve uploaded several fonts to our new site that’s in development. They seem to be working in Chrome but not Safari (obviously running Mac OS), have not tested on a PC yet. Do I need to add additional CSS or use a plugin rather than the import feature in Enfold?
Thank you for your help.
May 15, 2024 at 9:50 am #1443616### WordPress Environment ### WordPress address (URL): https://www.seemann-henschel.de Site address (URL): https://www.seemann-henschel.de WC Version: 8.9.0 REST API Version: ✔ 8.9.0 Action Scheduler Version: ✔ 3.7.4 Log Directory Writable: ✔ WP Version: 6.5.3 WP Multisite: – WP Memory Limit: 512 MB WP Debug Mode: – WP Cron: ✔ Language: de_DE_formal External object cache: – ### Server Environment ### Server Info: Apache PHP Version: 8.1.19 PHP Post Max Size: 96 MB PHP Time Limit: 300 PHP Max Input Vars: 10000 cURL Version: 7.38.0 OpenSSL/1.0.2l SUHOSIN Installed: – MySQL Version: 5.7.25 Max Upload Size: 96 MB Default Timezone is UTC: ✔ fsockopen/cURL: ✔ SoapClient: ✔ DOMDocument: ✔ GZip: ✔ Multibyte String: ✔ Remote Post: ✔ Remote Get: ✔ ### Database ### WC Database Version: 8.9.0 WC Database Prefix: wp_ Datenbank-Gesamtgröße: 200.84MB Datenbank-Datengröße: 161.84MB Datenbank-Indexgröße: 39.00MB wp_woocommerce_sessions: Daten: 0.06MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_api_keys: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_attribute_taxonomies: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_downloadable_product_permissions: Daten: 0.02MB + Index: 0.06MB + Engine InnoDB wp_woocommerce_order_items: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_order_itemmeta: Daten: 1.52MB + Index: 0.67MB + Engine InnoDB wp_woocommerce_tax_rates: Daten: 0.02MB + Index: 0.06MB + Engine InnoDB wp_woocommerce_tax_rate_locations: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_shipping_zones: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB wp_woocommerce_shipping_zone_locations: Daten: 0.02MB + Index: 0.05MB + Engine InnoDB wp_woocommerce_shipping_zone_methods: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB wp_woocommerce_payment_tokens: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_payment_tokenmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_log: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_access: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2022_01: Daten: 1.52MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2022_02: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2022_03: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2022_04: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2022_05: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2022_06: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2022_07: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2022_08: Daten: 3.17MB + Index: 0.14MB + Engine InnoDB matomo_archive_blob_2022_09: Daten: 2.52MB + Index: 0.16MB + Engine InnoDB matomo_archive_blob_2022_10: Daten: 3.52MB + Index: 0.17MB + Engine InnoDB matomo_archive_blob_2022_11: Daten: 3.52MB + Index: 0.14MB + Engine InnoDB matomo_archive_blob_2022_12: Daten: 3.52MB + Index: 0.17MB + Engine InnoDB matomo_archive_blob_2023_01: Daten: 3.52MB + Index: 0.17MB + Engine InnoDB matomo_archive_blob_2023_02: Daten: 3.41MB + Index: 0.14MB + Engine InnoDB matomo_archive_blob_2023_03: Daten: 3.52MB + Index: 0.13MB + Engine InnoDB matomo_archive_blob_2023_04: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2023_05: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2023_06: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2023_07: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2023_08: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2023_09: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2023_10: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2023_11: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2023_12: Daten: 0.33MB + Index: 0.05MB + Engine InnoDB matomo_archive_blob_2024_01: Daten: 3.52MB + Index: 0.16MB + Engine InnoDB matomo_archive_blob_2024_02: Daten: 0.31MB + Index: 0.05MB + Engine InnoDB matomo_archive_blob_2024_03: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2024_04: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_blob_2024_05: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_invalidations: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_archive_numeric_2022_01: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2022_02: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2022_03: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2022_04: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2022_05: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2022_06: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2022_07: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2022_08: Daten: 0.20MB + Index: 0.22MB + Engine InnoDB matomo_archive_numeric_2022_09: Daten: 0.20MB + Index: 0.27MB + Engine InnoDB matomo_archive_numeric_2022_10: Daten: 0.27MB + Index: 0.30MB + Engine InnoDB matomo_archive_numeric_2022_11: Daten: 0.31MB + Index: 0.31MB + Engine InnoDB matomo_archive_numeric_2022_12: Daten: 0.25MB + Index: 0.33MB + Engine InnoDB matomo_archive_numeric_2023_01: Daten: 0.25MB + Index: 0.27MB + Engine InnoDB matomo_archive_numeric_2023_02: Daten: 0.20MB + Index: 0.23MB + Engine InnoDB matomo_archive_numeric_2023_03: Daten: 0.16MB + Index: 0.22MB + Engine InnoDB matomo_archive_numeric_2023_04: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2023_05: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2023_06: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2023_07: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2023_08: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2023_09: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2023_10: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2023_11: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2023_12: Daten: 0.08MB + Index: 0.06MB + Engine InnoDB matomo_archive_numeric_2024_01: Daten: 0.31MB + Index: 0.30MB + Engine InnoDB matomo_archive_numeric_2024_02: Daten: 0.05MB + Index: 0.06MB + Engine InnoDB matomo_archive_numeric_2024_03: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2024_04: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_archive_numeric_2024_05: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_brute_force_log: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_changes: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_custom_dimensions: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_goal: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB matomo_locks: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB matomo_logger_message: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB matomo_log_action: Daten: 0.36MB + Index: 0.09MB + Engine InnoDB matomo_log_conversion: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB matomo_log_conversion_item: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_log_link_visit_action: Daten: 0.20MB + Index: 0.16MB + Engine InnoDB matomo_log_profiling: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_log_visit: Daten: 1.52MB + Index: 0.45MB + Engine InnoDB matomo_option: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_plugin_setting: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_privacy_logdata_anonymizations: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_report: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB matomo_report_subscriptions: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_segment: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB matomo_sequence: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB matomo_session: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB matomo_site: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB matomo_site_setting: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_site_url: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB matomo_tracking_failure: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB matomo_twofactor_recovery_code: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB matomo_user: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB matomo_user_dashboard: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB matomo_user_language: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB matomo_user_token_auth: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB wp_actionscheduler_actions: Daten: 11.54MB + Index: 4.39MB + Engine MyISAM wp_actionscheduler_claims: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_actionscheduler_groups: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_actionscheduler_logs: Daten: 11.51MB + Index: 7.18MB + Engine MyISAM wp_borlabs_cookie_consent_log: Daten: 1.64MB + Index: 0.46MB + Engine MyISAM wp_borlabs_cookie_content_blocker: Daten: 0.01MB + Index: 0.00MB + Engine MyISAM wp_borlabs_cookie_cookies: Daten: 0.01MB + Index: 0.00MB + Engine MyISAM wp_borlabs_cookie_groups: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_borlabs_cookie_script_blocker: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_borlabs_cookie_statistics: Daten: 0.46MB + Index: 0.46MB + Engine MyISAM wp_commentmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_comments: Daten: 0.02MB + Index: 0.09MB + Engine InnoDB wp_duplicator_pro_entities: Daten: 0.01MB + Index: 0.00MB + Engine MyISAM wp_duplicator_pro_packages: Daten: 0.17MB + Index: 0.00MB + Engine MyISAM wp_easywpsmtp_debug_events: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB wp_easywpsmtp_tasks_meta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_layerslider: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB wp_layerslider_drafts: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_layerslider_revisions: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB wp_links: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB wp_novalnet_aff_account_detail: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB wp_novalnet_aff_user_detail: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB wp_novalnet_callback_history: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB wp_novalnet_subscription_details: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_novalnet_transaction_detail: Daten: 0.02MB + Index: 0.09MB + Engine InnoDB wp_options: Daten: 7.23MB + Index: 1.20MB + Engine InnoDB wp_pmxi_files: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB wp_pmxi_hash: Daten: 0.01MB + Index: 0.01MB + Engine MyISAM wp_pmxi_history: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB wp_pmxi_images: Daten: 0.44MB + Index: 0.00MB + Engine InnoDB wp_pmxi_imports: Daten: 0.14MB + Index: 0.00MB + Engine InnoDB wp_pmxi_posts: Daten: 0.05MB + Index: 0.00MB + Engine InnoDB wp_pmxi_templates: Daten: 0.05MB + Index: 0.00MB + Engine InnoDB wp_postmeta: Daten: 51.14MB + Index: 12.36MB + Engine InnoDB wp_posts: Daten: 31.06MB + Index: 1.31MB + Engine InnoDB wp_redirection_404: Daten: 2.02MB + Index: 0.31MB + Engine InnoDB wp_redirection_groups: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_redirection_items: Daten: 0.05MB + Index: 0.09MB + Engine InnoDB wp_redirection_logs: Daten: 0.14MB + Index: 0.05MB + Engine InnoDB wp_snippets: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_documentmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_documents: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_storeabill_document_itemmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_document_items: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_document_noticemeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_document_notices: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_storeabill_journals: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_termmeta: Daten: 0.05MB + Index: 0.03MB + Engine InnoDB wp_terms: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_term_relationships: Daten: 0.09MB + Index: 0.06MB + Engine InnoDB wp_term_taxonomy: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_usermeta: Daten: 0.08MB + Index: 0.03MB + Engine InnoDB wp_users: Daten: 0.02MB + Index: 0.05MB + Engine InnoDB wp_wc_admin_notes: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wc_admin_note_actions: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wc_category_lookup: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wc_customer_lookup: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_download_log: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_orders: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_orders_meta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_order_addresses: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_order_coupon_lookup: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_order_operational_data: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_order_product_lookup: Daten: 0.09MB + Index: 0.06MB + Engine InnoDB wp_wc_order_stats: Daten: 0.16MB + Index: 0.14MB + Engine InnoDB wp_wc_order_tax_lookup: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_product_attributes_lookup: Daten: 0.01MB + Index: 0.03MB + Engine MyISAM wp_wc_product_download_directories: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_wc_product_meta_lookup: Daten: 0.06MB + Index: 0.09MB + Engine InnoDB wp_wc_rate_limits: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_reserved_stock: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_tax_rate_classes: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wc_webhooks: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_gzd_dhl_im_products: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_dhl_im_product_services: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_dhl_labelmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_gzd_dhl_labels: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_gzd_packaging: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_packagingmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_shipmentmeta: Daten: 0.06MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_gzd_shipments: Daten: 0.22MB + Index: 0.14MB + Engine InnoDB wp_woocommerce_gzd_shipment_itemmeta: Daten: 0.28MB + Index: 0.38MB + Engine InnoDB wp_woocommerce_gzd_shipment_items: Daten: 0.22MB + Index: 0.31MB + Engine InnoDB wp_woocommerce_gzd_shipment_labelmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_shipment_labels: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_gzd_shipping_provider: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_gzd_shipping_providermeta: Daten: 0.06MB + Index: 0.03MB + Engine InnoDB wp_woof_query_cache: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woof_sd: Daten: 0.00MB + Index: 0.00MB + Engine MyISAM wp_yoast_indexable: Daten: 0.39MB + Index: 0.11MB + Engine MyISAM wp_yoast_indexable_hierarchy: Daten: 0.02MB + Index: 0.07MB + Engine MyISAM wp_yoast_migrations: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_yoast_primary_term: Daten: 0.00MB + Index: 0.01MB + Engine MyISAM wp_yoast_seo_links: Daten: 0.23MB + Index: 0.07MB + Engine MyISAM wp_yoast_seo_meta: Daten: 1.72MB + Index: 1.84MB + Engine MyISAM ### Post Type Counts ### acf-field: 29 acf-field-group: 2 attachment: 3114 avia_framework_post: 37 customize_changeset: 3 cwginstocknotifier: 500 document_template: 5 invoice: 4 itsec-dash-card: 8 itsec-dashboard: 1 nav_menu_item: 72 oembed_cache: 7 page: 55 post: 53 product: 317 revision: 1836 sh_event: 55 shop_order: 1443 shop_order_refund: 1 wp_global_styles: 1 wpcf7_contact_form: 3 ### Security ### Secure connection (HTTPS): ✔ Hide errors from visitors: ✔ ### Active Plugins (30) ### Advanced Custom Fields: von WP Engine – 6.2.9 Autoptimize: von Frank Goossens (futtta) – 3.1.11 Back In Stock Notifier for WooCommerce | WooCommerce Waitlist Pro: von codewoogeek – 5.3.2 BackWPup: von WP MEDIA SAS – 4.0.4 Borlabs Cookie - Cookie Opt-in: von Borlabs GmbH – 2.2.67 Contact Form 7 to NEWSTROLL api: von NEWSTROLL.de – 1.0.0 Classic Editor: von WordPress-Mitwirkende – 1.6.3 Classic Widgets: von WordPress-Mitwirkende – 0.3 Contact Form 7: von Takayuki Miyoshi – 5.9.4 Disable Comments: von WPDeveloper – 2.4.6 Easy WP SMTP: von Easy WP SMTP – 2.3.0 Enable Media Replace: von ShortPixel – 4.1.5 Limit Login Attempts Reloaded: von Limit Login Attempts Reloaded – 2.26.9 Loco Translate: von Tim Whitlock – 2.6.9 One Stop Shop für WooCommerce: von vendidero – 1.6.2 Redirection: von John Godley – 5.4.2 Regenerate Thumbnails: von Alex Mills (Viper007Bond) – 3.1.6 Seemann Henschel Import Cron: von clickstorm GmbH – 1.0 SVG Support: von Benbodhi – 2.5.5 Germanized für WooCommerce Pro: von vendidero – 3.10.2 Germanized für WooCommerce: von vendidero – 3.16.5 Google Analytics for WooCommerce: von WooCommerce – 2.0.7 heidelpay WooCommerce: von heidelpay – 1.6.0 HUSKY - Products Filter Professional for WooCommerce: von realmag777 – 1.3.5.3 WooCommerce: von Automattic – 8.9.0 Yoast SEO: von Team Yoast – 22.7 WP All Import Pro: von Soflyy – 4.8.5 WP Crontrol: von John Blackbourn – 1.16.3 WP All Import - ACF Add-On: von Soflyy – 3.3.8 WP All Import - WooCommerce Import Add-On Pro: von Soflyy – 4.0.0 ### Inactive Plugins (0) ### ### Must Use Plugins (1) ### WP Migrate DB Compatibility: von Delicious Brains – 1.2 ### Settings ### API Enabled: – Force SSL: – Currency: EUR (€) Currency Position: right_space Thousand Separator: . Decimal Separator: , Number of Decimals: 2 Taxonomies: Product Types: external (external) grouped (grouped) simple (simple) variable (variable) Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog) exclude-from-search (exclude-from-search) featured (featured) outofstock (outofstock) rated-1 (rated-1) rated-2 (rated-2) rated-3 (rated-3) rated-4 (rated-4) rated-5 (rated-5) Connected to WooCommerce.com: – Enforce Approved Product Download Directories: – 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 Tage Level threshold: – Log directory size: 793 kB ### WC Pages ### Shop-Basis: #506 - /shop/ Warenkorb: #507 - /warenkorb-2/ Kasse: #28 - /checkout/ Ihr Konto: #14 - /mein-konto/ Allgemeine Geschäftsbedingungen: #697 - /agb/ ### Theme ### Name: Enfold Child Version: 1.0 Author URL: http://kriesi.at Child Theme: ✔ Parent Theme Name: Enfold Parent Theme Version: 5.7.1 Parent Theme Author URL: https://kriesi.at WooCommerce Support: ✔ ### Templates ### Overrides: enfold-child/woocommerce/checkout/thankyou.php Version 3.7.0 ist veraltet. Die Hauptversion ist 8.1.0 enfold-child/woocommerce/single-product/meta.php enfold-child/woocommerce/single-product/product-image.php Version 3.5.1 ist veraltet. Die Hauptversion ist 7.8.0 enfold-child/woocommerce/single-product/short-description.php enfold-child/woocommerce/single-product/title.php Outdated Templates: ❌ Erfahren Sie wie Sie aktualisieren können ### 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 product-custom-fields remote-inbox-notifications remote-free-extensions payment-gateway-suggestions shipping-label-banner subscriptions store-alerts transient-notices woo-mobile-welcome wc-pay-promotion wc-pay-welcome-page Disabled Features: minified-js new-product-management-experience settings async-product-editor-category-field launch-your-store Daily Cron: ✔ Next scheduled: 2024-05-15 09:25:07 +02:00 Options: ✔ Notes: 19 Onboarding: completed ### Action Scheduler ### Abgeschlossen: 30.144 Oldest: 2024-04-14 09:49:19 +0200 Newest: 2024-05-15 09:45:13 +0200 Fehlgeschlagen: 2.204 Oldest: 2020-11-09 15:53:52 +0100 Newest: 2024-05-13 14:47:24 +0200 Ausstehend: 10 Oldest: 2024-05-15 09:50:05 +0200 Newest: 2024-05-16 05:01:00 +0200 ### Status report information ### Generated at: 2024-05-15 09:49:53 +02:00May 15, 2024 at 7:31 am #1443586In reply to: Please contribute and translate Enfold
Hello everyone,
For those who are interested, you can download the latest version of the Italian languageDownload here
Translation: Italian language
Version: Enfold 5.7.1
Released on: 7th May 2024
Strings: 6355
All translations are synchronised with the source filesRegards
LuigiMay 15, 2024 at 5:26 am #1443560In reply to: Envato purchase/update key is invalid.
Hi,
Looks like you’ve tried to update the theme using the purchase code instead of the personal token. Please review the links that we provided above on how to properly generate a personal token, which can be used to update the theme via the dashboard. If you’re unable to generate a token, you can still update the theme manually via S/FTP.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelMay 15, 2024 at 5:23 am #1443559In reply to: Envato purchase/update key is invalid.
Hey JLJF-Janet,
Thank you for the inquiry.
According to the errors above, the private or personal token lacks the required permissions. Please try generating the token again and ensure that the required scopes or permissions are checked. For more info, please review the documentation below:
// https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token
These are the required permissions:
- View and search Envato sites (checked by default) (Required) - View the user’s Envato Account username - View the user’s email address - View the user’s account profile details - Download the user’s purchased items (Required) - Verify purchases of the user’s items - List purchases the user has made (Required)Best regards,
IsmaelMay 15, 2024 at 4:20 am #1443550In reply to: menu mobile error
Hey wordpress60,
Thank you for the inquiry.
We noticed that the site contains an older version (4.7.4) of the theme, which is likely why the mobile menu is not displaying as expected. Please create a clone of the site, update the theme to version 5.7.1, and fix the errors before transferring it to the live site. You may need to update the theme manually via S/FTP. Please check the link below:
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelMay 15, 2024 at 3:56 am #1443543In reply to: Weird Browser Issue
Hi,
We checked the site again today, and it displayed without issue. We tested it a few times. However, we did notice that the SSL certificate has expired. You might want to ask your hosting provider to renew the certificate.
You can also try disabling the Enfold > Performance > File Compression settings temporarily and the cache plugin to see if the issue persists.
Best regards,
IsmaelMay 14, 2024 at 10:48 pm #1443504In reply to: Weird Browser Issue
Hi, I have people checking the website in five different states. They are all having the same visual problems with Chrome, Edge, and Android phones. The weird thing is that this morning, things looked fine, and now they are back to not looking fine, as in the images in the post above. I am getting super desperate here. I’ve used Enfold for years and have never had these issues. We are using the latest browsers, etc. Is there any chance there’s another idea you have or maybe you could look in the back end? I would really appreciate it so much!
Thank you,
JustineMay 14, 2024 at 9:26 pm #1443488In reply to: Icons dissappeared
May 14, 2024 at 7:45 pm #1443473In reply to: Icons dissappeared
AHHHHH.
Figured it out. The enfold icon numbers are not available any more. Icon ’14’ and ’95’ are gone.
Do you have a list of the icons images and corresponding numbers?May 14, 2024 at 6:02 pm #1443458In reply to: Change ICON in a Accordion system
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .single_toggle p { font-weight: bold; }After applying the css, please clear your browser cache and check.
Best regards,
MikeMay 14, 2024 at 5:07 pm #1443450In reply to: Cart widget menu item
Hi,
Please open a new thread and include WordPress admin login details in private, so that we can have a closer look at your site. We’ll close this thread for now.
Best regards,
RikardMay 14, 2024 at 3:43 pm #1443431In reply to: Options for Managing Page Templates
Thanks for the reply and info Ismael.
It would be great if this could be something considered as a new feature for a future version of the theme. Templates in Enfold are very easy to use and create. But as I mentioned, are just a bit difficult to manage and view when you have a longer list of them. So if there was a more robust way to view and organize them instead of a single dropdown, that would really help.
Instead of one list/dropdown, maybe the ability to manage them like menus in WordPress where there could be parent/child categories and display those with a dropdown or megamenu style would make it easier? I’m sure there are other and likely better options, so hopefully this is something your team will look further into.
May 14, 2024 at 11:24 am #1443401In reply to: 2 new Avia-JS-errors after Enfold update
Hey Bettina,
Please try disabling Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and clear any caching plugin you have and clear your server cache or CDN cache if enabled and then clear your browser cache and check again.
The files you posted abaove are cache files, after a couple of hours you can try enabling again, if you see the error again try disabling your caching plugin file minifying, when a plugin minify a second time after the theme it can cause errorsBest regards,
MikeMay 14, 2024 at 11:11 am #1443400Topic: 2 new Avia-JS-errors after Enfold update
in forum Enfoldglueckspilz-shop
ParticipantAfter Enfold update, our website throws following two errors (links to example URLs provided below):
(1) avia-head-scripts-b08126a0639d4748b54f89473acd46af—664325d8f00f2.js
Uncaught TypeError: Cannot set properties of undefined (setting ‘applyFilters’)
(2) avia-footer-scripts-d9409bc493954fe4d96d69b4bb99b6f2—664325d93f4be.js
Uncaught TypeError: Cannot read properties of undefined (reading ‘register’) -
AuthorSearch Results
-
Search Results
-
Topic: Blogs slider
Hi, I have a BIG issue as of today.
My theme and server are not communicating and the webpage is broken. See the webs: https://saitra.com/ and https://cocinasmetodo.es/
It is not uploading media of any sort from the server, but the media is present on the server.
Tried to fix with restoring latest backup from yesterday, nothing changed.
I need an urgent fix for this issue.Thanks
Topic: ALB
Hello,
I wanted to express my love for ENFOLD : – D … and ask a question.
As a coder/designer, I’ve utilised Enfold extensively in creating many clients websites. The ALB stands out to me as exceptionally user-friendly, and beats Elementor and Divi hands down.
Also, the consistent rollout of theme updates, coupled with comprehensive documentation and support, is brilliant.
However, I find myself investing considerable time refining the styling of demo designs and elements, which inevitably impacts my productivity.
While I believe this investment is 100% worthwhile as the theme rocks!, I suspect it may be a shared issue for other Enfold users.
Considering this, I’ve contemplated creating professionally designed ALB elements for fellow Enfold users. Essentially, designing ALB elements, exporting them as .txt files, and offering them for sale.
Could you provide guidance on whether such a thing would be possible in any circumstances? or licensing terms?
I’ve yet to come across any third-party providers offering similar services for Enfold, so I guess its not allowed due to TF licensing : – 0 But I thought I would ask for a definitive answer.
Thank you for your continued efforts in maintaining and improving the Enfold theme GUYS :-D
Hi, How would I remove the vertical line between products and about in my navigation menu?
Hello! I’ve uploaded several fonts to our new site that’s in development. They seem to be working in Chrome but not Safari (obviously running Mac OS), have not tested on a PC yet. Do I need to add additional CSS or use a plugin rather than the import feature in Enfold?
Thank you for your help.
After Enfold update, our website throws following two errors (links to example URLs provided below):
(1) avia-head-scripts-b08126a0639d4748b54f89473acd46af—664325d8f00f2.js
Uncaught TypeError: Cannot set properties of undefined (setting ‘applyFilters’)
(2) avia-footer-scripts-d9409bc493954fe4d96d69b4bb99b6f2—664325d93f4be.js
Uncaught TypeError: Cannot read properties of undefined (reading ‘register’)




