Forum Replies Created
-
AuthorPosts
-
Hi,
Glad to hear that you have this sorted out, and thanks for sharing your solution, 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,
Thank you for the link to your site and the screenshot, please try this css:@media only screen and (max-width: 767px){ .responsive.html_header_top.html_logo_center #header_main .logo { margin: auto; } }
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,
MikeHey fmdum_envato,
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,
MikeHi,
Glad Yigit 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 to hear that you have this sorted out, and thanks for sharing your solution, 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,
MikeFebruary 17, 2023 at 7:43 pm in reply to: Although all of my pages are accessible in admin mode, they do not show live #1398390Hi,
Thanks for the feedback, I tried re-uploading your theme but that didn’t help, please check your server error log for any errors, I have not seen this before so I have asked the rest of the team for input.Best regards,
MikeHi,
It seems that the div woocommerce-product-details__short-description is not present if the “Product short description” field is empty, do you plan on having products without a description?
If you do expect the final site to have products without a description please choose a location that will be uniform for all products such as before/after the in-stock div (Disponibile), assuming this will be present on all products.
I guess you could also choose after the title or price since they should always be present, please ask your client what they would prefer.
If you want to test different locations you only need to change the appendTo class in the script in two places to the new class you want to target:
Best regards,
MikeHi,
Thanks, try replacing the precious solution with this this one at the end of your child theme functions.php file in Appearance ▸ Editor:function custom_script_pa_autore_and_pa_curatore() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $('.shop_attributes .woocommerce-product-attributes-item--attribute_pa_autore').each(function() { $(this).clone().wrapInner('<p class="pa-autore"/>').children(0).unwrap().appendTo('.woocommerce-product-details__short-description').css({'margin':'0'}); $('.pa-autore .woocommerce-product-attributes-item__label').wrapInner('<p class="autore-label"/>').children(0).unwrap().css({'display':'inline-block','margin':'0'}); $('.pa-autore .woocommerce-product-attributes-item__value').wrapInner('<p class="autore-value"/>').children(0).unwrap().css({'display':'inline-block','margin':'0'}); $('.pa-autore .autore-value p').css({'margin':'0'}); }); $('.shop_attributes .woocommerce-product-attributes-item--attribute_pa_curatore').each(function() { $(this).clone().wrapInner('<p class="pa-curatore"/>').children(0).unwrap().appendTo('.woocommerce-product-details__short-description').css({'margin':'0'}); $('.pa-curatore .woocommerce-product-attributes-item__label').wrapInner('<p class="curatore-label"/>').children(0).unwrap().css({'display':'inline-block','margin':'0'}); $('.pa-curatore .woocommerce-product-attributes-item__value').wrapInner('<p class="curatore-value"/>').children(0).unwrap().css({'display':'inline-block','margin':'0'}); $('.pa-curatore .curatore-value p').css({'margin':'0'}); }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'custom_script_pa_autore_and_pa_curatore');
and use this css:
.pa-autore > .autore-label:after { content: ": " } .pa-curatore > .curatore-label:after { content: ": " }
Best regards,
MikeFebruary 17, 2023 at 1:50 pm in reply to: Burger Overlay Menu: How to close by clicking on current Link #1398343Hi,
Thank you for your patience, I don’t believe that it is related to the /#top after the href of the current-menu-item because my test site has the /#top, but that aside if you want to remove the /#top please see this solution: How to remove #top in menu link
To close the burger menu on the current menu click please try the following script, I tested it on desktop burger menu with the overlay such as this demo:
in which it fades the overlay slowly while closing the menu.
and I also tested it on a flyout burger menu example such as this demo:
in which it slides the menu closed slowly as expected.
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function close_burger_overlay_for_current_menu_item() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($) { $('.current-menu-item a').click(function () { $('.av-hamburger').removeClass('is-active'); $('html').removeClass('av-burger-overlay-active'); $('html').removeClass('av-burger-overlay-active-delayed'); $('.html_av-overlay-side .av-burger-overlay-scroll').css({'transition' : 'all 0.5s cubic-bezier(0.75,0,0.25,1)'}); setTimeout(function () { $('.av-burger-overlay').fadeTo(500, 0); }, 500); }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'close_burger_overlay_for_current_menu_item');
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
If this doesn’t work for you please include an admin login to your site so we can ensure you are not getting jQuery errors and investigate.
Please note that the demo links above are for reference, I can not add the script to our official demo site, I tested by injecting the javascript though the browser and it worked in my tests.
I have not heard back from the rest of the team yet, but I will refer this to the Dev Team for their review.Best regards,
MikeHi,
Please update the live site as there is no attribute Curator, I assume the attribute class will be .woocommerce-product-attributes-item–attribute_pa_curator but I need to see it to test a new script.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,
Please add this css:.pa-autore > .autore-label:after { content: ": " }
After applying the css, please clear your browser cache and check.
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.Best regards,
MikeHi,
Do you mean the FB icon? This is hidden by default on mobile to save room in the header, try adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 479px) { .responsive #top #wrap_all #header .social_bookmarks, .responsive #top #wrap_all #main .av-logo-container .social_bookmarks { display: block; } }
Best regards,
MikeFebruary 16, 2023 at 7:03 pm in reply to: Burger Overlay Menu: How to close by clicking on current Link #1398247Hi,
I have tested my demo page linked above on Windows in Chrome, Firefox, & Edge which has the desktop burger menu showing and going to a page like the frontpage or the features page and then clicking the same menu item again closes the menu. I also tested this on a actual Android device.
But I do see the error on our 2017 Demo on mobile since the desktop burger menu is not active, I will ask the rest of the team what they are experiencing on their demos, do you find my demo to be working as I say?Best regards,
MikeFebruary 16, 2023 at 6:41 pm in reply to: Although all of my pages are accessible in admin mode, they do not show live #1398244Hi,
Thanks for the login, I see that none of your pages are displaying either logged in or out, same with your posts.
Please try disabling all of your plugins including the iThemes Security Pro plugins and leave them disabled, except the “Tijdelijke login zonder wachtwoord” so we can still login.
Then try re-installing WordPress to ensure that none of the core WordPress files are damaged, you can easily do this at WordPress Updates:
I have not seen this before.Best regards,
MikeFebruary 16, 2023 at 6:09 pm in reply to: Error message: cURL error 28: Connection timed out after 10001 milliseconds #1398242Hi,
Thanks for sharing katbi89, I see your other thread was related to the server blocking our domain.Best regards,
MikeHi,
Glad Ismael 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,
MikeHey stevel58,
Please try going to Enfold Theme Options ▸ Import/Export ▸ Iconfont Manager and delete the flaticon-sports icon and then save your settings and then try to install the icon file linked below.
If you get an error when tring to install the file then it could mean that your webhost doesn’t have the PHP ZipArchive Extension enabled, this is needed for the server to unzip zip files, try asking your webhost to check.
If this doesn’t help please include an admin login in the Private Content area so we can check.Best regards,
MikeFebruary 16, 2023 at 1:21 pm in reply to: Burger Overlay Menu: How to close by clicking on current Link #1398210Hey Jasper_1,
Thanks for your question, I have tested using the burger menu on the desktop on my demo site, and clicking the current menu item does close the menu overlay.
Perhaps you have a customization or a plugin interfering with this behavior on your site, try disabling these on your site to isolate the issue.
If you can’t please include an admin login in the Private Content area so we can check.Best regards,
MikeFebruary 16, 2023 at 1:09 pm in reply to: New Token/Purchase needed to update from Enfold 4.5 to 5.0? #1398208Hey Nikolaus Rentrop,
Thanks for your question, if your Envato private token has expired and the original account is not yours so you can not login and create a new one or download the latest version, then please create a new Envato account when you purchase the theme then update your site by downloading the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
then you will see the Theme updated successfully message.
After updating see our documentation for creating a new Envato Token.Best regards,
MikeFebruary 16, 2023 at 12:58 pm in reply to: Error message: cURL error 28: Connection timed out after 10001 milliseconds #1398206Hi,
Thanks, when I try to import the construction.xml file in your media library to WordPress ▸ Tools ▸ Import ▸ WordPress I’m getting an Internal Server Error 500, this points to a server issue, please check your server error logs for any clues, you may want to try this xml import again just before checking the server error logs so the error is on top of the logs.
I have not seen this Internal Server Error while importing a demo before, are you sure your webhost is not blocking our site with mod-sec?
Another option could be to create a localhost WordPress install and import the demo and then use the plugin Duplicator and migrate your localhost version to your webhost, see the video on the plugin page if you have not used this plugin before, it is quite easy.Best regards,
MikeHi,
Please remove the above solution and add this script to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_script_pa_autore() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $('.shop_attributes .woocommerce-product-attributes-item--attribute_pa_autore').each(function() { $(this).clone().wrapInner('<p class="pa-autore"/>').children(0).unwrap().appendTo('.woocommerce-product-details__short-description').css({'margin':'0'}); $('.pa-autore .woocommerce-product-attributes-item__label').wrapInner('<p class="autore-label"/>').children(0).unwrap().css({'display':'inline-block','margin':'0'}); $('.pa-autore .woocommerce-product-attributes-item__value').wrapInner('<p class="autore-value"/>').children(0).unwrap().css({'display':'inline-block','margin':'0'}); $('.pa-autore .autore-value p').css({'margin':'0'}); }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'custom_script_pa_autore');
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
The expected results:
Best regards,
MikeHi,
I adjusted the script to this to account for the languages:function custom_script() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($) { $('html[lang="en-GB"] #header_main #media_image-4').css({'padding':'0'}).detach().insertAfter($('.av-sidebar-social-container').css({'border-bottom':'1px solid #e1e1e1'})); $('html[lang="el"] #header_main #media_image-5').css({'padding':'0'}).detach().insertAfter($('.av-sidebar-social-container').css({'border-bottom':'1px solid #e1e1e1'})); })(jQuery); }); </script> <?php } add_action('wp_footer', 'custom_script');
Please clear your browser cache and check.
Best regards,
MikeFebruary 16, 2023 at 12:27 am in reply to: Error message: cURL error 28: Connection timed out after 10001 milliseconds #1398144Hi,
Thanks, I tried a manual import but I got a Internal Server Error with this message:
File is empty. This error could also be caused by uploads being disabled in your php.ini file or by post_max_size being defined as smaller than upload_max_filesize in php.ini.
Please check your server error log to see if there are any other clues, also ask your webhost if they are blocking our site: kriesi.at
and ask if “allow_url_fopen, “allow_url_include” and “register_globals” are “off”
then try turning these “on”.Best regards,
MikeHi,
For the new page for mobile up to 450px please try this css:@media only screen and (max-width: 450px) { #top .avia-testimonial-content { width: 100%; } #top #main .avia-slider-testimonials.av-slideshow-ui .avia-slideshow-arrows a { opacity: 1; top: 12%; } }
Please see the screenshot in the Private Content area of the expected results
Best regards,
MikeFebruary 15, 2023 at 9:10 pm in reply to: How to place multiple icon boxes in a single container in order to save a model #1398134Hi,
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,
Mike -
AuthorPosts