Forum Replies Created
-
AuthorPosts
-
Hi,
Sorry for the late reply, I checked your site at 767px on Chrome and found a couple of rules competing.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 999px) { .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {margin: 0;width: 100% !important; } }This sould resolve the issue.
Please see the screenshot in Private Content area.Best regards,
MikeHi,
I have taken another look at your site and I believe the changing of the logo / site name color is the last thing your working on now.
I now realize that using the two different logos in the theme options is not going to work for you because you want to change the color a few times over certain elements, and not just once after scrolling just 100px.
So try adding this code to the end of your functions.php file in Appearance > Editor:function custom_logo_script(){ ?> <script> $(function() { var $header = $('.logo a > img'), $window = $(window), opacityArray = ["0", "1", "1", "0", "1"], headerHeight = 180, sectionHeight = 750; var $headera = $('.logo a img.alternate'), $window = $(window), opacityArraya = ["1", "1", "1", "1", "1"], headerHeight = 180, sectionHeight = 750; $window.scroll(function() { $header.css('opacity', opacityArray[Math.floor(($header.offset().top + headerHeight) / sectionHeight)]); $headera.css('opacity', opacityArraya[Math.floor(($headera.offset().top + headerHeight) / sectionHeight)]); }); }); </script> <?php } add_action('wp_footer', 'custom_logo_script');Best regards,
MikeHi,
Thanks for the token login, but I also getting another login, probably .htaccess auth.
please include this info.
Please see the screenshot in Private Content area.Best regards,
MikeHi,
Thanks for the feedback, this helps to make more sense. Is your testsite on your localhost? can you put it online so we can assist? It is very difficult to guess at the changes necessary from a screenshot. To make the menu fly out left we have to do a negative left position, here is an example on the menu I can see:.av-main-nav #menu-item-19330 > ul.sub-menu { left: -50px !important; }Please see the screenshot in Private Content area.
Best regards,
MikeHi,
Ok, I think I understand now, you want the sub-menu items to fly out the opposite way that it is now, we can help but we are going to need to see the menu as in your first screenshot, when I look there is only one item in the menu.
I’m not sure what you are hoping to achieve with this, I thought we addressed your columned sub-menu with the sub-menu column css that is back a few posts? The only drawback was that it will only create two columns and your mockup is 4 columns, which the only way I see to achieve 4 columns was with a mega menu, but I know you don’t want to use a mega menu.
If you are having trouble getting the column css to work to create the 2 columns then I can assist with it, but I will need to see the menu with the many items as in your screenshot.Best regards,
MikeHi,
I took a look at your menu, but the text already seems to be aligned to the left in your sub-menu. To match the sub-menu font size with the main menu font size, please try this css:.sub-menu > li > a > .avia-menu-text { font-size: 16px !important; }Best regards,
MikeApril 6, 2019 at 5:19 am in reply to: Space after caption + Caption under each photo in Gutenberg Image Gallery #1087672Hi,
To add a certain amount of padding after the image caption please try this css:p.wp-caption-text { padding-bottom: 30px !important; }Best regards,
MikeHey nickgin,
Sorry for the late reply, are you still getting the cart drop down on hover?
I’m not getting a “flash” on the cart click on our demo site, but it sounds like we could achieve this by disabling clicking of the cart and only allow clicking of the drop down buttons

Am I understanding this correctly?Best regards,
MikeApril 5, 2019 at 5:50 am in reply to: Space after caption + Caption under each photo in Gutenberg Image Gallery #1087369Hi,
Thanks for the explanation, I understand, but there are a couple of different layouts for images and captions. To help us try to target the correct sectors please see our demo site and try to link to the same layout so we can assist.Best regards,
MikeHi,
Glad to hear you are getting some help from W3TC on this, the issue you linked to above is the result of a third-party plugin. It’s worth noting that with the major changes to WordPress core since v5 many third-party plugins are having new issues, perhaps this is a factor.Best regards,
MikeHi,
Thank you for clarifying, but unfortunately I could not login, Please see the screenshot in Private Content area.
Please check the password and also let us know what country you are in, sometimes I need to use a VPN to fake my country so that I can login.
For the steps Mollie & MyParcel, I have not seen these screens before, is this a plugin?
Since this is two issues, one with the builder lockup when “Add all variations in a product” is tried and the other with the “Mollie & MyParcel”, once I can login to investigate, I will first work on “Add all variations in a product” and see what errors are occurring.
Since it’s a live site, perhaps it would be good to see if your webhost has a “1 click staging site” option, this will clone your site so we can check your site without your live site being affected. Most bigger webhosts offer this in the cPanel.Best regards,
MikeHi,
Thank you for the explanation and the images, this helps a lot. I found that on the home page the header transparency was interfering with the background image. This css corrects it:#top.home .av_header_transparency .header_bg { opacity: 1 !important; }For the extra space on the home page, I found that you have an empty color section on the home page that in not on your “cataloghi” page.

Please try removing it.Best regards,
MikeHi,
I have not seen this behavior before, but I would like to investigate by disabling all plugins first, to rule a conflict out, but I’m concerned that this is a live site, will this be ok? Perhaps your webhost offers one-click “staging site” so we can investigate without affecting your live site?Best regards,
MikeHi,
To make this animation work on sub-menu links, first please remove the on hover green background, then try this css:.av-main-nav > li > ul.sub-menu > li > a:active:after, .av-main-nav > li > ul.sub-menu > li > a:focus:after, .av-main-nav > li > ul.sub-menu > li > a:hover:after { background-color: #719430; width: 100%; } #top #header .av-main-nav > li > ul.sub-menu > li > a:hover .avia-menu-text { color: #000 !important; } .av-main-nav > li > ul.sub-menu > li > a:after { display: inline-block; content: ""; text-indent: -99999px; width: 0; height: 40px; -webkit-transition: all .50s ease-in-out; transition: all .50s ease-in-out; position: absolute; bottom: 0; left: 50%; margin-top: 0; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); z-index: -1 !important; }I think it’s working, but without logging in I can’t check for sure.
As far as getting this to work on mobile, there is no “on hover” for touch screensBest regards,
MikeHi,
I had to edit my response right after I sent it because the theme does allow you to manually set which elements to load in the performance option.
Please try using this option to always load the accordion element.
The issue is that your plugin’s shortcode is getting added after the “tree”
So I’m not sure if you tried this yet

Best regards,
MikeApril 5, 2019 at 2:30 am in reply to: woocommerce shop – sorting by price breaks with simple and variable products #1087266Hi,
Hey good news, the dev team has a solution for this now that they would like you to test, you will need to replace 8 files via FTP.
I have attached a zip file in the Private Content area that I created fo your with the files in the correct folder paths, plus there is a text file listing the paths and dev notes. Please make backups of your files before replacing them should you need to roll back.
Please let us know if this helps.Notes:
Needs WC 3.5.7 !!
extended sorting options for shop page and ALB elements
added select box for ASC/DESC to 2 ALB elements
sorting by price works for variable products now (lowest – highest)
better integration in WC sorting logic
adjusted description where to find default settings for catalog sorting
for backwards comp. config-356.php (new file woo-loader.php)Best regards,
MikeHi,
Sorry for the late reply, when I check your page I get this error just before the tab section shows up:client.js?9d5f84c:16 [WARNING] Crisp found shims of native JavaScript methods. This can alter the chatbox behavior and break things. Make sure not to override listed functions to ensure your chatbox works as expected. You may be looking for other JavaScript libraries in use on this page. You can disable this warning by adding: $crisp.push(["safe", true]) to your page JavaScript. Methods to check: (2) ["document.addEventListener", "document.removeEventListener"]You said that you tried disabling your plugins? Can we also try?
This is the line in the javascript from the error:

Best regards,
MikeHi,
Sorry for the late reply and thanks for the video, I can’t read the language that your site is in, but I believe that the page gets stuck at the “Add all variations in a product” part, am I correct?
please include an admin login so we can see if the page is getting any errors at this point.
In your post you talk about these two steps:2. From an order send the order to MyParcel (bottom right in the menu if you are in an order)
3. Pay back an order through Mollie.But I don’t know what they are and I don’t think you did these steps in your video, correct?
Do you try disabling your plugins to see if you still got stuck at the same point?Best regards,
MikeHi,
Sorry for the late reply, and thanks for your screenshots, I believed that you wanted your search icon blue along with the topbar for mobile, I sorted this out for you with this css:@media only screen and (max-width: 767px) { .responsive #top #wrap_all .main_menu ul:first-child > li > a { color: rgb(0, 150, 179) !important; } .responsive #top #header_meta { background-color: rgb(0, 150, 179) !important; } } #top #header_meta { background-color: rgb(0, 150, 179) !important; }I checked your menu on all pages but couldn’t find one that was different. If you want to have a hover color for your main menu then please use the advanced styling and add another “Main Menu Links” selection and click the box for hover. This means that you will have it there twice once for not hover, and once for hover

Best regards,
MikeHi,
Sorry for the late reply, I took a look at your menu on hover when your animation is 70px high so it covers the whole menu item.
you need to add a z-index to your css above and you need to have the menu text change colors on hover, this is the added css that worked for me:#top #header .av-main-nav > li > a:hover .avia-menu-text { color: #fff !important; } .av-main-nav > li > a:after { z-index: -1 !important; }here is my results:

Please clear your browser cache after you add it and check.Best regards,
MikeApril 4, 2019 at 3:45 am in reply to: Disable Mouse Scroll Changing Values on Number Fields. #1086724Hi,
Thanks for the page to test on, but unfortunately I was not able to disable it, at least in Chrome. I tested many javascript snippets but I kept ending up with this warning Chrome views it as an assessability issue to block the mousewheel. I didn’t test other browsers because I didn’t think it would help.
Sorry I wasn’t more help.Best regards,
MikeHi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.page-tribe-attendee-registration .tribe-block__tickets__registration__checkout:nth-child(odd) { display:none !important; }Please check that your form is working correctly, it should, but it’s always better to check.
Best regards,
MikeHi,
I just checked again and that is the right path for v4.5.5,

But I see you are using v4.5, so you are going to need to update and then if you are still having problems then try changing the file.
Please note that if you update via FTP, you will need to remove the old theme folder first (via FTP) then upload the new folder.
Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.Best regards,
MikeHi,
Please let us know if you were able to manually update via ftp, or if you would like a hand with that.Best regards,
MikeHi,
I believe what is happening is that because your plugin is inserting the shortcodes out of order for the shortcode tree. The “tree” is the list of shortcodes inside the page telling it which elements to get.
In the past the solution was to use the parser in the debugger to rebuild the “tree” but your shortcode is added after so it won’t help.
I didn’t find a filter to always load one element, but you can choose to manually set which elements to load in the performance option.
Please try this.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 under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
The slider doesn’t have the option to change the ID it only has the option to change the class, but if you really want to change it, then add the custom class “custom-slider” to it, and then add this code to the end of your functions.php file in Appearance > Editor:function add_custom_id(){ ?> <script> jQuery(window).load(function(){ jQuery('#fullscreen_slider_1.custom-slider').attr('id','experience'); }); </script> <?php } add_action('wp_footer', 'add_custom_id');in the code above change the ID “experience” to what you want the ID to be.
It looks like your shop button is behind the slider because of z-index, and this should help, but as your going to be changing the ID of the slider this will need to be updated:.shopbutton { position: relative !important; z-index: 999 !important; } #fullscreen-slider_1.avia-fullscreen-slider { position: relative !important; z-index: 1 !important; }For backing up your site I recommend using the Full Backup tools that your webhost provides, most plugins fail when you try to restore to a site that has crashed, and that is when you need it the most.
For the logo options, basically there are two logos one before scroll and one after scroll that is basically how it works.
Best regards,
Mike -
AuthorPosts
