Forum Replies Created
-
AuthorPosts
-
Hi,
: Can I somehow load the logo url from the theme settings
Yes, that should be possible. We adjusted the $logo_url a bit.
$logo_url = avia_get_option( 'logo' );
Best regards,
IsmaelMay 1, 2025 at 6:32 am in reply to: Different font size for main menu links on desktop/mobile on overlay/slide out #1483429Hi,
Thank you for the update.
Try to add this css code to disable scrolling when the burger menu is open.
.av-burger-overlay-active { overflow: hidden; }
Best regards,
IsmaelMay 1, 2025 at 6:29 am in reply to: Transparent header on mobile, that goes solid on scroll #1483428Hi,
It seems to be working correctly when we checked. Please try to purge the cache or remove the browser history.
Best regards,
IsmaelHey sophie,
Thank you for the inquiry.
What happens when you temporarily turn off the minification or compression options from the WPFC plugin? Also, try to temporarily disable the Enfold > Performance > File Compression settings. Let us know if the issue persists.
Best regards,
IsmaelHi,
Thank you for the info. This is normal since the avia-layout-css is only loaded in the frontend or while using the Advance Layout Builder. It should not affect the site in any way.
Best regards,
IsmaelHey William,
Thank you for the inquiry.
You can adjust the image caption’s font size in the Styling > Image Caption panel. Please check the screenshot below.
Best regards,
IsmaelHey LUIGI,
Thank you for the inquiry.
Where exactly are you seeing this error? The layout.css file is loading correctly on our end, and we don’t see the same issue reported in Query Monitor.
<link rel="stylesheet" id="avia-layout-css" href="https://www.xxxxx.it/wp-content/themes/enfold/css/layout.css?ver=7.1" type="text/css" media="all">
Best regards,
IsmaelHey Manfred Zeitler,
Thank you for the inquiry.
The theme license is valid indefinitely — only the support license requires renewal. If you need to update the theme, please refer to the documentation below.
— https://kriesi.at/documentation/enfold/theme-update
Best regards,
IsmaelHi,
We edited the functions.php file and adjusted the hook as described above:
function avf_no_inline_svg_mod($attachment_id, $url) { $logo_url = 'xxxxxxxxxxxxxx'; if (($attachment_id && $attachment_id == $logo_id) || ($url && $url == $logo_url)) { return true; } return false; } add_filter('avf_no_inline_svg', 'avf_no_inline_svg_mod', 10, 2);
|| removed screenshot ||
Best regards,
IsmaelApril 30, 2025 at 6:56 am in reply to: Transparent header on mobile, that goes solid on scroll #1483374Hey Scanmark,
Thank you for the inquiry.
The sticky behavior and transparent layout options are disabled on mobile view by default but you can try this css code:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top #wrap_all #header { position: fixed; top: 0; } }
Best regards,
IsmaelHey konradanders,
Thank you for the inquiry.
Could you provide a screenshot of what you’re trying to do? Please note that the burger menu is dynamically generated on page load based on the default menu with certain limitations, so modifying it directly may not be possible.
Best regards,
IsmaelHey mountaintopengraving,
Thank you for the inquiry.
The site seems to be loading properly on our end. Where do you see these errors?
Best regards,
IsmaelHey luigi Giliberti,
Thank you for the inquiry.
Did you register an account in the forum using the purchase code? You have to go to the following link, then use the theme’s purchase code to register a new account here in the forum.
— https://kriesi.at/support/register/
Once registered, you should be able to open a new thread using the form in the following page.
— https://kriesi.at/support/forum/enfold/#new-post
The screenshots are not available in the private field.
Best regards,
IsmaelHi,
Looks like this is only set when you adjust the Enfold > General Styling > Typography > Default Content Font Size settings. This overrides the default body font size.
Best regards,
IsmaelHi,
Thank you for the update.
Did you remove the section? Please create a test page, then provide the login details in the private field so we can check the issue further.
Best regards,
IsmaelHi,
Did you keep the css code and adjust the column count? Please add the code again or post the login details in the private field so we can check the modification.
Best regards,
IsmaelHi,
We found a script error in the console which might be interfering with the script above.
Uncaught TypeError: crypto.randomUUID is not a function at HTMLDocument.<anonymous> (rapid-prototyping-3d-print/:792:56)
It’s from a CF7 script. You may need to fix it first or deactivate the plugin temporarily. We also recommend using a child theme and place the script there.
Best regards,
IsmaelApril 30, 2025 at 6:13 am in reply to: arrow to go back up for mobile and viewing testimonials #1483366Hi,
You may need to update the following css rules:
#top .avia-slideshow-arrows a.next-slide { right: -30px; } #top .avia-slideshow-arrows a.prev-slide { right: auto; left: -30px; }
Replace them with the code below:
#top .avia-testimonial-wrapper .avia-slideshow-arrows a.next-slide { right: -30px; } #top .avia-testimonial-wrapper .avia-slideshow-arrows a.prev-slide { right: auto; left: -30px; }
Best regards,
IsmaelHi,
Try to edit the Color Section with the ID “comment”, go to the Advanced > Developer Settings then replace the value in the Custom ID Attribute field.
Best regards,
IsmaelHey pachnerweb,
Thank you for the inquiry.
We checked the site but we are not yet sure why the builder is not loading properly. The builder loads fine on our end with the same version of the theme, 7.1. Have you tried deactivating the plugins? Also, try to download the latest version of the theme from your Themeforest account again, then re-update the theme via FTP.
— https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHey Rod,
Thank you for the inquiry.
Did you extract the actual enfold.zip file from the ThemeForest package? If the issue persists, you may need to update the theme manually via FTP.
— https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHi,
This is what we see on a clean installation of version 7.1.
And only –enfold-font-size-theme-content is declared in the themes/enfold/css/dynamic-css.php file, line 108.
Best regards,
IsmaelApril 29, 2025 at 6:15 am in reply to: arrow to go back up for mobile and viewing testimonials #1483326Hi,
Have you tried hiding the testimonial section on mobile view? You can toggle the Element Visibility settings in the Advanced > Responsive panel.
You can also use this css code to adjust the size of the testimonial section on mobile view:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial { padding: 0; font-size: 0.85em; } #top .av-large-testimonial-slider .avia-slideshow-arrows { position: absolute; width: 100%; bottom: 50px; } #top .avia-slideshow-arrows a.next-slide { right: -30px; } #top .avia-slideshow-arrows a.prev-slide { right: auto; left: -30px; } }
Best regards,
IsmaelHi,
Thank you for the update.
Which blog layout did you choose? Instead of adjusting the blog layout settings, try to add this filter in the functions.php file to change the blog style or layout of the category pages.
add_filter('avf_blog_style','avf_blog_style_mod', 10, 2); function avf_blog_style_mod($layout, $context){ if($context == 'archive') $layout = 'blog-grid'; return $layout; }
This should set the category pages to a grid layout.
Best regards,
IsmaelHi,
adjusting the slider’s image size for mobile so it runs full height?
You can replace the Fullwidth Easy Slider with Fullscreen Slider or use both, then adjust the Advanced > Responsive > Element Visibility settings to toggle the display of the sliders. You’ll have one slider for desktop and another for mobile view.
To adjust the position of the caption, go to the Styling > Caption panel, then adjust Caption Positioning settings.
Best regards,
IsmaelHey MomentumMarketingSupport,
Thank you for the inquiry.
You may need to avoid using the ID “comment” for the color section because this css rule gets applied to it.
#comment { width: 602px; height: 150px; padding: 10px 7px; font-size: 12px; margin: 0; }
This is how it looks when the height property is disabled.
Best regards,
IsmaelHey fanlokbun,
Thank you for the inquiry.
You can use this css code to hide the logo on mobile view and make the header transparent.
/* Mobile Styles ================================================== */ /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */ @media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top #wrap_all .av_header_transparency { position: fixed; background-color: transparent; } .responsive #top .av_header_transparency.av_alternate_logo_active .logo a>img, .responsive #top .av_header_transparency.av_alternate_logo_active .logo a>svg, .responsive #top .logo { display: none; } }
Best regards,
IsmaelHi,
Have you tried removing the css code? Keep the css rules with the #chsearchbox selector, or replace it with:
#top #chsearchbox #searchsubmit, #chsearchbox .ajax_load { width: 62px; height: 100%; line-height: 40px; position: absolute; right: auto; top: 0px; z-index: 2; min-width: 40px; left: 8%; padding: 0px; margin: 0px; border-radius: 0px; background: url("https://riseandshine.childrensnational.org/wp-content/uploads/2017/07/ch-search-icon.png") center center / contain no-repeat; background-position: center center; }
Best regards,
IsmaelHey Diana,
Thank you for the inquiry.
Are you trying to make the document automatically scroll and open the tabs when the links are used? If so, you can try adding this script in the functions.php file:
add_action('wp_footer', function() { ?> <script> document.addEventListener('DOMContentLoaded', function() { (function($) { function scrollToTab(selector, eventType) { $(selector).on(eventType, function(e) { var hash = eventType === 'load' ? window.location.hash : $(this).attr('href').split('#')[1]; if (!hash) return; var tab = $('.av-section-tab-title[href="#' + hash + '"]'); if (tab.length) { var parent = tab.closest('.av-tab-section-outer-container'); var pos = parent.offset(); tab.trigger('click'); setTimeout(function() { $(window).scrollTop(pos.top - 100); }, 100); } }); } scrollToTab('.avia-buttonrow-wrap a', 'click'); scrollToTab(window, 'load'); })(jQuery); }); </script> <?php });
Best regards,
Ismael -
AuthorPosts