Forum Replies Created
-
AuthorPosts
-
Hey Destini Richlin,
Thank you for the inquiry.
The site displays perfectly fine on our end. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:
1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
2.) Locate the option to upload a file or an image.
3.) Select the screenshot file from your computer or device and upload it to the platform.
4.) After the upload is complete, you will be provided with a shareable link or an embed code.
5.) Copy the link or code and include it in your message or response to provide us with the screenshot.Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.
Best regards,
IsmaelHey stevengamez,
Thank you for the inquiry.
Did you create a post or category with the same title, or did you install a redirect plugin? You may need to adjust the name or slug of the post or category that has the same name as the page. You can also save the content of the page as a template, delete it, remove it completely from the trash, create another page, and then apply the template. Let us know the result.
Best regards,
IsmaelHi,
Thank you for the video.
Looks like you’re switching between the default and the layout builder. You have to stick with the default editor if you want to display the default post template and only switch to the Advanced Layout Builder (ALB) if you need to build the content from scratch. Please note that when ALB is active, it will switch to a blank template without the default content, such as the post title, date, content, etc.
Please check this documentation to help you get started with the theme: https://kriesi.at/documentation/enfold/
Let us know if you need more assistance.
Best regards,
IsmaelHi,
I have no idea what this means: Private Data:
Sorry about that. I forgot you’re reaching out through email, not directly in the forum. You can now open inquiries in the forum using this form: https://kriesi.at/support/forum/enfold/#new-post
The primary issue is that I cannot edit the content. Plugins do not seem to be the issue.
Regarding the editor issue, please make sure to update the theme to version 6.0.8, then temporarily disable the Enfold > Performance > File Compression settings. If the issue persists, open a new thread and provide the login details in the private field.
Best regards,
IsmaelDecember 19, 2024 at 5:30 am in reply to: color section transparent over another color section #1473978Hi,
Great! Glad to know that @Guenni007 was able to help you out. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelDecember 19, 2024 at 5:27 am in reply to: Overlay menu on desktop with vertical tabs instead of accordion #1473977Hey xxtita,
Thank you for the inquiry.
This option is not available for the burger menu out of the box. You may need to install plugins such as UberMenu, HeroMenu, or QuadMenu to create complex and advanced menu layouts and overlays. Please check the links below for more information:
// https://sevenspark.com/docs/ubermenu-3
// https://heroplugins.com/product/hero-menu/documentation/
// https://quadmenu.com/documentation/Best regards,
IsmaelDecember 19, 2024 at 5:10 am in reply to: Which plugin do you recommend for easy appointment booking #1473975Hey LoMoe,
Thank you for the inquiry.
The theme is also compatible with the Events Calendar plugin, but it might require a few modifications to meet your requirements. You can check the documentation using the following links:
// https://theeventscalendar.com/knowledgebase/configuring-paypal-for-ticket-purchases/
// https://theeventscalendar.com/knowledgebase/product/the-events-calendar/Best regards,
IsmaelDecember 19, 2024 at 5:03 am in reply to: Setting up Blog page to function as a Knowledge Base from former website. #1473974Hi,
Alright! Feel free to explore the documentation and watch video tutorials — yes, Ferdy Korpershoek has created many great tutorials about Enfold. Don’t hesitate to reach out if you have more questions.
Best regards,
IsmaelHi,
Thank you for the update.
The people working on the website might have put some coding in and also
Yes, it’s possible that they accidentally did something that affected the database and caused the alt text to be removed. Please redo this for a few images and wait for a day or two before proceeding with the rest of the images, just in case. Again, make sure to create a site backup after completing each task.
And as mentioned by @Guenni007 above, you could programmatically copy the title or the description and apply them as alt text. Something like this in the functions.php file.
WARNING: This will override the alt text of all images and replace them with the title.
function av_update_existing_image_alt_texts() { $args = [ 'post_type' => 'attachment', 'post_mime_type' => 'image', 'post_status' => 'inherit', 'posts_per_page' => -1, ]; $images = get_posts($args); foreach ($images as $image) { $alt_text = get_post_meta($image->ID, '_wp_attachment_image_alt', true); if (empty($alt_text)) { $title = $image->post_title; if (!empty($title)) { update_post_meta($image->ID, '_wp_attachment_image_alt', $title); } } } } add_action('admin_init', 'av_update_existing_image_alt_texts');Best regards,
IsmaelDecember 19, 2024 at 4:48 am in reply to: CSS styles do not seem to work correctly on the start page #1473970Hi,
Thank you for the info.
We may need to login to the site in order to properly check the issue. Please create a staging or development site, then provide the admin credentials in the private field.
Best regards,
IsmaelDecember 19, 2024 at 4:42 am in reply to: I am using enfold and it is constantly crashing, please help me #1473969Hi,
Thank you for the update.
theme suddenly disappeared after i installed fresh version
What do you mean it disappeared? Please download the latest version of the theme from your Themeforest account as instructed in the documentation above, then upload it via FTP. Don’t forget to create a site backup or restore point before doing so.
Best regards,
IsmaelHey djcopywriter,
Thank you for the inquiry.
Did you add custom css modifications for the tab section? Please try to temporarily disable those, then upgrade the theme to the latest version 6.0.8. After the theme update, make sure to toggle the Enfold > Performance > File Compression settings and purge the cache. Let us know of the result.
Best regards,
IsmaelHey John,
Thank you for the inquiry.
You may need to adjust the font sizes in the Enfold > General Styling > Typography tab. Let us know if you need further assistance.
Best regards,
IsmaelHi,
@zimbo: We adjusted the directive a bit — specifically the Content-Security-Policy. Please try testing it again:
# ----------------------------------------------------------------------------- # HTTP SECURITY HEADER | Test on: https://securityheaders.com | UPDATE 2022 # ----------------------------------------------------------------------------- <IfModule mod_headers.c> Header set Referrer-Policy "strict-origin-when-cross-origin" Header set X-Frame-Options "sameorigin" Header set X-XSS-Protection "1; mode=block" Header set X-Content-Type-Options "nosniff" Header set Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" Header always set Content-Security-Policy "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; object-src 'none'; upgrade-insecure-requests;" Header always set Permissions-Policy "camera=(), fullscreen=(self), geolocation=(self), microphone=(), interest-cohort=()" Header always set Expect-CT "enforce, max-age=21600" </IfModule>Best regards,
IsmaelDecember 18, 2024 at 6:59 am in reply to: Use the breadcrumb area on SHOP page as a section saying Free Shipping #1473870Hey Dzimnikov,
Thank you for the inquiry.
Try to add this script in the functions.php file to create another container below the product description or shop banner :
function ava_custom_add_shipping_text_script() { if (is_shop()) { ?> <script> (function ($) { $(document).ready(function () { var newContainer = $('<div class="av-custom-shipping-container"><p>Free Shipping on All Orders!</p></div>'); $('#av_product_description .container').after(newContainer); }); }(jQuery)); </script> <?php } } add_action('wp_footer', 'ava_custom_add_shipping_text_script', 99);Then add this css code to adjust the style of the new container:
#top .av-custom-shipping-container { background: red; padding: 20px; } #top .av-custom-shipping-container p { color: #ffffff; font-size: 40px; }Best regards,
IsmaelDecember 18, 2024 at 6:48 am in reply to: I am using enfold and it is constantly crashing, please help me #1473869Hey Natesh,
Thank you for the inquiry.
We can’t access the theme options. Please set the user role to admin. Where did you get the “Enfold Child Theme Template” plugin? Can we deactivate the plugins temporarily?
Best regards,
IsmaelHi,
Thank you for the inquiry.
We provided a list of fonts that are loaded on the site (see private field), and as you can see, there is no Google Font listed there. Where are you checking it?
Best regards,
IsmaelDecember 18, 2024 at 6:33 am in reply to: I installed a demo and it says I can't find the page. #1473867Hi,
Thank you for the inquiry.
The issue occurred because the Frontpage was set as the maintenance, 404, and footer page. It was also selected as the Blog Page. We adjusted the options and set the Frontpage only as the home page in Enfold > Theme Options > Frontpage Settings. Please make sure to purge the cache before checking the page.
Best regards,
IsmaelHi,
Thank you for the info.
We’re still encountering the same issue when trying to access the wp-login or wp-admin path. Try temporarily disabling the plugins.
Best regards,
IsmaelDecember 18, 2024 at 6:19 am in reply to: Blog – Selection filters with more than one category #1473863Hey Mikel,
Thank you for the inquiry.
Are you referring to the post navigation? Please provide a link to a test page so we can better understand what you’re trying to do.
Best regards,
IsmaelHey pietervanzaanen,
Thank you for the inquiry.
Did you install any plugins or apply custom scripts after adding the alt text? It’s possible that a plugin or custom script caused the issue, as the theme does not include any function that would do this, nor would it make sense to create one. After adding the alt text again, consider creating a site backup or restore point. This will allow you to revert to a previous state if the issue occurs again.
Best regards,
IsmaelDecember 18, 2024 at 6:10 am in reply to: Setting up Blog page to function as a Knowledge Base from former website. #1473861Hey pietervanzaanen,
Thank you for the inquiry.
You can setup the knowledge base entries as posts with a unique category “documentation”. The demo https://kriesi.at/themes/enfold-2017/blog/ is created using the Advance Layout Builder (ALB) — it has a Color Section at the very top with a background image, Special Heading + Separator + Text Block element combo and Two Blog Posts element below the Color Section. One of the Blog Posts element displays only one entry and the other is set to have a Grid Layout with 2 Columns.
To copy the layout a lot easier, you can set the builder to debug mode then copy these code in the shortcode field: https://pastebin.com/EfxvsDwL
To enable debug mode, please check this documentation: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
Let us now if you need further assistance.
Best regards,
IsmaelHey keep12,
Thank you for the inquiry.
Looks like the site is trying to load a cached version of the post css files, which no longer exist. Please check the css path in the private field. Have you tried disabling the cache plugin temporarily? You can also disable the post css files with this filter in the functions.php file:
function avf_mod_post_css_create_file( $create ){ return false; } add_filter( 'avf_post_css_create_file', 'avf_mod_post_css_create_file', 10, 1 );Best regards,
IsmaelHi,
Thank you for the login token.
The issue might be caused by the modifications made to center-align the menu items. To adjust the position of the mega menu, we added the following css code.
#menu-item-991 .avia_mega_div.avia_mega3.nine.units { left: -180px; }Best regards,
IsmaelHi,
We are redirected to a 404 page when accessing the wp-login page, and this notification appears when using wp-admin.
Je hebt geen toestemming om deze pagina te bekijken.Best regards,
IsmaelHi,
Thank you for the info.
Looks like the toggler titles are translated on load but revert to the DE language after a few seconds, then get updated repeatedly. Unfortunately, we’re not sure how the plugin does the automatic or dynamic translation. Please contact the TranslatePress team to check the .toggler html nodes and ask them why these nodes are being updated indefinitely. Also, inquire if there’s an option to exclude these html nodes from automatic or dynamic translation.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Please check this documentation for more info on how to activate a child theme: https://kriesi.at/documentation/enfold/child-theme/#how-to-install-the-child-theme
This can be translated using Google Translate or directly on your browser. Make sure to create a site backup or restore point before doing so, and if you need more assistance, please open another thread using this form: https://kriesi.at/support/forum/enfold/#new-post
Best regards,
IsmaelHey k hanadel,
Thank you for the inquiry.
Have you registered an account on the forum? Please note that a single license for the theme includes lifetime updates, but the support license duration is limited — typically 6 months to 1 year. You can read more about it here: https://help.market.envato.com/hc/en-us/articles/207886473-Extend-or-renew-Item-Support.
Once the support license is renewed, make sure to register the theme and generate a private token — more info here: https://kriesi.at/documentation/enfold/theme-registration/
Best regards,
Ismael -
AuthorPosts
