Forum Replies Created
-
AuthorPosts
-
Hi,
Glad to help, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeHi,
Thanks for the login, I adjusted the script to this:function custom_script(){ ?> <script> (function($){ $('body').on("click", ".lightbox,.lightbox-added", function () { setTimeout(function(){ $('button.mfp-close').trigger('click'); }, 200); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');please check.
Best regards,
MikeHi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.avia-icongrid li:hover .avia-icongrid-content { opacity: 1; visibility: visible; }Best regards,
MikeHi,
Ok, this script gets the menu text & the menu subtext and adds it to the menu link “a” as an alt attitude.
Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_menu_alt_subtext_script(){ ?> <script> (function($){ $(document).ready(function(){ $(".menu-item-top-level").each(function(){ var menu_title = $(this).find(".avia-menu-text").first().text(); var menu_subtitle = $(this).find(".avia-menu-subtext").first().text(); $(this).find("a").first().attr("alt", menu_title +' | '+ menu_subtitle); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_menu_alt_subtext_script');and remove the other script, then clear your browser cache and check.
Best regards,
MikeHi,
I removed some css expecting some changes, but it seems that you have some server cache, so I will check back later to see if it has cleared.
If you can disable any server cache, that would be nice.Best regards,
MikeHi,
Thank you for the video and the new link, I understand better now, the script from the thread was for a slightly different issue, for you, I see portions that should be removed. Please remove the script above from your functions.php so I can test some changes on my end, or please include admin login in the Private Content area so we can test directly.Best regards,
MikeHi,
For the masonry element the class seems to be.av-masonry-image-container, I adjusted, please check.Best regards,
MikeHi,
I see that you are using a child theme so the Appearance > Theme editor > style.css is a good place.
Please also ensure to clear any cache plugin and your compression theme settings, if enabled.
To clear your compression theme settings, you would toggle, or enable/disable the Enfold Theme Options > Performance > JS & CSS file merging and compression & saving the theme settings, reloading your site & doing again.
If you experience caching issues try the code in the WordPress > Customize > Additional CSS field.Best regards,
MikeOctober 18, 2020 at 5:21 pm in reply to: Maintain featured image proportions Enfold Theme blog post + file download issue #1253620Hi,
Glad to hear, what I mean is to try adding this to your .htaccess file:
AddType application/vnd.google-earth.kml+xml .kml
via FTP or SFTP.
If your friend doesn’t understand please try posting a DropBox link to your .htaccess file so we can advise.
Please note that some servers don’t rely on the .htaccess file and have other ways to achieve this, so if you get an error at first then try asking your webhost for the correct way to add this rule, for them.Best regards,
MikeHey flipper1960,
Sorry for the late reply, and thanks for the login and test page, so I have not used the Meow Lightbox plugin before so in my research I found the plugin was giving the same error as reported here to the plugin author, the solution for this error is to remove this from the “lightbox.js” script:
//# sourceMappingURL=lightbox.js.map
This may have not been necessary, but I wanted to rule it out. Anyways, I wanted to isolate the behavior of the Meow plugin & the Magnific Popup lightbox which is the default lightbox, typically other lightbox scripts use a similar script for the lightbox. So I first tried using the “exclude” function in the Magnific Popup lightbox, which is in the file\wp-content\themes\enfold\js\avia-snippet-lightbox.json line 211, with the lightbox option in the theme set to disabled, but with this setting the Meow Lightbox plugin fires first and loads, but then is redirected to the image file. If you watch very closely you will see that the plugin is working but I believe the Magnific Popup lightbox is embedded deeper than it seems.
So as a workaround, I enabled the Magnific Popup lightbox in the theme options and added this script in your functions.php file:function custom_script(){ ?> <script> (function($){ $('body').on("click", ".lightbox", function () { setTimeout(function(){ $('button.mfp-close').trigger('click'); }, 200); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');I also replaced your Meow Lightbox plugin “Selector” classes with “.avia-gallery a” to target this one element, I understand you want to add more, but if we can get this one element to work first then we can move forward on the other elements.
So now on your test page, the “avia-gallery” is working for the Meow Lightbox plugin, please clear your browser cache and check.Best regards,
MikeHey Fischpi,
Sorry for the late reply and thanks for the link and screenshot.
Please try this script, it changes the input “type” from “text” to “date”, in my tests with Chrome this stopped the autofill from showing.
Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_datepicker_script(){ ?> <script> (function($){ $(document).ready(function(){ $(".avia_datepicker.hasDatepicker").attr("type", "date"); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_datepicker_script');Then clear your browser cache and check.
Best regards,
MikeHey namgyal,
Sorry for the late reply, and thanks for the link to your site. As I understand your question, you would like the topbar to show on mobile and have it scroll away until the header reaches the top, which will be sticky?
Is this a testing site, can we login?
I notice that your topbar is quite large on mobile, you can check with this css:@media only screen and (max-width: 767px) { #top #header_meta { display: block !important; } }Is this the final size that you intend?
Best regards,
MikeOctober 17, 2020 at 10:13 pm in reply to: Maintain featured image proportions Enfold Theme blog post + file download issue #1253538Hey sanfairyanne,
Sorry for the late reply, for your second question I believe you need the add the MIME typeAddType application/vnd.google-earth.kml+xml .kmlto your .htaccess file.
Please try adding this and then clear your browser & server cache and test.Best regards,
MikeHi,
Sorry for the late reply, please try this solution.Best regards,
MikeOctober 17, 2020 at 9:35 pm in reply to: Make "Get Demo" button link to our SimplyScheduleAppointment plugin #1253534Hi,
Sorry for the late reply and thanks for the link to your page, but I don’t see any extra space after the header and the top image, please try posting an image with the extra space highlighted.
To add a screenshot please try using https://savvyify.com/img/ and pasting the image URL in your post.Best regards,
MikeOctober 17, 2020 at 9:23 pm in reply to: Sidebars display at the bottom of the page after the content, before the footer #1253532Hi,
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,
MikeHi,
Sorry for the late reply, and thanks for the mockup image, the easiest way to do this would be to find a set of SVG icons that you like and then upload to fontello to create an icon font pack that you can upload via the theme “Iconfont Manager”
Then you will be able to choose them from the Icon element.Best regards,
MikeHi,
Sorry for the late reply, I see that you added the images to the title field of the flip boxes, please try this solution instead.Best regards,
MikeOctober 17, 2020 at 6:50 pm in reply to: GTmetrix shows entypo-fontello.woff file as missing (404 error) #1253523Hi,
Sorry for the late reply and thanks for the link, I tested your site on GTmetrix and it didn’t show any “bad requests” and my browser also didn’t report any 404’s
Are you still experiencing this and can you upload a screenshot of where to see this on GTmetrix?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,
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,
MikeHi,
Sorry for the late reply and thanks for the link to your page, to hide the tool tip popup, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.avia-related-tooltip.avia-tt { opacity: 0 !important; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
@KulturDesign glad to hear that @Guenni007 was able to assist, we will close that as requested, thanks for using Enfold.Best regards,
MikeOctober 17, 2020 at 2:04 pm in reply to: Sidebars display at the bottom of the page after the content, before the footer #1253484Hi,
Sorry for the late reply and thanks for the login, I deactivated your plugins one at a time until I found the conflict with the “WP Post Popup” plugin.
I left it enabled so you could test disabling it and see that the sidebar is correct when it is disabled, please check.
Please note that I left your other plugins disabled to demonstrate, only because this is a “staging site” and not a “live site”, I hope that is ok.Best regards,
MikeOctober 17, 2020 at 12:11 pm in reply to: customize WooCommerce Sort by Default dropdown and Display products per page #1253463Hi,
Glad to hear that you have sorted this out, we will close this thread as requested, thanks for using Enfold.Best regards,
MikeOctober 16, 2020 at 1:09 pm in reply to: Enfold Sidebar Menu – Need it to stick to the side, but also scroll? #1253246Hi,
Glad to hear that this helped, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeOctober 16, 2020 at 1:05 pm in reply to: Both front end and sit- admin very slow to update. #1253245Hi,
Thanks for sharing your error log, from what I see you are getting an access denied error from your server formod_qos(067) QS_ClientEventLimitCount ruleDefines the maximum number of requests having the defined environment variables (QS_Limit by default) set allowed within the defined time (default is 600 seconds). Requests from client IP’s reaching this limitation are denied for the specified time (blocked at request level).
Please see these links: QS_ClientEventLimitCount & mod_qos(067)
So my understanding of this is that your mod_qos rules are triggering an event, please try asking your webhost about this as I’m not sure which settings should be changed on your server.Best regards,
MikeHi,
Sorry, I look a look and cleared my browser cache, but the header and menu look the same to me, please see the screenshot in Private Content area.Best regards,
MikeOctober 15, 2020 at 12:36 pm in reply to: Both front end and sit- admin very slow to update. #1252994Hi,
Sorry for the late reply, I was able to login now and the frontend of your site seems to run well, but it still seems to hang on the backend when checking the product variations and prices. In my test, it seems like after trying to check the product variations on the backend, and then leaving and going to the frontend, the site still hangs without an error message.
Have you tried disabling your other plugins to check for a conflict? Also please try checking your server error log for error.Best regards,
MikeOctober 14, 2020 at 12:14 pm in reply to: Image modules become invisible on front end (page preview works though!) #1252750 -
AuthorPosts
