Forum Replies Created
-
AuthorPosts
-
Hi,
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 cktanju,
Thanks for your question, if you have used the Typography Settings to set the font-weight to 900 then you will need to add the H tag to your css to override this for the special heading element like this:#top #wrap_all .all_colors h3.av-special-heading-tag { font-weight: 300; }note that this targets the h3 tag, so you will need to adjust to suit.
If this is for one specific special heading element, I would also recommend adding a custom class to it and your css.
After applying the css, please clear your browser cache and check.
If you still have trouble, please link to your specific page so we can examine.Best regards,
MikeJuly 29, 2022 at 6:12 pm in reply to: Google-Font-import is still on source code. How to fix that? #1359867Hi,
Glad thinkjarvis could help, thank you thinkjarvis, and you found which plugin was causing this, 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 your patience, the aria-label is the attribute used for accessibility, typically screen readers will read the “title”, “alt”, or “aria-label” attributes:

While we don’t have access to “Jaws” this chart of the Screen Reader Output seems to indicate that “Jaws” looks for the Anchor Text first and I note that on your original site the main menu links only have Anchor Text, with no “title”, “alt”, or “aria-label” attributes.
The difference with our theme is that the Anchor Text is wrapped in a “span” and is not a direct Anchor Text.
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function unwrap_main_menu_text_for_jaws() { ?> <script> (function($){ $('.avia-menu-text').contents().unwrap(); })(jQuery); </script> <?php } add_action('wp_footer', 'unwrap_main_menu_text_for_jaws');and check with your “Jaws” software.
Best regards,
MikeHey trellyn,
Thank you for the link to your site, please try disabling your caching plugin “siteground-optimizer” and disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression, and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and ensure that Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer is not enabled.
If this doesn’t help then please leave these changes in place and include an admin login so we can investigate.Best regards,
MikeHi,
Please try adding[nolink]in Enfold Theme Options ▸ Footer ▸ Copyright
Please review our documentationBest 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,
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,
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,
MikeJuly 27, 2022 at 11:26 pm in reply to: Maronry Element – hover opacity and positioning issues. #1359620Hi,
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,
To replace the breadcrumb “Home” with a house icon and make it white, please try this css:.breadcrumb-trail a.trail-begin:after { content: "\e821"; font-family: entypo-fontello; font-size: 16px; color: #fff; } .breadcrumb-trail a.trail-begin { font-size: 0 !important; }After applying the css, please clear your browser cache and check.
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,
MikeJuly 26, 2022 at 5:42 pm in reply to: Would like to change the video width on mobile to match size #1359487Hi,
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 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,
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,
Thank you for the link to your site, the only padding or space that I see above your contact form is from the color section content class:.content { padding-top: 50px; padding-bottom: 50px;This is from the color section for every element added, please try adjusting this for this one element if you need further help please let us know.
Best regards,
MikeHey Stefano,
Thanks for your “question”?
Are you referring to the plugin Contact Form DB for Enfold?
This is not our plugin, so we don’t know, and the plugin author has not answered this on their plugin support page.Best regards,
MikeHey TippingPointSolutions,
Thanks for your question, I assume that you mean only on mobile devices, because I have tested this on desktop Mac with Chrome, Safari, Firefox, and the background video in a color section autoplays without user interaction. My test page is listed below, please check. Perhaps your page has an added element that is causing the error, so please link to your test page so we can test on our devices.
If this is about mobile devices we can not help, I’m certain you are familiar with iOS’s stance on the autoplay of videos on mobile devices and how with each update they are cracking down more. We need to follow the rules. You can try using a plugin, and in some cases the layerslider will work (for now), but I would recommend educating the client and pointing out that someday this will not work at all. Please note that I say this with respect.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,
MikeJuly 25, 2022 at 11:21 am in reply to: Horizontal Gallery on mobile phones: can I jump directly into the lightbox? #1359367Hi,
Thanks for the feedback, I have asked team members with an iPhone to check and advise, I only have an Android. Thank you for your patience.Best regards,
MikeHi,
Thanks for the feedback, I adjusted it to include a setTimeout, please check again.function custom_mini_cart_total_script() { ?> <script> (function($){ $(function() { setTimeout(function(){ $( "p.woocommerce-mini-cart__total strong" ) .text( "Total" ); },800); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_mini_cart_total_script');Best regards,
MikeJuly 25, 2022 at 11:03 am in reply to: :View Cart" button in Woocommerce main shop/product page #1359364Hi,
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,
Sorry, I don’t see a solution for that, I would recommend using a different element if this is an issue.
But I would like to point out that in real-world examples the visitor’s screen size would not be changing, except on a tablet going from portrait to landscape, and in such a case typically the screen is away from their face while rotating, so it doesn’t seem likely they would see the transition.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 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,
Oh, ok, my mistake, but from the text above please ensure you are using an email from the webhost, and try the SMTP plugin.Best regards,
MikeHey rixi,
Thanks for your question, as I read the mail heading you have provided below and the text from your webhost above I believe that you will need to use the plugin WP Mail SMTP and use an email from your webhost, you can not use a gmail address any longer.
Please note that the contact form will also be re-configured to your new webhost email address, and the email set in your WordPress user profile for your admin may need to also be this new address.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 Mike1050,
Thanks for your question, to make the masonry sort sticky on that page for tablets and above, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function sticky_masonry_sort_waypoint() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ var width = $(window).width(); var $stickyTop = $('#top.page-id-102 .av-sort-by-term'); if (width >= 767) { $stickyTop.waypoint(function(direction) { if (direction === 'down') { $stickyTop.addClass('sticky-top'); } if (direction === 'up') { $stickyTop.removeClass('sticky-top'); } }, { offset: '118px' }); } })(jQuery); }); </script> <?php } add_action('wp_footer', 'sticky_masonry_sort_waypoint');and this css in the General Styling ▸ Quick CSS field:
.sticky-top { position:fixed!important; top:118px!important; z-index:510!important; background-color: #fff; }After applying the css, please clear your browser cache and check.
Best regards,
Mike -
AuthorPosts
