Forum Replies Created
-
AuthorPosts
-
Hi,
Sorry for the late reply, the best solution, in this case, is to create a second slider for mobile devices. You can clone your desktop version and then adjust the canvas size to match mobile, that is to make it taller than wide 425px x 168px or how ever tall you wish it to be.

Then you can make your text and buttons larger and align them on the page as you like.
Then you can use css to hide and show the two sliders depending on the screen size, for example:@media only screen and (min-width: 768px) { #layerslider-1 { display: block !important; } #layerslider-2 { display: none !important; } } @media only screen and (max-width: 767px) { #layerslider-2 { display: block !important; } #layerslider-1 { display: none !important; } }If you would like help with the css please create the slider and include admin login in the Private Content area so we can examine the sectors and write the css.
Best regards,
MikeHi,
Glad Ismael could help direct you in the right direction, shall we close this then?Best regards,
MikeHi,
Sorry for the late reply, I was able to add your product to the coupon only by entering the slug “Quartz-banger-1”
if I entered only “Quartz” it would not show, odd.
Anyways now you can fill out the other fields and start using it.
Please see the screenshot in Private Content area.Best regards,
MikeAugust 18, 2019 at 1:17 am in reply to: GDPR / DSGVO: Cookie Settings auf standardmäßig OPT-IN setzen? #1128561Hi,
Sorry but there is no ETA at this time, but I can tell you there is a lot of activity on this on this on our GitHub page so it is moving forward quickly. Thank you for your patience.Best regards,
MikeHi,
Sorry for the late reply, Please include an admin login in the Private Content area so we can investigate.Best regards,
MikeHi,
Sorry for the late reply, and thank you for the link. It seems that your slider is showing, Please see the screenshot in Private Content area. But I didn’t find an admin login above so I’m not sure if something is missing. Is this the correct slider?Best regards,
MikeHi,
Sorry for the late reply, and thanks for the link. This occurs because the “Home” menu item url points to “/#top” and not the url of your frontpage. To correct this Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.page-id-685 header_color .main_menu ul:first-child > li > a,#top.page-id-685 .header_color .main_menu ul:first-child > li.current-menu-item > a { color: #505050 !important; } #top.page-id-685 .header_color .avia-menu-fx { background-color: transparent !important; }Best regards,
MikeHi,
Sorry for the late reply, yes you can, it is only a matter of using a video instead of an image. Please see the LayerSlider documentation here.Best regards,
MikeHey Jak73,
Sorry for the late reply, for the layerslider the best option, in this case, is to create two layersliders, one for desktop and one for mobile, ensuring that the canvas of the slider is the same ratio as a mobile device. That is taller than wide.
Then use a css media query to show & hide them for the proper device, for example:@media only screen and (min-width: 768px) { #layerslider-1 { display: block !important; } #layerslider-2 { display: none !important; } } @media only screen and (max-width: 767px) { #layerslider-2 { display: block !important; } #layerslider-1 { display: none !important; } }If you would like some help with the css to do this, please create your mobile layerslider and include both sliders on a test page so we can examine the sectors.
Best regards,
MikeHi,
Sorry for the late reply, and thanks for the link and screenshot.
You are correct that this has to do with the aspect ratio of the video, if it was an image we could use background-size: contain to adjust better. Another issue is that the video is in an “iframe” so we can only adjust the container of the iframe and not the container that is in the iframe, which holds the video.
But this css should help for mobile:@media only screen and (max-width: 767px) { #av-layout-grid-1 .avia-video { margin-bottom: 0 !important; } }Please clear your browser cache and check.
Best regards,
MikeHi,
Sorry for the late reply, yes you can use the media queries to show different elements for different screen sizes, while hiding others. I examined your page and found that you are doing this now with the “screen options” in the elements for two sections #av-masonry-1 & #av-masonry-2
Please see the screenshot in Private Content area.
So I will use this as an example so you could use the following css in the Quick CSS instead of the screen options:@media only screen and (min-width: 768px) { #av-masonry-1 { display: block !important; } #av-masonry-2 { display: none !important; } } @media only screen and (max-width: 767px) { #av-masonry-2 { display: block !important; } #av-masonry-1 { display: none !important; } }I hope this example helps to make this tactic clearer, please let us know if we can be of more help.
Best regards,
MikeHi,
Entschuldigung für die verspätete Antwort, ich sehe, dass Ihr Schieberegler auf Ihrer letzten Folie stehen bleibt, auch wenn ich nach unten und nach oben scrolle. Haben Sie dies gelöst, indem Sie die Zykluseinstellung im oben geposteten Layerslider-Screenshot @victoria festgelegt haben?— Translated with Google —
Sorry for the late reply, I see that your slider stops on your last slide even if I scroll down and back up, did you solve this by setting the cycle setting in the layerslider screenshot @victoria posted above?
Best regards,
MikeHi,
Sorry for the late reply, when I view your site the video is working for me every time. I followed @Guenni007’s suggestions and tried this css which placed a centered image in the video overlay, please try adding it to your Quick CSS:#top.page-id-40931 #full_slider_1 .av-click-overlay { background-color: transparent; opacity: 0.6; background-image: url(https://qsk52xngql-flywheel.netdna-ssl.com/wp-content/uploads/2019/08/High.jpg); background-repeat: no-repeat; background-position: 50% 30%; }Please see the screenshot in Private Content area.
Best regards,
MikeAugust 17, 2019 at 8:56 pm in reply to: Icon list animation not working in tab section when clicking on a link #1128507Hi,
Thank you for the login, I have written this script for you to add to your functions.php it adds the class “avia_start_animation” to the li of the list when the page scrolls.
You can adjust the distance to suit your needs, if you use 100 the animation will occur before you see it, and if you use the 400 that it is set in it now then you will see the animation because you are scrolling that far down. I was not sure if you want to see the animation or not.function custom_start_animation(){ ?> <script> (function ($) { $(window).scroll(function() { var scroll = $(window).scrollTop(); if (scroll > 400) { $('.avia_animate_when_almost_visible.avia-iconlist-animate li').addClass('avia_start_animation'); } else { } }); })(jQuery); <?php } add_action('wp_footer', 'custom_start_animation');Best regards,
MikeAugust 17, 2019 at 7:23 pm in reply to: when updating a page, the page double and make html errors #1128503Hi,
Sorry for the late reply and for the test page.
I saw that your page content was doubling up on that page so I Enabled Avia Layout Builder Debugger and the shortcode parser found errors in the shortcode structure, so I ran the auto fix and now your page is fixed.
Please clear your browser cache and check.Best regards,
MikeHi,
Sorry for the late reply, I have tried to read the entire thread to catch up and assist, so I’m looking at the page in the Private Content area and I see that in moble the div container for the slider is much larger than the slider in it. Please see the screenshot in Private Content area.
To correct I added this css to your Quick CSS, in all 3 languages:#layer_slider_1.avia-layerslider { min-height: 0 !important; }This page is now correct for me, I also checked a few other pages and they seem fine too, please check.
Please clear your browser cache and check.Best regards,
MikeHi,
Sorry for the late reply, for your “Impressum” and “Darenschutz” in the footer, this script will highlight the footer menu items based on if the top bar menu links are highlighted.
I was not sure what styling you wanted for the footer menu so I made it the same red.
Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_footer_menu_script(){ ?> <script> (function($){ $(function() { if ($('#menu-item-30').hasClass('current-menu-item')) { $('#menu-item-28 a').css('color', '#69183c'); } else if ($('#menu-item-31').hasClass('current-menu-item')) { $('#menu-item-29 a').css('color', '#69183c'); }else{ } }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_footer_menu_script');Best regards,
MikeHi,
Rob, thanks again for sharing your solution and explaining, this makes a lot of sense.Best regards,
MikeAugust 17, 2019 at 4:32 pm in reply to: Icon list animation not working in tab section when clicking on a link #1128487Hi,
Thank you, I do not see an admin login in the Private Content area, please try again.
If you also include FTP access I will upload the latest beta version for you.Best regards,
MikeAugust 17, 2019 at 4:22 pm in reply to: Enfold 4.5 Theme Update "Update Failed: Download failed. A valid URL was not pro #1128486Hi,
@siljerang
I believe you mean this is solved, please confirm.“No it worked” = “Now it worked”
Best regards,
MikeHi,
Glad to hear @JoeSurf, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
The jQuery code I posted last will not work in the Quick CSS field, that area is only for css.
If you include an admin login I can demonstrate on a test page, or even on the one page you are working on.
Or you can download the test page shortcode that I wrote about.
But if you are fine with it as it is that ok too :)Best regards,
MikeAugust 17, 2019 at 6:35 am in reply to: WP-Woocomm-Enfold-Germanized…..Code wird unerwünscht im im Warenkorb angezeigt #1128454Hey AB,
Entschuldigung für die verspätete Antwort. Wenn ich richtig verstanden habe, dass Sie Enfold v4.5.3 mit Woocommerce verwenden, gab es ein Problem mit dieser Version. Bitte aktualisieren Sie auf v4.5.7
Leider müssen Sie mit v4.5.3 über FTP aktualisieren.
Der einfachste und sicherste Weg, dies zu tun, besteht darin, die neueste Version von Theme Forest herunterzuladen und Ihr aktuelles Thema per FTP in “Enfold-Old” umzubenennen. Laden Sie dann das neue “Enfold” hoch und überprüfen Sie, ob Ihre Site ordnungsgemäß funktioniert.
Wenn Sie zufrieden sind, können Sie das “Enfold-Old” über FTP löschen (nicht die WP-Themenseite).
Wenn Sie aus irgendeinem Grund ein Rollback auf die alte Version durchführen möchten, ist dies ganz einfach. Benennen Sie das neue “Enfold” einfach über FTP in “Enfold-New” um und benennen Sie es dann in “Enfold” um und aktualisieren Sie es anschließend Seite.
Bitte versuchen Sie nicht, den Themenordner zu überschreiben, da dies alte Dateien hinterlässt und Fehler verursacht.Wenn Sie sich dabei nicht wohl fühlen, können wir Ihnen behilflich sein. Wir benötigen jedoch einen Administrator-Login und einen FTP-Zugang im Bereich Private Inhalte.
— Translated with Google —
Sorry for the late reply, If I understand correctly you are using Enfold v4.5.3 with Woocommerce, we did have an issue with this version, please update to v4.5.7
Unfortunately, with v4.5.3 you must update via FTP.
The easiest and safest way to do this is to download the newest version from Theme Forest and rename your current theme to “enfold-old” via ftp then upload the new “enfold” and check that your site is working correctly.
Once you are happy you can delete the “enfold-old” via ftp, (not the WP theme page)
Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.If you do not feel comfortable doing this we can assist, but we will need an admin login and FTP access in the Private Content area.
Best regards,
MikeAugust 17, 2019 at 6:21 am in reply to: Enfold Security – Suspicious Functions (Unsanitized + Unserialized User Inputs) #1128451Hey Mahdi,
Sorry for the late reply, I have compared these to our files and they are correct.
This is as our dev team has intended.
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
Thanks for the link, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.page-id-44 .av_toggle_section .activeTitle { border-bottom-color: #0077ff !important; }Then clear your browser cache and check.
Best regards,
MikeHey jillinnemann,
Thank you for the link and the mock-up image.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.page-id-1346 .av_one_third.av-zero-column-padding .av_promobox:first-child { margin-bottom: 0 !important; } #top.page-id-1346 .av_one_third.av-zero-column-padding .av_promobox:nth-child(2) { margin-top: 0 !important; }Best regards,
MikeHi,
Thanks for the link, as I understand, when you click the pagination that is below the grid blog element, the top two post will be hidden. Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.page-id-15.paged .post-entry-type-standard { display: none !important; }Best regards,
MikeHi,
Sorry for the late reply, I did not figure out why this is not working, I’m sure the css is correct with the proper “-moz-” prefixes, so I tried changing it to jQuery and now it works in Chrome and Firefox.
To test this, please add a code block element to your page and place this code inside:<script> (function($){ $(document).ready(function () { $('.btn2 a.avia-button').css({ 'color': 'rgba(255,255,255,0.9)', 'border-radius': '50px', 'background': 'linear-gradient(-45deg, #FFA63D, #FF3D77, #338AFF, #3CF0C5)', 'border-color': 'transparent', 'background-size': '600%', 'animation': 'anime 16s linear infinite' }) }); })(jQuery); </script> <style> @keyframes anime { 0% { background-position: 0% 50%;} 50% { background-position: 100% 50%;} 100% { background-position: 0% 50%;} } </style>We could make this code global, but first, test it on one page to see if it’s also working for you.
If you would like to test this on a new page, please Enable Avia Layout Builder Debugger which will add a new text field below the Advanced Layout Builder, and then add the page shortcode in the link below, then save the page.
https://www.dropbox.com/s/641pwwo7eukd5ts/gradient_button_shortcode.txt?dl=0Best regards,
MikeAugust 16, 2019 at 10:51 pm in reply to: Enfold 4.5 Theme Update "Update Failed: Download failed. A valid URL was not pro #1128391Hi,
Glad to hear that it helped, for your demo import, is the “frontpage” page getting set in the theme options after the import?

Sometimes this field is not set so the frontpage is not looking correct, please check. If the images are not importing also this could be a PHP setting, Please ask your webhost to check your PHP settings to see if the secure options are activated.
“allow_url_fopen, “allow_url_include” and “register_globals” are “off”
Try turning these “on”.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
Mike -
AuthorPosts
