Forum Replies Created
-
AuthorPosts
-
Hi,
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,
MikeNovember 24, 2019 at 3:27 am in reply to: Contact Form Element Not Being Sent To Email when filled out on phone #1159539Hi,
Sorry for the late reply, I tried your form on my Android phone but it didn’t send but unfortunately I was not able to capture any error codes, so I tried again on my desktop emulating a mobile device, but then it worked.Best regards,
MikeHi,
Sorry for the late reply, instead of using the Desktop, Tablet, & Mobile settings you can use css media queries which will give you far more control, for example iPad Mini landscape would look like:@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio: 1) { /* STYLES GO HERE */}on the page I linked to you will find many good examples that will target specific devices, and you can set the numbers to any size.
But in my experience targeting certain layers in the layerslider can be tricky, I recommend creating a duplicate of your slider with the layers the way you want them for these devices and use the media queries to show or hide the sliders, this approach works well because you don’t have to take into account the slider’s animation.
If you create a demo page with several sliders for the different screen sizes we could assist with the media queries so you can see how this would work.Best regards,
MikeHi,
Sorry for the late reply, unfortunately, we don’t have a function or a easy way to have your archive page to look the same as your single posts stacked all on one page. But if you really want this you could hire a freelancer on upwork.com to rewrite your archive.php creating a loop from your single.php code. Here is a good article about this.
Unfortunately, this is quite a bit more than we can provide here, but there are many talented people on upwork, we also highly recommend CodeableBest regards,
MikeNovember 24, 2019 at 1:57 am in reply to: Breakpoint anpassen für einen Slide-Show volle Breite #1159533Hey sabrina_noske,
Entschuldigen Sie die verspätete Antwort. Bitte versuchen Sie diesen Code im Feld Allgemeines Styling> Schnelles CSS oder im Feld WordPress> Anpassen> Zusätzliches CSS— Translated with Google —
Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
@media only screen and (min-device-width : 768px) and (max-device-width : 1193px) and (orientation : landscape) { #top.home #full_slider_1 { top:98px !important; } }Best regards,
MikeHi,
@Chili2908 & @dan_at_apaway
Is this modification still working without error?Best regards,
MikeHi,
Sorry for the late reply, this is a WordPress widget, found at:\wp-includes\widgets\class-wp-widget-rss.phpstarting on line 10.
You will notice if you activate the twentynineteen theme the same widget is available.Best regards,
MikeHi,
Danke, ich verstehe jetzt besser.
Was Sie also brauchen, ist ein Versatz für diese Bildschirmgröße. Das folgende Skript fügt nur den Links “li.menu-item-type-custom” in Ihrem Header einen Versatz von 124px hinzu und funktioniert bei kleinen Mobilgeräten aufgrund meiner Tests nicht das hat richtig funktioniert. Ich habe auch getestet, dass dies für Desktop-Geräte korrekt funktioniert.
Fügen Sie diesen Code am Ende Ihrer functions.php-Datei unter Darstellung> Editor hinzu:function custom_offset(){ ?> <script> (function($){ var width = $(window).width() if ((width >= 768)) { $('li.menu-item-type-custom a[href*="#"]:not([href="#"])').click(function() { var offset = -124; // <-- change the value here if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); if (target.length) { $('html, body').animate({ scrollTop: target.offset().top + offset }, 1000); return false; } } }); } else {} })(jQuery); </script> <?php } add_action('wp_footer', 'custom_offset');— Translated with Google —
Thank you, I understand better now.
So what you need is an offset for this screen size, the following script adds a 124px offset to only the “li.menu-item-type-custom” links in your header and it will not work for small mobile devices because in my tests that worked correctly. I also tested that this worked correctly for desktop devices.
Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_offset(){ ?> <script> (function($){ var width = $(window).width() if ((width >= 768)) { $('li.menu-item-type-custom a[href*="#"]:not([href="#"])').click(function() { var offset = -124; // <-- change the value here if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); if (target.length) { $('html, body').animate({ scrollTop: target.offset().top + offset }, 1000); return false; } } }); } else {} })(jQuery); </script> <?php } add_action('wp_footer', 'custom_offset');Best regards,
MikeHi,
Thank you for the screenshot, I added another line brake in the javascript only when the screen width is smaller than 768px:/* Breadcrumbs above the image */ //move breadcrumbs above post title function move_breadcrumb_below_title() { ?> <script type="text/javascript"> (function($) { function a() { var width = $(window).width() $('#top.single #main .avia-breadcrumbs').detach().insertBefore('h1.post-title.entry-title'); if ((width <= 768)) { $('#top.single #main .avia-breadcrumbs').append('<br/><br/>'); } else { $('#top.single #main .avia-breadcrumbs').append('<br/>'); } } a(); })(jQuery); </script> <?php } add_action('wp_footer', 'move_breadcrumb_below_title');Please note that when you test this you will have to reload the page for each screen width because the javascript loads on page load. This should be fine for real devices because the screen widths don’t naturally change from desktop to mobile.
Best regards,
MikeHey sasminka,
Vielen Dank für den Link, aber ich habe kein iPad mini. Bitte fügen Sie einen Screenshot des Fehlers bei, damit ich versuchen kann, ihn zu unterstützen.
Sie können Ihr Bild auf postimages.org hochladen und den Link in den Bereich “Privater Inhalt” einfügen.— Translated with Google —
Thank you for the link, but I don’t have a iPad mini, please include a screenshot of the error so I can try to assist.
You can upload your image to postimages.org and include the link in the Private Content area.Best regards,
MikeHi,
Thank you for the login, it looks like the images are not showing because of your Smush Pro “lazyLoad”, please try disabling lazyload.Best regards,
MikeHi,
Glad Jordan could 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,
MikeHey jfga1969,
I found the solution here and tested the function to ensure that it works:add_filter( 'woocommerce_thankyou_order_received_text', 'wpb_thankyou' ); function wpb_thankyou() { $added_text = '<p>You can access the PDF Download from the <a href="/account-page">My Account Page</a>.</p>'; return $added_text ; }Best regards,
MikeNovember 23, 2019 at 10:11 pm in reply to: Changing the Title and Excerpt Font Sizes on Search Results Page #1159515Hi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (min-width: 768px) { #top.search-results h2.entry-title { padding: 0 !important; } #top.search-results .search-result-counter { height: 150px !important; width: 150px !important; } #top.search-results article.post-entry { margin: 20px 0 !important; height: 150px !important; } #top.search-results .entry-content-header,#top.search-results .entry-content { margin-left: 120px !important; } }Please see the screenshot in Private Content area of the expected results.
Best regards,
MikeHi,
I took a look at the link you provided above and found it to work correctly, I also tested many other internal links on your site and they also worked. Please clear your browser cache and check again.Best regards,
MikeHi,
Glad we were able to help, we will close this now since this thread was started over a year ago and is quite long. Thank you for using Enfold. For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)For your information, you can take a look at Enfold documentation here
Best regards,
MikeHi,
Thanks, @ichtarzan for sharing the solution you found.Best regards,
MikeHi,
Sorry for the late reply, please see this post.
So in your case, Try adding this code to the end of your functions.php file in Appearance > Editor:add_action('wp_footer', 'ava_custom_script'); function ava_custom_script() { ?> <script> (function($){ function getQueryParams(qs) { qs = qs.split("+").join(" "); var params = {}, tokens, re = /[?&]?([^=]+)=([^&]*)/g; while (tokens = re.exec(qs)) { params[decodeURIComponent(tokens[1])] = decodeURIComponent(tokens[2]); } return params; } var $_GET = getQueryParams(document.location.search); $(window).load(function() { switch($_GET['tabsort']) { case '1': $('a[data-av-tab-section-title="1"]').trigger('click'); break; case '2': $('a[data-av-tab-section-title="2"]').trigger('click'); break; case '3': $('a[data-av-tab-section-title="3"]').trigger('click'); break; case '4': $('a[data-av-tab-section-title="4"]').trigger('click'); break; case '5': $('a[data-av-tab-section-title="5"]').trigger('click'); break; } }); })(jQuery); </script> <?php }and your link would look like
/?tabsort=5or/?tabsort=#waxing
If this doesn’t help, please include an admin login in the private content area so we can be of more assistance.Best regards,
MikeHi,
Thank you for the login and screenshot, to add more space please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top #header_main .inner-container { height: 90% !important; }Please feel free to adjust to suit, after applying the css, please clear your browser cache and check.
Best regards,
MikeNovember 23, 2019 at 7:27 pm in reply to: Updating to ENFOLD Version 4.6.2 from Version 4.2.6 #1159498Hi,
It looks like you are using the sameavia-builder-el-[number]for every page, but it will be different for every page and these numbers will change as you add or change elements. So lets useavia-builder-el-first&avia-builder-el-lastinstead, this represents the two columns with in the color sections.
We also know that we only need to change the second & forth color sections as long as each page follows the same left & right direction.
So please try this css instead:@media only screen and (max-width: 767px) { #top.page-id-2927 .post-entry-2927 .entry-content-wrapper { display: flex !important; flex-wrap: wrap !important; } #top.page-id-2927 #av_section_2 .flex_column.avia-builder-el-first { order: 2 !important; } #top.page-id-2927 #av_section_2 .flex_column.avia-builder-el-last { order: 1 !important; } #top.page-id-2927 #av_section_4 .flex_column.avia-builder-el-last { order: 3 !important; } #top.page-id-2927 #av_section_4 .flex_column.avia-builder-el-first { order: 4 !important; } #top.page-id-2950 .post-entry-2950 .entry-content-wrapper { display: flex !important; flex-wrap: wrap !important; } #top.page-id-2950 #av_section_2 .flex_column.avia-builder-el-first { order: 2 !important; } #top.page-id-2950 #av_section_2 .flex_column.avia-builder-el-last { order: 1 !important; } #top.page-id-2950 #av_section_4 .flex_column.avia-builder-el-last { order: 3 !important; } #top.page-id-2950 #av_section_4 .flex_column.avia-builder-el-first { order: 4 !important; } #top.page-id-2982 .post-entry-2982 .entry-content-wrapper { display: flex !important; flex-wrap: wrap !important; } #top.page-id-2982 #av_section_2 .flex_column.avia-builder-el-first { order: 2 !important; } #top.page-id-2982 #av_section_2 .flex_column.avia-builder-el-last { order: 1 !important; } #top.page-id-2982 #av_section_4 .flex_column.avia-builder-el-last { order: 3 !important; } #top.page-id-2982 #av_section_4 .flex_column.avia-builder-el-first { order: 4 !important; } }Best regards,
MikeHi,
Thank you for the feedback, I viewed the post in the Private Content area, but the little images in the sidebar are visible under “POST RECENTI” is this the element you are talking about?
But using css to hide the featured image on posts is quite small and would not make your site heavier.
Here is an example:#top.single-post .big-preview.single-big { display: none !important; }Best regards,
MikeHi,
I tried adjusting again, with this solution I added a little fade animation to hide the transformation,
this is the new functions.php code:function custom_logo_script(){ ?> <script> (function ($) { $(window).scroll(function() { var scroll = $(window).scrollTop(); if (scroll >= 1) { $("#header").addClass('scrolled'); } else { $("#header").removeClass('scrolled'); } }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_logo_script');this is the new css:
#header.av_header_transparency #header_main .av-logo-container .inner-container { height: 175% !important; overflow: visible; animation-name: fadeInOpacity!important; animation-timing-function: ease-in !important; animation-duration: 1.5s!important; } #top #header.scrolled img.alternate{ -webkit-animation-name: slideDown; -webkit-animation-timing-function: ease-out; -webkit-animation-duration: 0.5s; -webkit-animation-iteration-count: 1; -webkit-animation-fill-mode: forwards; } @keyframes fadeInOpacity { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes slideDown{ from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 0; } }please clear your browser cache and check.
Best regards,
MikeHi,
Sorry for the late reply, I tested some more and found that if I block the/enfold-child/style.cssfile from loading your page loads correctly. Please see the link and screenshot in the Private Content area.
Please try blocking the file in your browser dev tools and check your stylesheet.Best regards,
MikeHi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 430px){ #top.page-id-17448 #wrap_all #main .avia-slide-wrap { height: auto !important; margin-top: 60px !important; } #top.page-id-17448 #wrap_all #main .av-special-heading-h3.avia-builder-el-2 { margin-top: 10px !important; } }There is a known WordPress issue that it doesn’t always show our builder correctly in the preview, sometimes disabling the block editor and using the Classic Editor solves. I recommend saving your page with the Visibility set to private if you don’t want it visible to the public and checking that way.
For your LearnDash shortcode
[course_content course_id="1"]I believe that this shortcode belongs with the Uncanny LP addon, please see here for the list of shortcodes, yet it seems that the LearnDash shortcode is[ld_course_list num="1"]please see here for the list of shortcodes
I don’t have any experience with LearnDash, but this is what my research returned.Best regards,
MikeHi,
Sorry for the late reply, so for “sta-op stoel Arnhem” & “Thuisdemonstratie” on small mobile (320px) I was able to adjust them, on large mobile (425px) they showed correctly.@media only screen and (max-width: 424px) { #top.home .cme { width: 260px !important; margin-left: -20px !important; } #top.home .avia-builder-el-19 h2.kop-gradient { margin-left: -28px !important; } }But the “Wisselend assortiment” is too large to adjust this way. Is it possible that this one can have a shorter heading? If so we can duplicate the element and only show it on the small mobile screens. It may be better to do the same for the other elements instead of using the css above.
Another option may be to make the font-size smaller only for the small mobile screens.Best regards,
MikeHi,
Thank you, I’m trying to research this more, thank you for your patience.Best regards,
Mike -
AuthorPosts



