Forum Replies Created
-
AuthorPosts
-
Hey Anouk,
Thank you for the inquiry.
Did you add any css modifications to the site? To override the current styles, please add this code.
#top .avia_ajax_form .form_element_half { margin-left: 5.5% !important; width: 47%; } #top .avia_ajax_form .form_element_half:first-child { margin-left: 0 !important; }Best regards,
IsmaelHi,
Alright! Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey Thomas,
Thank you for the inquiry.
Importing another demo will override the existing settings, so we don’t recommend it. If you can provide links to the demo pages you’d like to replicate, we’ll provide you with the exact shortcodes. For recreating the portfolio ajax and blog grid pages from the default demo, here are the shortcodes:
Blog Grid: https://pastebin.com/uZbSxkxY
Portfolio Ajax: https://pastebin.com/mePHMpwPYou will need to set the builder to debug mode to add these shortcodes in the shortcodes field. For more details on enabling debug mode, you can refer to the documentation below.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
Best regards,
IsmaelHey sophiasbiti,
Thank you for the inquiry.
If the iframe is causing errors in the builder, you might want to consider creating a custom shortcode for it. Instead of embedding the iframe directly into the builder, you can use the custom shortcode. This shortcode will then render the iframe on the frontend.
Example:
// Define a custom shortcode for iframe function custom_iframe_shortcode($atts) { // Set default attributes $atts = shortcode_atts( array( 'src' => '', 'width' => '100%', 'height' => '300', ), $atts, 'custom_iframe' ); // Extract attributes $src = esc_url($atts['src']); $width = esc_attr($atts['width']); $height = esc_attr($atts['height']); // Output the iframe code $output = '<iframe src="' . $src . '" width="' . $width . '" height="' . $height . '" frameborder="0" allowfullscreen></iframe>'; return $output; } // Register the shortcode add_shortcode('custom_iframe', 'custom_iframe_shortcode');You can use it in in the ALB like this:
[custom_iframe src="https://example.com" width="100%" height="400"]Please check the link below for more info.
// https://codex.wordpress.org/Shortcode_API
Best regards,
IsmaelHi,
Thank you for the update.
At the moment, this isn’t possible, unfortunately. You might consider hiring a freelance developer to extend the plugin and make it compatible with the Advanced Layout Builder.
Best regards,
IsmaelHi,
Thank you for the info.
We get this error when we try to edit one of the elements, which seems to be coming from a plugin called “actovent-map”. Have you tried disabling this plugin temporarily?
actovent-map-admin.js?ver=1.0.0:5 Uncaught Error: Map container not found. at i._initContainer (actovent-map-admin.js?ver=1.0.0:5:37517) at i.initialize (actovent-map-admin.js?ver=1.0.0:5:26026) at new i (actovent-map-admin.js?ver=1.0.0:5:2616) at t.map (actovent-map-admin.js?ver=1.0.0:5:141663) at actovent-map-admin.js?ver=1.0.0:40:17 at actovent-map-admin.js?ver=1.0.0:42:3If the issue persists, please deactivate all plugins, then activate them back one at a time to check which one is causing this issue.
Best regards,
IsmaelHi,
Thank you for the inquiry.
The elements in the builder displayed correctly when we edited a few pages. Could you specify on which page we can reproduce the issue?
Best regards,
IsmaelHey whdsolutions,
Thank you for the inquiry.
Adding this css code should adjust the style of the ul and ol list inside the tooltip.
.avia-tooltip ul, .avia-tooltip ol { list-style: disc outside !important; }Best regards,
IsmaelHi,
Thank you for the info.
We also encounter this error when we attempt to log in to the site.
Fatal error: Allowed memory size of 62914560 bytes exhausted (tried to allocate 20480 bytes) in /homepages/43/d603302806/htdocs/site/wp-includes/functions.php on line 2190
Have you tried increasing the PHP memory limit?
// https://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/
You can add this code in the wp-config.php file.
define( 'WP_MEMORY_LIMIT', '256M' );Best regards,
IsmaelHi,
Great! Glad to know that you’ve found a working solution. Please let us know if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelJanuary 16, 2024 at 11:03 am in reply to: Is it okay to unload Avia Layout Builder-related CSS? #1430225Hey mfuji,
Thank you for the inquiry.
Unloading CSS files should be fine, but be cautious as some features rely on these styles by default. For instance, the Accordion or Toggle styles are utilized in the Privacy & Cookies consent settings. There are alternative methods to improve site speed, and you can find more details in the following article.
// https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
// https://gtmetrix.com/wordpress-optimization-guide.htmlBest regards,
IsmaelHey envatobunny,
Thank you for the inquiry.
It may take some time for the search results to be updated. If you wish to expedite the process, try building and submitting a sitemap to Google. Please refer to the documentation below for more info.
// https://support.google.com/webmasters/answer/7451001#zippy=%2Csubmit-a-sitemap
// https://developers.google.com/search/docs/crawling-indexing/sitemaps/build-sitemapBest regards,
IsmaelJanuary 16, 2024 at 10:51 am in reply to: Website/menu/logo wobbles right/left when loading/displaying #1430223Hey cheffe,
Thank you for the inquiry.
We can’t seem to reproduce the issue on our end. Please check the short clip in the private field. Have you tried testing it on a different browser or device?
Best regards,
IsmaelHi,
Thank you for the update.
You can add this css code to hide the overlay on hover.
#top .av-caption-style-overlay .av-masonry-item-with-image:hover .av-inner-masonry-content { background: transparent; }Best regards,
IsmaelJanuary 16, 2024 at 10:38 am in reply to: Color section with excess space & contact form don’t display in mobile #1430220Hi,
No problem! Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey ausgesonnen,
Thank you for the inquiry.
Did you any modifications for the header? To remove the other burger icon, you can try this css code.
#top #header .av-logo-container .av-main-nav > li.av-burger-menu-main { display: none; }Best regards,
IsmaelJanuary 16, 2024 at 10:24 am in reply to: Backgroundphotos in “grid line” (Rasterzeile) on tablets don´t adapt size #1430217Hi,
@northorie: Have you tried adding the css code that @Guenni007 provided above? We will post it again below. If you need further assistance, please open another thread, provide the site URL and post a screenshot. We will close this thread for now.@media only screen and (min-width: 990px) { #top .flex_cell.responsives-verhalten.nebeneinander { background-attachment: scroll; padding: 0 !important } #top .flex_cell.responsives-verhalten.nebeneinander .flex_cell_inner { height: calc(56.25vw / 2) !important; } }Best regards,
IsmaelHi,
Thank you for the info.
To adjust the padding of the Color Section, please edit the element, go to the Layout > Margins & Padding section, then set the Section Padding settings to No Padding.
You can also add the following css code to adjust the default section padding but this modification will be applied across the site.
.content { padding-top: 0; padding-bottom: 0; } .avia-testimonial-wrapper { margin: 0; }Best regards,
IsmaelJanuary 16, 2024 at 10:17 am in reply to: Container with breadcrumbs is not centered correctly in mobile version #1430214Hi,
The Appearance > Theme File Editor is not accessible when we checked the site and we can’t purge the server cache for some reason. Would you mind asking your hosting provider to disable the server cache temporarily?
To re-enable the Appearance > Theme File Editor, edit the wp-config.php file, then add this code.
define( 'DISALLOW_FILE_EDIT', false );Best regards,
IsmaelHi,
No problem! Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelJanuary 15, 2024 at 10:42 am in reply to: Color section with excess space & contact form don’t display in mobile #1430132Hi,
Thank you for the update.
We made edits in the Quick CSS field and tweaked the code a bit.The gap between the #service and #portfolio sections has now been reduced.
@media only screen and (min-width: 989px) { #service { margin-bottom: -250px; } #portfolio { position: relative; z-index: 10; } }Best regards,
IsmaelHi,
Thank you for the screenshots.
The default space between the testimonial title and comment should not be that big. Did you add any css modifications to the site? We may need to visit the site in order to properly inspect the elements. Please provide the site URL in the private field.
Best regards,
IsmaelJanuary 15, 2024 at 10:29 am in reply to: Container with breadcrumbs is not centered correctly in mobile version #1430128Hi,
Thank you for the update.
The login account above seems to be invalid. Please check the info carefully. To fix the style issue of the title container on mobile view, please add this css code.
@media only screen and (max-width: 1024px) { /* Add your Mobile Styles here */ .title_container .breadcrumb { position: relative; } }Best regards,
Ismael`Hi,
We adjusted the code a bit in order to redirect the site to the actual masonry page after closing the lightbox.
function ava_trigger_masonry_lightbox_on_load() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($) { setTimeout(function () { $('.av-masonry-container .av-masonry-item-with-image.lightbox-added:first').trigger('click'); }, 100); }(jQuery)); }); (function($) { $(document).ready(function () { $('.av-masonry-entry').on('mfpOpen', function(e /*, params */) { $('.mfp-close').on('click', function(e) { e.preventDefault(); const redirect = "https://www.95mctest.es/product2/" window.location.href = redirect }) }); }); }(jQuery)); </script> <?php } add_action( 'wp_footer', 'ava_trigger_masonry_lightbox_on_load', 99 );You can adjust the redirect URL by editing this line.
const redirect = "https://www.95mctest.es/product2/"Best regards,
IsmaelJanuary 15, 2024 at 5:49 am in reply to: Header is Not Transparent on Mobile or Different Size Browser Window #1430109Hi,
Why is it not recommended to have transparent header/logo on mobile?
Transparent or fixed headers on desktop are used to enhance site navigation by keeping the main menu accessible while scrolling. However, on mobile devices, users can easily return to the top of a page or site with double taps and other mobile phone gestures, making fixed headers unnecessary. Also, fixed headers consume space that is better allocated for actual site content, and they can also be distracting.
If you want to continue, you can add the code in the Enfold > General Styling > Quick CSS field or in the child theme’s style.css file.
Best regards,
IsmaelHey Chip Jones,
Thank you for your interest in the theme.
The Enfold theme is under continuous improvement, and updates are planned for the future. The team is committed to ensuring compatibility with the latest versions of WooCommerce, including version 8.2+, as well as the required PHP updates, such as PHP 7.4. You can always reach us here in the forum if you have any questions about the theme.
Best regards,
IsmaelHi,
UPDATE: You can also apply the grayscale effect by adjusting the Advanced > Animation > Image Hover Effect settings.
Best regards,
IsmaelHey imagestudios,
Thank you for the inquiry.
Looks like you’ve managed to apply gray scaling to the masonry items with this css code.
#top .av-hover-overlay-grayscale .av-masonry-entry .av-masonry-image-container { filter: grayscale(1); }To adjust the overlay color, try this css code.
#top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content { background: rgba(0,87,130,0.3); }Best regards,
IsmaelJanuary 15, 2024 at 5:26 am in reply to: Color section with excess space & contact form don’t display in mobile #1430104Hey bcndisseny,
Thank you for the inquiry.
1.) You can add the following css code to adjust the space below the floating columns. And consider changing the background color of the section from the default blue background to gray (#f8f8f8) so that it has the same background color as the section below.
#service { margin-bottom: -250px; }2.) The cell containing the contact form is configured to not display on mobile view. To change this, please edit the cell, go to the Advanced panel, and adjust the Responsive > Element Visibility settings.
Best regards,
Ismael -
AuthorPosts
