Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the link to your site, in your css you have display: inline-block and display: flex; so I removed the display: inline-block and added float: none
Now it is working, please check.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,
Try this instead@media only screen and (min-width: 768px) { #top .avia_codeblock_section .woocommerce.columns-4, #top .avia_codeblock_section .products.columns-4 { display: flex; } #top .avia_codeblock_section .products .product.last, #top #main .avia_codeblock_section .products .product.last { margin-right: 13px; } }
Best regards,
MikeMay 19, 2024 at 11:57 pm in reply to: Video fallback image causing enormous performance issues on mobile devices. #1444619Hi,
The article said that they use 3g only for mobile, they probably use lan for the desktop and that is why the score is much higher. You should research this more I saw many articles that said that it is not a good tool.Best regards,
MikeHi,
Try this CSS instead:#top .avia_codeblock_section .woocommerce.columns-4, #top .avia_codeblock_section .products.columns-4 { display: flex; } #top .avia_codeblock_section .products .product.last, #top #main .avia_codeblock_section .products .product.last { margin-right: 13px; }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, and removing the previous css, please clear your browser cache and check.Best regards,
MikeHi,
Thank you for your patience, when I first checked I found that the Advanced Layout Builder (ALB) was not loading on the pages that I tested and was getting the error: /admin-ajax.php 503 (Service Unavailable) I couldn’t tell what was causing this.
But when I disabled all of your plugins your pages loaded quickly and the ALB worked correctly, I set the plugins back to the way I found them.
Try disabling all of your plugins and then reload the page. You should see that this resolves the issue, then reactivate each one individually and reload the page until you find the conflict.Best regards,
MikeHey Aubin,
Please ensure that you have Enfold Theme Options ▸ Shop Options ▸ Product gallery ▸ WooCommerce 3.0 product gallery enabled
Best regards,
MikeMay 19, 2024 at 5:02 pm in reply to: Select Element in forms set specific option as selected #1444547Hey lyubopopov,
Thank you for the link to your site, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor, or 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:
then add this code and save:function select_value_in_form() { ?> <script> document.addEventListener('DOMContentLoaded', function() { var selectFields = document.querySelectorAll('.page-id-15 #avia_6_1'); selectFields.forEach(function(selectField) { for (var i = 0; i < selectField.options.length; i++) { if (selectField.options[i].value === 'Brazil') { selectField.selectedIndex = i; break; } } }); }); </script> <?php } add_action( 'wp_footer', 'select_value_in_form', 99 );
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
I wrote this to only work on the one page so it won’t interfere with other pages.Best regards,
MikeMay 19, 2024 at 4:11 pm in reply to: Video fallback image causing enormous performance issues on mobile devices. #1444537Hi,
I tried looking into why PageSpeed Insights are not consent, and I found many articles like this one: Why Google PageSpeed Insights don’t reflect realityPageSpeed Insights uses a slow 3G connection for its mobile testing, rather than 4G or 5G or a regular broadband connection. This means that the large majority of your visitors will see faster page loads and have a much better experience browsing your website by default than PageSpeed Insights suggests.
On GTMetrix the desktop version of your /counseling-austin-tx/ page is 99
but you need a paid plan to test as mobile.
The Pingdom Website Speed Test rates your /counseling-austin-tx/ mobile version as 85
DebugBear rates your /counseling-austin-tx/ mobile version as 94
This site claims to be More accurate data than Page Speed Insights:
Best regards,
MikeHey schweg33,
Try this CSS in your <strong style=’color:#000′>Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 1224px) { #top.home .avia-button.avia-size-small { min-width: 100%; } }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeHey charles GUERRIER,
Typically each license includes six months of support in our support forum, unless at the time of purchase you selected to extend this to one year.
After this time you can go to your Theme Forest account and renew your support. If you have multiple licenses for multiple projects you can register your Purchase Code here and create an account for the licenses that still have available support time. Unfortunately we don’t have a way to register multiple purchase codes under the same support account, so just create a different account for each one. You can always go to your Theme Forest account and renew your support.Best regards,
MikeHi,
I would recommend copying the css stylesheets from your css directories and adding it to your child theme stylesheet, so it is all in one file, and then check.
I’m not sure about the javascript files, you would need to determine what they do first and if it is something that you need, there is a good chance that the javascript and other files are for customizations or to fix errors that might already be fixed.
I recommend testing your site behavior first and see if anything is different, not style but function, if everything works correctly then there will be no need to add the javascript and other files.
So far your comments have only been about style, so copying the css files should fix this.Best regards,
MikeMay 19, 2024 at 12:25 pm in reply to: Change dimensions of featured image in single blog post #1444512Hi,
Glad Guenni007 could help, thank you Guenni007, 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,
I see it, before scroll none:
after scroll it shows:
if you had something different in mind, please upload a mockup demonstrating what you would like to see so we can understand betterBest regards,
MikeHi,
Try this filter insteadadd_filter( 'avf_post_nav_entries', 'avf_post_nav_entries_mod_reverse', 10, 3); function avf_post_nav_entries_mod_reverse($entries, $settings, $queried_entries) { $settings['same_category'] = true; $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); return $entries; }
Best regards,
MikeHey Sebastian,
If you have the shrinking header applied then you can add shadow to the header when the class header-scrolled is added.
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#header.av_minimal_header_shadow.header-scrolled { box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1); } #header.av_minimal_header_shadow { box-shadow: none; }
If this doesn’t work for you then we will need to see your page.
Best regards,
MikeMay 19, 2024 at 1:57 am in reply to: Sections on Page Disappearing After Saving + Can’t Get Rid of Menu Border Lines #1444432Hi,
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,
MikeMay 19, 2024 at 1:55 am in reply to: Video fallback image causing enormous performance issues on mobile devices. #1444431Hi,
I don’t know why the pagespeed scores are so different, but when I first tested your homepage this morning it was 78 and after my adjustments is was 89-94, I think that is pretty good.
So on your /counseling-austin-tx/ page with the video when I first tested it was 62, then I disabled your EWWW Image Optimizer plugin and it jumped to 82.
Please see the links below.Best regards,
MikeHi,
When I compare the two sites it looks like your original site has some custom css that your staging site doesn’t, try checking these places that may have some css that you didn’t copy over yet:
WordPress ▸ Appearance ▸ Editor ▸ parent theme ▸ custom.css stylesheet
WordPress ▸ Customize ▸ Additional CSS
otherwise disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression on both sites and then use the inspector on the elements in question and compare the css rules to see what is the difference, with the merging and compression off you can see the files that are giving the stylesBest regards,
MikeHey manurimini,
As I understand your question when you click a anchor link the page scrolls too far and goes under the sticky sub-menu, to change this you will need to adjust the offset.
The following script will change it but you may need to adjust the offset for your site, so in this example our header is 80px high on mobile and the sub-menu is 60px height, making 140px:
The height doesn’t change until 990px when the burger menu is replaced with text items, and then the header is 90px high on mobile and the sub-menu is 60px height, making 150px:
So add this code to the end of your child theme functions.php file in Appearance ▸ Editor or 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:
then add this code and save.function custom_change_offset() { ?> <script> (function($) { var width = $(window).width(); if ((width < 989)) { $('a[href*=#]:not([href=#])').click(function() { 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 - 140 //offset }, 1000); return false; } } }); //Executed on page load with URL containing an anchor tag. if($(location.href.split("#")[1])) { var target = $('#'+location.href.split("#")[1]); if (target.length) { $('html,body').animate({ scrollTop: target.offset().top - 140 //offset }, 1000); return false; } } } else if ((width > 990)) { $('a[href*=#]:not([href=#])').click(function() { 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 - 150 //offset }, 1000); return false; } } }); //Executed on page load with URL containing an anchor tag. if($(location.href.split("#")[1])) { var targett = $('#'+location.href.split("#")[1]); if (targett.length) { $('html,body').animate({ scrollTop: targett.offset().top - 150 //offset }, 1000); return false; } } } }(jQuery)); </script> <?php } add_action( 'wp_footer', 'custom_change_offset', 99 );
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Note that there is four places you may need to adjust two 140px & two 150px
Also note that you can add more space if you like, it doesn’t have to be exact.
In my example I added a red border around the sections to make it easy to see, on mobile it is like this:
and on tablet 1024px like this:
and desktop like this:
Please note that when testing by changing your browser widow size it is best to reload the page so the screen size can be recalculated, this won’t be an issue on real devices.Best regards,
MikeHi,
Thanks for the mockup image, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .menu-item-has-children > a > .avia-menu-text:after { content:"\e873"; font-family: 'entypo-fontello'; right: -10px; position: relative; }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
This is the expected results:
Best regards,
MikeHey Diana,
For #2 the selection menu items in “uppercase” due to this custom css, try to find the text-transform and remove:
if you can’t find it try adding this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top #main .avia_ajax_form .select { text-transform: none !important; }
For your first question, the background color is set by your browser, it is blue on my computer:
When I search stackoverflow.com I’m not able to find any working solutions, most people say that it is not possible, I tried for almost an hour but didn’t find one.Best regards,
MikeMay 18, 2024 at 10:09 pm in reply to: Change dimensions of featured image in single blog post #1444404Hi,
Your website link in the copyright (Website Design by) is broken, try clicking it.
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:
then add Guenni007’s code and save.Best regards,
MikeHey PutmakerAG,
This is created by the browser from the title attribute, the theme doesn’t have an option to block this browser behavior, try this solution ▸ https://kriesi.at/support/reply/1345583/
If you need further assistance please log in to the support forum and open a new thread 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.
Please note that using the contact form is not appropriate for support questions.Best regards,
MikeHey Marion,
Thanks for your comment, but we are not able to reproduce this, please see the test page the I created below.
When you add your links ensure to add https:// you do not need to add target as it will open in a new tab by default
If you need further assistance please log in to the support forum and open a new thread 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.
Please note that using the contact form is not appropriate for support questions.Best regards,
MikeHey JoeSurf,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width:767px){ .responsive .logo img, .responsive .logo svg { height: 282px !important; } }
Then clear your browser cache and any cache plugin, and check.
Please note that testing with iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.Best regards,
Mike -
AuthorPosts