Forum Replies Created
-
AuthorPosts
-
Hi,
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 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 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,
MikeAugust 18, 2022 at 1:55 am in reply to: How to use layout architekt with the events calendar to style event page? #1362009Hi,
Unfortunately, this didn’t work, when your ban is over please disable this plugin so we can assist you.Best regards,
MikeAugust 17, 2022 at 11:57 pm in reply to: How to use layout architekt with the events calendar to style event page? #1362006Hi,
Ok, I checked again but it’s still not working 🙁
I only have two more chances for the next 4 hoursBest regards,
MikeAugust 17, 2022 at 1:08 pm in reply to: How to use layout architekt with the events calendar to style event page? #1361934Hi,
It seems that I’m now locked out for 4 hours:

Perhaps try the Temporary Login Without Password plugin.- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
( to be sure that we have enough time to debug ). - Click ” Submit “.
- You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.
When your issue is fixed, you can always remove the plugin!
Best regards,
MikeHey navindesigns,
Thank you for your patience, we have been looking into this, the padlock icon may have been removed we are double checking and if true we will update the documentation.
Sorry for the confusion.Best regards,
MikeAugust 17, 2022 at 12:45 pm in reply to: How to use layout architekt with the events calendar to style event page? #1361930Hi,
@Guenni007 thanks for the css recommendation, I have added it to the team member solution :)Best regards,
MikeHi,
Sorry the login is not working, the error I see is: Unknown email address.
Please check the login details below.I see that you are using Enfold v4.8.1, I believe that if you update to v5.1.1 you will not have the error.
Best regards,
MikeHi,
Very nice, thanks for sharing @Guenni007Best regards,
MikeAugust 16, 2022 at 1:31 pm in reply to: WP Layer slider issue after your fix / #post-1361659 #1361795Hi,
Try disabling your WP Rocket plugin and see if the error occurs again. I’m not seeing any errors on your site.
If that doesn’t help also try disabling the Imagify plugin.Best regards,
MikeHi,
Thanks for the login, I see in WordPress ▸ Tools ▸ Site Health your Max input time is a negative number:

this should be 180 and your PHP time limit is also low try setting to 270
You may need to ask your web host to set these for you.
Are you using OVH hosting? If you are OVH hosting has disabled the set_time_limit() function, this function is to ensure that the WordPress import doesn’t time out, and is different than the PHP time limit.
With this function disabled some people opt to use a different web host, one user had success with these settingsBest regards,
MikeAugust 16, 2022 at 12:40 pm in reply to: WP Layer slider issue after your fix / #post-1361659 #1361790Hey Tilman,
Glad to hear this is working again, I see that you are using WP Rocket, is your server also caching or are you also using a CDN like Cloudflare? These caches can take a little while to start showing the newest version of your site, I’m guessing this is what occurred.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,
Thanks for the video, I might have a solution for you but can you create a test page that behaves like your video, your live page doesn’t.Best regards,
MikeHi,
Are you asking how to have a different main menu for each language without using a language plugin?Best regards,
MikeAugust 16, 2022 at 1:10 am in reply to: How to use layout architekt with the events calendar to style event page? #1361733Hi,
I believe that you have a css error, because when I check the css seems to work.
Please include an admin login in the Private Content area so we can be of more assistance.Best regards,
MikeHi,
Please try the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS fieldBest regards,
MikeHi,
@sky19er @Guenni007’s solution at https://enfold.webers-webdesign.de/sky19er/ seems to work good.
Please clear your browser cache and check.Best regards,
MikeHi,
Another option might be to see this solution for using the team member element and open it in a lightbox. I see on your page you are not using a team member element, but images with toggles below them so perhaps give this a try.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,
MikeAugust 15, 2022 at 1:47 pm in reply to: Move the product description below the image product on tablet only #1361698Hi,
Glad to hear that this helped, Ismael’s solution is a PHP function and works on the server side while the page is being built, but getting the browser screen size needs to be done on the client side with javascript after the page is built, so this won’t work.
I can add a function to account for screen resizing, but it just auto reloads the page on resize and in a live situation the user would not trigger this because their devices would not change from desktop to tablet on the fly. Originally I thought you asked for the product tabs below the product image and make it fullwidth, in your last post you asked to have the title, price, add to cart button and description below the image, just like on the mobile version, so for this I have also added the resize function.
Try this code to the end of your child theme functions.php file in WordPress ▸ Appearance ▸ Theme File Editor instead:function move_woo_product_summary_below_image_with_resize() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function ($) { var width = $(window).width(); if (width > 767 && width < 1200) { $('#top.single-product .woocommerce-tabs.wc-tabs-wrapper').css({'padding-top':'0'}).appendTo( ".container_wrap_first.template-shop > .container > .product" ); $('#top.single-product .single-product-summary .entry-summary').css({'padding-top':'0'}).insertBefore( ".container_wrap_first.template-shop > .container > .product .woocommerce-tabs.wc-tabs-wrapper" ); $('#top.single-product .single-product-main-image').css({'padding-bottom':'0','width':'100%'}); } })(jQuery); var resizeId; window.addEventListener('resize', function() { clearTimeout(resizeId); resizeId = setTimeout(doneResizing, 300); }); function doneResizing(){ location.reload(); } }); </script> <?php } add_action('wp_footer', 'move_woo_product_summary_below_image_with_resize');Below I have linked to my test page, I tested with a Dev Tools device emulation of a device 1024px by 1205px to test the resize by rotating portrait to landscape and back.
For portrait:

For landscape:

Please give this a try.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,
MikeHey adapt,
Thanks for your question, but unfortunately it can not be edited with the ALB, you would need to edit the template file author.php or redirect the page to a new page you create with the ALB. There are a few plugins you can use to redirect with.Best regards,
MikeHi,
Thanks for the login, I have tested your contact form by cloning the element and replacing your email address with mine, and I found the form is sending the contact email and the autoresponder email correctly.
I do note that your email is marked as spam because it’s sent from a different domain, it looks like your webhost domain.
X-Spam-Score: 90
So you are probably also getting the emails in your spam folder, or some mail servers auto delete high scoring spam.
To correct this you should set up SMTP mail on your site domain and use the plugin WP Mail SMTP or Easy WP SMTP so your WordPress sends mail though your domain’s SMTP and not phpmail.
Then your mail should not be marked as spam. I know you said it used to work, but it’s possible that your webhost has too many email abusers and had been marked as a spam domain.Best regards,
MikeAugust 14, 2022 at 10:35 pm in reply to: WP Layer slider – layer alignment / positioning changes #1361670Hi,
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,
MikeAugust 14, 2022 at 10:29 pm in reply to: Woocommerce Mix & Match Products List and Grid not displaying correctly #1361669Hey Beth,
Thanks for your patience and the link to your site, I’m not familiar with this plugin, but I took a look at your page through Appearance > Customize > Woocomerce > Mix and Match Products.
You wrote that you cannot set the grid to any number of columns except 3, but I see that current columns are set to 5, I also tested changing them in the Customizer to 6 with no problems. You seemed to really want the list layout, so I tried this and it does work, but the css was a little off, so I added this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.mnm_form.layout_tabular .products .product { display: table; width: 100%; } .mnm_form.layout_tabular thead,.mnm_form.layout_tabular tbody { display: table; width: 100%; } .mnm_form.layout_tabular thead th.product-name { text-align: center; } #top.single-product #main .sidebar_sidebar_right { display: none; }please clear your browser cache and check, below I included a screenshot.
Best regards,
MikeAugust 14, 2022 at 8:02 pm in reply to: WP Layer slider – layer alignment / positioning changes #1361664Hey Tilman,
Thanks for the link to your site, when I checked your site with Windows Chrome for desktop and tablet (768px) I saw the logo was not in the center of the moon in the background image
see screenshot 1 below
so I checked for layerslider, but it was also not centered
see screenshot 2 below
so I centered it in the layerslider
see screenshot 3 below
and now on the homepage it is also centered
see screenshot 4 below
please clear your browser cache and check.Best regards,
Mike -
AuthorPosts

