Forum Replies Created
-
AuthorPosts
-
Hi,
Oh no, there are no silly questions, I hope that I didn’t sound like that, I was just saying where it came from.
Glad we were able to help and have a good weekend, 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,
MikeHey Yaphoon,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.main_color input[type='submit'].wpcf7-submit:hover { background-color: #e94a3f; color: #ffffff; border-color: #c7281d; }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
feel free to adjust to suit.Best regards,
MikeMay 25, 2024 at 8:49 pm in reply to: Gutenberg / Spectra Full Width Not Working. Avia Advanced Layout Button Missing #1446092Hi,
For your pricing page try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.page-id-2429 .template-page.content.av-content-full.av-main-page { padding: 0; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
This color is from your browser, you will alos notice that it occurs on your logo and burger menu icon, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to remove it:.av-active-burger-items, #header_main .logo, #header_main .av-burger-menu-main { -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .av-active-burger-items:focus, #header_main .logo:focus, #header_main .av-burger-menu-main:focus { outline: none !important; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey Julie,
Thank you for the link to your site, first I added the custom class click-to-close to your flipbox
Then I added this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_click_to_close_flipbox_script() { ?> <script> jQuery(document).ready(function($) { $('.click-to-close .avia-icongrid-flipbox .av-icon-cell-item').hover( function() { var $flipback = $(this).find('.avia-icongrid-flipback'); // Check if the transform is rotateY(0deg) if ($flipback.css('transform') == 'matrix(1, 0, 0, 1, 0, 0)') { $(this).addClass('avia-hover'); console.log('avia-hover class added'); } } ); // Function to handle clicks outside the element $(document).on('click', function(event) { if (!$(event.target).closest('.click-to-close .avia-icongrid-flipbox .av-icon-cell-item').length) { $('.click-to-close .avia-icongrid-flipbox .av-icon-cell-item').removeClass('avia-hover'); console.log('avia-hover class removed'); } }); // Prevent clicks inside the element from triggering the document click handler $('.click-to-close .avia-icongrid-flipbox .av-icon-cell-item').on('click', function(event) { event.stopPropagation(); }); }); </script> <?php } add_action( 'wp_footer', 'custom_click_to_close_flipbox_script', 99 );
Now when you hover over the flipbox and it flips the class avia-hover is added to it so that it won’t flip back, until you click outside of the element, in which the class is removed.
please clear your browser cache and check.Best regards,
MikeHi,
When I check your site on my Android the Contact & Schedule mobile menu link works for me, it also works on my desktop emulating as a mobile device.Best regards,
MikeHi,
Thank you for the link to your site, I don’t know how to correct this in your vendor function, but this javascript will change the div into a H1.
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function cision_title_heading() { ?> <script> (function($){ var el = document.querySelector('.single-cision_block_post .entry-content-header .av-heading-wrapper'); el.outerHTML = '<h1 class="av-heading-wrapper ">' + el.innerHTML + '</h1>'; })(jQuery); </script> <?php } add_action( 'wp_footer', 'cision_title_heading', 99 );
Best regards,
MikeMay 25, 2024 at 6:18 pm in reply to: How can the gridrow content text be vertically centred to the icon? #1446042Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field, it will make the icon larger and center vertically:.iconbox_left .iconbox_content { display: grid; grid-template-columns: auto auto; grid-template-rows: 1fr; grid-auto-columns: auto 1fr; gap: 0px 0px; grid-auto-flow: column; align-items: center; justify-content: center; } .iconbox_left .iconbox_content .entry-content-header .iconbox_icon { height: 60px; width: 60px; font-size: 40px; top: 0; left: 0; align-content: center; } .iconbox_left .iconbox_content .entry-content-header { justify-self: center; } .iconbox_left .iconbox_content .iconbox_content_container p { margin-top: 0; }
Best regards,
MikeMay 25, 2024 at 4:59 pm in reply to: Background video in color section conflicts with Seedprod YouTube Feed plug-in #1446015Hi,
When I check your page I see errors for your videos
Refused to load the script ‘https://www.youtube.com/iframe_api’ because it violates the following Content Security Policy directive: “script-src-elem ‘self’ ‘unsafe-inline'”.
Refused to frame ‘https://player.vimeo.com/’ because it violates the following Content Security Policy directive: “frame-src ‘self’ blob:”.
I have not see this kind of error before but it seems that your plugin is causing a violation since you posted above the when it is disabled the videos work fine.Best regards,
MikeHi,
Thank you for your patience I see that you have both v5.2.1 & v5.7.1 with the same Theme Name so I’m not sure how you have it setup to enable which parent theme is used, I see that v5.2.1 is currently loading. I also see that you have a custom header.php & footer.php in the child theme, we do not recommend adding these files to your child theme, it is the most common reason for errors when updating. Try removing these and see if this solves. You could replacing these with the header.php & footer.php from the v5.7.1 parent theme, but then you would need to manually update these with each update. I recommend removing these and any customizations you wish to make should be done in your child theme functions.php instead.
If this doesn’t help then I would recommend looking at your custom avia-shortcodes files as it looks like you have created customized elements and I assume they were based on the older v5.2.1 elements:
The theme has changed a lot since then so you may need to review the elements from v5.7.1 and update your custom elements to suit.Best regards,
MikeMay 25, 2024 at 3:28 pm in reply to: Video fallback image causing enormous performance issues on mobile devices. #1445976Hi,
You will see that those items are from two of your plugin when you examine the file path:
/wp-content/cache/fvm/
/wp-content/plugins/ewww-image-optimizer/
and the last one is your google tag manager, so you will probably want to leave all of these as is, since you already stated that your site is even slower without these plugins.Best regards,
MikeHey Morgan,
Thanks for your patience, typically the feedback we receive is positive and once in a while we are asked to address small issues. We don’t have a WCAG 2.0 testing account or a screen reader to test with, but you are welcome to test our demo.Best regards,
MikeHey ajaxkls,
Thank you for your patience, I checked your site on Mac in Safari and the mp in the sidebar played correctly, I double checked in Windows and it played the same.
I only have a Mac desktop, are you seeing this error on a mobile device?
I know that some iPads & iPhones can not update their Safari browsers, try posting your device model and the device Safari version number so we can try to reproduce the error.Best regards,
MikeMay 23, 2024 at 9:46 pm in reply to: The Events Calendar – Recurring Events, every event visible #1445415Hey Robert,
Thanks for your patience, it seems that showing all of the recurring events would be the correct behavior.
I checked both pages but they seem to show the same items, the only difference that I see is that the ALB page is sorted by Date then title ASC, and the shortcode page is by Date title DESC, but both show all of the items by date.
Did you also update the events calendar version, perhaps the change is in the plugin? Are you using the Pro version?
Please try rolling back the plugin version and see of that helps.Best regards,
MikeMay 23, 2024 at 9:14 pm in reply to: Video fallback image causing enormous performance issues on mobile devices. #1445413Hi,
It can cause a conflict, sometimes this is seen, if you notice an error try disabling it.Best regards,
MikeHi,
The url ?avia-element-paging=3 is correct and the Dev Tea has set this to not interfere with the WordPress pagination.
In the past the pagination was as you point out but it caused a conflict and so the Dev Team changed this, if you feel this is in error you can submit a request to the Dev Team in their Github Feature Request for users to place requests and follow them as the Dev Team reviews them.Best regards,
MikeHi,
This is true, I also found that the artificially throttle the scroces to 3g, which is much lower that most users.
Since this is not a theme issue shall we close this thread then?Best regards,
MikeMay 23, 2024 at 8:59 pm in reply to: Google Maps error: Maps were disabled by the visitor on this site. Click to open #1445408Hi,
Thanks your account looks activate, please open a new thread with this link
Please remember you may need to login to the support forum first.
Try to view this from the support forum and not from a email notification.Best regards,
MikeHi,
Thank you for your patience, when I check your page as mobile the image src is 260px 153px
the other image sizes are in the srcset, which a available sizes for larger screens, so in this case the correct image size has been picked.
When I test in lighthouse, it only tests the full image size even though the correct image height & width is there 260px 153px
I researched this and found many comments like this, in this thread the lighthouse code serves up to 3x the image size in the test, and looks like they recommend changing it.
So since we can see that the correct image is the src image, this looks like a error in the lighthouse test. The only recommend that I found was to use aBest regards,
MikeHi,
I believe that these will always be the first image so this css would work:.single-product .flex-control-thumbs li:nth-child(1) { display: none; }
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.Best regards,
MikeMay 22, 2024 at 11:08 pm in reply to: Adjust Margin Space Between Elements in the Same Footer Column #1445247Hi,
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,
MikeMay 22, 2024 at 10:56 pm in reply to: Adjust Margin Space Between Elements in the Same Footer Column #1445243 -
AuthorPosts