Forum Replies Created
-
AuthorPosts
-
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,
I see that you are using a custom header.php in your child theme with this function to achieve to apply the preloader only on the homepage (page-id-47):if(is_page(47)) $preloader = avia_get_option('preloader') == "preloader" ? 'av-preloader-active av-preloader-enabled' : 'av-preloader-disabled';to add the translated homepage to this you would add the page ID (page-id-424) like this:
if(is_page(47) || is_page(424)) $preloader = avia_get_option('preloader') == "preloader" ? 'av-preloader-active av-preloader-enabled' : 'av-preloader-disabled';I did this for you and it is working please check.
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 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,
Thank you for the login, the css that I recommended removing was still in the Quick CSS, I commented it out for you so it would not work and enabled the Page Preloading option and the main menu links are now working, please clear your browser cache and check.Best regards,
MikeJuly 7, 2022 at 11:52 am in reply to: Video and Text Block have Different Heights despite of Equal Hight in Row Layout #1357512Hey Ralf,
Thank you for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:#top.home #av_section_1 .avia-video { margin-bottom: 0; }After applying the css, please clear your browser cache and check.
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,
MikeHey blaircomm1,
Thanks for your question, unfortunately, we have not finished the specific documentation about the new features yet, to test the new demo I recommend setting up a localhost test site or a sub-domain test site and importing the demo to evaluate. We don’t recommend trying to import a demo to your live site as it will overwrite some of your settings.
In this thread we helped explain that in the new parallax demo many of the elements are using padding and margin to achieve some of the effects, perhaps this will help.Best regards,
MikeHi,
Glad Yigit 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 Ismael 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,
MikeJuly 7, 2022 at 12:34 am in reply to: Inline POPUP Enabler – popup backcground opacity and color #1357471Hi,
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,
MikeHi,
Thanks for sharing this Guenni007, it will be helpful with future questions where the user is using an older device and Safari.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,
As I understand your question, you would like to use a text element and show only part of a paragraph with an option to expand it to show the rest, unfortunately we don’t have a built-in option for this, as Nikko pointed out you could try the accordion element.
Another option would be to try the WP-ShowHide plugin and use it’s shortcode in your text element to wrap the part of the paragraph you wish to expand.
Please give this a try.Best regards,
MikeHi,
Thanks for the feedback, I see that you are getting this error:Uncaught ReferenceError: jQuery is not definedtypically this means that you are loading jQuery in your footer, try this script instead in your child theme functions.phpfunction article_categories_before_read_more() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $('article.post-entry').each(function() { $( this ).find('.blog-categories.minor-meta').insertBefore($(this).find('.read-more-link')); }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'article_categories_before_read_more');Best regards,
MikeHey Antonio,
Thank you for the link to your site and the screenshot, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function article_categories_before_read_more() { ?> <script> (function($){ $('article.post-entry').each(function() { $( this ).find('.blog-categories.minor-meta').insertBefore($(this).find('.read-more-link')); }); })(jQuery); </script> <?php } add_action('wp_footer', 'article_categories_before_read_more');Best regards,
MikeHi,
You have two errors, first your origin url is not wrapped in commas like the code I corrected above,
you have:if(evt.origin !== https://www.your.site) return ;
it should be:if(evt.origin !== 'https://www.your.site') return ;
second error is that you are still using the jQuery statement for the iframe.height
you have:iframe.height =${evt.data.resize.height}
it should be:iframe.height = evt.data.resize.height;
So it looks like you are using the old code instead of the corrected code.
If the code on your page backend is the new code I posted then you should try clearing your server cache, if it is an object-oriented cache such as Memcached, Redis, Varnish, Litespeed, etc. then it is still using the old page.
Please review this code, note that the urls are not your so you will need to adjust.<iframe id="nw-kokonaistarjooma" style="width: 100%; border: none; margin: 0; padding: 0;" src="https://www.your.site/index.html"></iframe> <script> (function() { const iframe = document.querySelector('iframe#nw-kokonaistarjooma'); window.addEventListener("message", evt => { if(evt.origin !== 'https://www.your.site') return ; if(evt.data.resize) { iframe.height = evt.data.resize.height; } }); }()); </script>Best regards,
MikeJuly 6, 2022 at 1:43 am in reply to: Tab Sections images are centered on the columns. How do i make them at the top? #1357339Hey staffordhrconsulting,
Thanks for the link to your page, I see inside the tab sections you are using two equal height columns with middle alignment, please choose top alignment so the image will be at the top and not the middle.
You need to make this adjustment in the first column in each tab section.

Best regards,
MikeHi,
It looks like the same code I posted, did you check to ensure that the quotes didn’t turn into curly quotes when you copied the code?
Otherwise, I will need to see a test page to see if you have any errors, as you noted this is working on my test page.Best regards,
MikeHi,
Thanks for the feedback, try adding this css to move the close “X” down and to the left and add a circle around it:div.avia-popup .mfp-iframe-scaler .mfp-close { top: 43px; border: 1px solid #fff; right: 40px; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey tammiviestinta,
Thanks for posting your code block snippet, but your javascript has errors and the iframe had the height set to auto with inline css, below is the corrected script and the link to my test page.Best regards,
MikeHi,
Thanks for pointing this out. As for the topic of supporting this plugin, I believe it is beyond the intended scope of our support, I would recommend directly using the webP images instead.Best regards,
MikeHi,
Sorry I thought the menu and search icon being stacked was an error, I returned it to the way it was and I made the mobile logo disappear on the mobile version only, when scrolling.
Please check.Best regards,
MikeHi,
Thanks, as I understand the plugin does this as a bulk operation so the user doesn’t need to individually change each image on the site to auto created webP images.Best regards,
MikeHi,
Guenni007 thanks for your example page and input, while Enfold does support direct use of webP, Chris_85 is not tring to do this, he wants to use the Imagify plugin that replaces the <img> tags with <picture> tags and then shows webP images, instead of just directly using the webP in the current <img> tags.Best regards,
MikeHi,
Glad Nikko was 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 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 Nikko was 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,
Thanks, now I’m getting an error “Google reCAPTCHA verification failed” but I don’t see a reCAPTCHA prompt on the login screen.
To recap the issue, the easy slider and full-screen slider work fine on other pages, just not on the homepage.
On the homepage images don’t appear and you are having trouble removing the sliders?
Please check if you have added any html tags in the slider captions or titles, if you have unclosed tags then it could case this issue and sometimes you won’t be able to remove the element and save the page, it will just keep showing it.
Try removing the slider completely and save the page then view the frontend, not the preview, and then try to edit again, is the slider still there?
If not try adding a new image with no title or caption and see if that works.Best regards,
Mike -
AuthorPosts
