Forum Replies Created
-
AuthorPosts
-
July 5, 2025 at 12:31 pm in reply to: Reservierungsseite – Datumsfeld den auszuwählenden Zeitraum einschränken #1486336
Hi,
Thanks for sharing Guenni007, perhaps someone will find this helpful.
@shop802 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,
MikeJuly 4, 2025 at 11:37 pm in reply to: Reservierungsseite – Datumsfeld den auszuwählenden Zeitraum einschränken #1486331Hey shop802,
Try adding this code instead to the end of your child theme functions.php file in Appearance ▸ Editor:function my_datepicker_limits() { ?> <script type="text/javascript"> jQuery(document).ready(function($){ // Use a short delay to wait for Enfold to initialize the datepicker setTimeout(function() { var $dateField = $('.avia_datepicker'); // Adjust this if needed if ($dateField.length && $dateField.data('datepicker')) { $dateField.datepicker('option', { minDate: new Date(2025, 7, 8), // August 8, 2025 maxDate: new Date(2025, 7, 18) // August 18, 2025 }); } else { console.warn("Datepicker not initialized or selector not found."); } }, 500); // delay to allow Enfold scripts to finish }); </script> <?php } add_action('wp_footer', 'my_datepicker_limits', 30);
Best regards,
MikeHi,
I disabled your cache, try clearing your browser cache and check now.Best regards,
MikeHi,
Then use this instead:add_filter('avf_title_args', 'replace_blog_title_with_custom_text', 10, 2); function replace_blog_title_with_custom_text($title, $id = null) { if (is_single()) { $title['title'] = 'Your Custom Title Here'; // Replace with your desired title } return $title; }
Change ‘Your Custom Title Here’ in the code to suit.
Best regards,
MikeHey Oriano,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:add_filter('avf_title_args', 'remove_blog_prefix_from_title', 10, 2); function remove_blog_prefix_from_title($title, $id = null) { if (is_single() && strpos($title['title'], 'Blog -') === 0) { // Remove "Blog -" prefix $title['title'] = trim(str_replace('Blog -', '', $title['title'])); } return $title; }
If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
and ensure that it is activated, then add the above code and save.Best regards,
MikeHi,
I don’t think that the theme option in our documentation is what you want. The theme option displays the author image (with a link to the author page) beside the feature image of the post.
But only if you choose Enfold > Blog Layout > Single post Option > Single post style > Multi Author Blog.
If you read the documentation carefully it says to add a author box you need to add PHP & CSS:
In my test this works:
But you need to add the link manually in the profile:
I thought the thread that I posted to above covered this with a different PHP solution, you would not want to use both at the same time.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,
Try this plugin: User Profile Picture or this one: User Profile PictureBest 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,
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,
MikeHi,
@oestersund did you try the solution that I posted? I tested it on your site and it works.
I also included the steps on how to add it to your site.Best regards,
MikeHey Silvia,
Try this thread, please read the whole thread.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.Please note that using the contact form is not appropriate for support questions, please log in to the support forum and open a new thread if you need further assistance.
If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.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,
MikeJune 30, 2025 at 9:55 pm in reply to: Flatpickr Date Picker – Year Dropdown Not Displaying in Fluent Forms #1486171Hi,
The element is controlled by the plugin, not the theme. There is not a practical way to remove the style of a single element from a plugin.Best regards,
MikeHi,
When I check, on mobile, before scroll, the logo is transparent. It is only after scroll do I see an issue with the small round one.Best regards,
MikeJune 29, 2025 at 6:04 pm in reply to: Accessibility Issue with Scroll-to-Top Button (ARIA-hidden focusable element) #1486111Hi,
The plugin Header Footer Code Manager is limited and only allows HTML & JS, where WPCode allows these and PHP & CSS, in the past I tested both and found WPCode, the free version, to be much better considering that most snippets are PHP. I would recommend replacing Header Footer Code Manager with WPCode, or use a child theme.
But since your AXE & WAVE is not reporting the change to aria-hidden correctly I don’t think that we can create a solution that will help. If you watch the DOM in the browser you will see that the aria-hidden does change on scroll. We could set the aria-hidden to false always, but then on page load you would see an error, instead of after scroll. I would hope that a real screen reader would report this correctly and recognize changes to the DOM in real time, unlike the testing tools, otherwise you may need to disable this Scroll-to-Top feature.
To request the Dev Team to review this, please open a new Github Feature Request to place a request and follow it as the Dev Team reviews it.Best regards,
MikeHi,
When I check on mobile after scroll the round logo is transparent but it has a background-color, try this css to remove it:@media only screen and (max-width: 990px) { #header.header-scrolled .logo a { background-color: transparent; } }
Best regards,
MikeHey Stefan,
Please link to the test page with the transparent png image so we can examine.Best regards,
MikeHi,
Try creating the /wp-content/upgrade-temp-backup folder manually, then set the permission to 775.Best regards,
MikeHi,
Thanks for your help Guenni007, but in my test it seems that only targeting the ID “#av_section_1” didn’t help, I tried adjusting toconst container = document.querySelector('#av_section_1 .av-parallax-object');
to target the text in the parallax but as you pointed out it was jerky for the speed needed.
With trial and error and AI I found that this javascript & css works well for desktop & mobile and smooths out most all the jerk from the text and background image.
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function move_text_in_parallax_down_on_scroll() { ?> <script> document.addEventListener("DOMContentLoaded", function () { const el = document.querySelector("#av_section_1 .av-parallax-object"); const bg = document.querySelector("#av_section_1 .av-parallax"); if (!el || !bg) return; const isMobile = window.innerWidth < 768; const textSpeed = isMobile ? 0.9 : 0.7; const bgSpeed = isMobile ? 0.3 : 0.2; let currentYText = 0; let currentYBg = 0; const updateParallax = () => { const scrollY = window.scrollY || window.pageYOffset; // Text transform const targetYText = scrollY * textSpeed; currentYText += (targetYText - currentYText) * 0.05; el.style.transform =
translateY(${currentYText}px)
; // Background transform const targetYBg = scrollY * bgSpeed; currentYBg += (targetYBg - currentYBg) * 0.05; bg.style.transform =translateY(${currentYBg}px)
; // GPU accelerated requestAnimationFrame(updateParallax); }; requestAnimationFrame(updateParallax); }); </script> <style> #av_section_1 .av-parallax-object { position: relative; top: 0; left: 0; will-change: transform; backface-visibility: hidden; transform: translateZ(0); } #av_section_1 { position: relative; overflow: hidden; } #av_section_1 .av-parallax { background-attachment: scroll !important; /* disables fixed scroll handling */ background-position: center center !important; transform: none !important; will-change: auto !important; } </style> <?php } add_action( 'wp_footer', 'move_text_in_parallax_down_on_scroll', 99 );If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
and ensure that it is activated, then add the above code and save.Best regards,
MikeHey Tilman,
Thank you for your patience, but I don’t understand what you wish to do. Do you want the text to move down as you scroll? Perhaps if you could explain further.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,
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,
For https://shop.cameleon.design/account/edit-account/ you can try this css:.woocommerce-account input { font-size: 16px !important; }
but for https://shop.cameleon.design/checkout/ the only fields are the stripe payment info and this is in an iframe which you can not change locally.
Best regards,
MikeJune 28, 2025 at 8:05 pm in reply to: Flatpickr Date Picker – Year Dropdown Not Displaying in Fluent Forms #1486082Hi,
Please note that the Fluent Forms month field is a select div with options using this css:#top select { -webkit-appearance: none; border-radius: 0; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAANCAYAAAC+ct6XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjBBRUQ1QTQ1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjBBRUQ1QTU1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGMEFFRDVBMjVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGMEFFRDVBMzVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk5mU4QAAACUSURBVHjaYmRgYJD6////MwY6AyaGAQIspCieM2cOjKkIxCFA3A0TSElJoZ3FUCANxAeAWA6IOYG4iR5BjWwpCDQCcSnNgxoIVJCDFwnwA/FHWlp8EIpHSKoGgiggLkITewrEcbQO6mVAbAbE+VD+a3IsJTc7FQAxDxD7AbEzEF+jR1DDywtoCr9DbhwzDlRZDRBgACYqHJO9bkklAAAAAElFTkSuQmCC); background-position: center right; background-repeat: no-repeat; border-radius: 2px; }
showing a image for the drop down giving you this:
and when you click on it shows the options:
since the year is not a select div with options, but a input with spans you will not see this or the same image.
I wrote this css to override the plugin css:#top .numInputWrapper .arrowUp, #top .numInputWrapper .arrowDown { opacity: 1; display: flex; align-content: center; align-items: center; flex-wrap: wrap; margin-top: -5px; } .numInputWrapper span.arrowUp:after, .numInputWrapper span.arrowDown:after { top: 0; height: 14px; } #top .numInputWrapper .cur-year { margin-bottom: 14px; }
but this is about as close as we can get it, since we can not support third party plugins, if you need more help with this please ask the plugin author to examine. I don’t see any theme css causing this issue.Best regards,
MikeHi,
When I login to your site I can not change the user profile language to Eng, nonetheless I don’t see a menu: TKA Menu mobile that you wanted to be the mobile menu:
you would need to create this menu and choose it at Enfold Theme Options ▸ Main Menu ▸ General ▸ Alternate Menu For Mobile as you see here you are using the same main menu for mobile:
Perhaps there is a language issue, if so please change the user language to Eng so I can check again. But I would think that since I see TKA Main Menu I would see a TKA Menu mobile for the mobile menu.Best regards,
Mike -
AuthorPosts