Forum Replies Created
-
AuthorPosts
-
January 25, 2025 at 8:38 pm in reply to: Images open in new page instead of presenting as lightbox #1475789
Hi,
Glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Please include the domain URL so we can login.
If your demo import error is “cURL error 28” then this typically a webhost that blocks our demo files IP address, such as OVH hosting.
If it is another error, then typically this is a webhost that doesn’t have the PHP ZipArchive Extension enabled on the server. This is typically enabled by default, but some servers beginning with PHP v8 forgot to enabled, so check with your webhost.
What demo are you trying to install?Best regards,
MikeHey schweg33,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.responsive .page-id-3302 #av_section_1 .container { max-width: 100%; padding: 0; } .page-id-3302 #layer_slider_2.avia-shadow { box-shadow: none; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
I also don’t see any errors on your homepage, please post a screenshot of what you see and the browser / OS that you are using.
To add a screenshot please try using an Screenshot service and pasting the image URL in your post.Best regards,
MikeHi,
Glad that this helped, we don’t have a list of all ALB classes as it would be too extensive, but the best way to find classes is to review the element via the browser Dev Tools inspector.
I have recommend adding more documentation for the horizontal gallery, this may take some time.
Shall we close this thread?Best regards,
MikeHi,
Please note that adding the code above and regenerating the thumbnails will not remove the old images that you want to remove, you will need to remove them via FTP or your cPanel file manager.Best regards,
MikeHey ebenanders,
It looks like you need to create a new PDF with a new name.
If you still have issues, please include a admin login for us and upload the new PDF with a link to it for us to see.Best regards,
MikeJanuary 23, 2025 at 10:41 pm in reply to: Issue with bottom of being cut off in Advanced Layerslider #1475688Hi,
Please try disabling your WP Rocket plugin and disable 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 CDN and server cache that you may have enabled. This may that 24 hours to clear.
Then clear your browser cache and check.Best regards,
MikeHey Mark,
It looks like your Font Awesome script is coming from revslider and not from your site, typically you need to add Font Awesome to your functions.php as Enfold doesn’t add it. See here, note that some versions are paid only and old versions may no longer work. See this example Note that it is an old Font Awesome CDN code so you may need to update.
Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
You could review the file at config-templatebuilder/avia-shortcodes/contact/contact.php
but changing this file will make all of the forms have the same result, you are best to use a different form on each page with a unique “E-Mail Subject” as posted above.Best regards,
MikeHi,
Glad to hear that you have this sorted out, shall we close this topic?
Please open a new thread for each issue as it will help the Mods and future users.Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey Arthur,
The two sites that you linked to do not seem to be using the Enfold theme. It looks like a custom theme using Elementor.
Try asking your web developer for assistance.Best regards,
MikeHey navindesigns,
Your skip link is pointing to the ID “#content”, but this is not a valid ID, try adding this ID to your page.
Are you using a custom script or a plugin to add this? I don’t have this on my test site.Best regards,
MikeJanuary 21, 2025 at 10:24 pm in reply to: Issue with bottom of being cut off in Advanced Layerslider #1475515Hey snitt,
When I check your page I don’t see that your LayerSlider is cut off, I see that the content slider is cut off due to this error:
(index):875 Uncaught TypeError: Cannot read properties of undefined (reading 'isMobile')
from this custom code in your functions.php:add_action('wp_footer', 'ava_auto_height'); function ava_auto_height(){ ?> <script> (function($){ function c() { if( $.avia_utilities.isMobile ) return; $('#content-slider-height-same .slide-entry').css('height', ''); var elementHeights = $('#content-slider-height-same .slide-entry').map(function() { return $(this).outerHeight(); }).get(); var maxHeight = Math.max.apply(null, elementHeights); $('#content-slider-height-same .slide-entry').height(maxHeight); } $(window).on('load', function() { c(); }).load(); })(jQuery); </script> <?php }
Is this what you are talking about?
Changing to this seems to solve after your WP Rocket plugin is cleared:add_action('wp_footer', 'ava_auto_height'); function ava_auto_height(){ ?> <script> (function($){ function c() { //if( $.avia_utilities.isMobile ) return; $('#content-slider-height-same .slide-entry-excerpt').css('height', ''); var elementHeights = $('#content-slider-height-same .slide-entry-excerpt').map(function() { return $(this).outerHeight(); }).get(); var maxHeight = Math.max.apply(null, elementHeights); $('#content-slider-height-same .slide-entry-excerpt').height(maxHeight); } $(window).on('load', function() { c(); }).load(); })(jQuery); </script> <?php }
I set your code back to the way you had it, please check.Best regards,
MikeHey whdsolutions,
You could try this solution, but it is not meant to show for products, as the layout placement shows the sidebar under the product image.Best regards,
MikeJanuary 19, 2025 at 7:26 pm in reply to: How to customize length of the excerpt text in grid layout of blog post widget? #1475388Hey togetherconcept,
Try this solution:note that you may need to adjust for the special charters “quotes” in the code.
Or perhaps this one:but note that the grid layout with the “read more” is only for some theme layouts so we would need to see your site with admin access to investigate feather.
Best regards,
MikeJanuary 19, 2025 at 7:11 pm in reply to: Enfold forces Woocommerce product images to be cropped and square #1475387Hi,
Glad that this helps, the backend Featured image thumbnail is a WordPress function and I don’t know how to change this. But as you pointed out your customers won’t see this. Shall we close this thread then?Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeJanuary 19, 2025 at 6:59 pm in reply to: Can’t save pages/posts with classic editor and Enfold theme #1475384Hi,
Thanks for your feedback, I nor the Dev Team could reproduce this so it is hard for us to investigate further. I’m glad that this solution is working for you.
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
Mike -
AuthorPosts