Forum Replies Created
-
AuthorPosts
-
Hi,
I understood your previous post to mean that you had the “CSS & JS file merging and compression” disabled, this makes sense if you are using Autoptimize or WP Rocket, because both of these have a merging and compression option and you would only want this to occur once, typically errors I see occur when the theme compresses and Autoptimize or WP Rocket does it again, this double compression should be avoided.
As for using Cloudflare, I found this “article”: Cloudflare: Should You Use It or Not it is by WP Rocket so it does recommend using Cloudflare with WP Rocket, but the explanation is well written.
I believe adding Autoptimize to the mix is touchy because many of the options are available through the theme options or WP Rocket, but I would guess that carefully choosing options from all three would work out.
But with your database table issue, which seems to have been corrected by disabling the merging and compression, I would recommend trying Cloudflare with WP Rocket first without Autoptimize as a start.Best regards,
MikeHi,
I checked your site again, but it seemed to load fine for me, I tried re-loading about ten times in different browsers,

In Safari I did notice an error “can’t find variable” from a widget with the URL “fupa.net” but this didn’t stop the page from loading for me.
In my last reply, I had disabled this option for you and it seemed to correct, which seems to continue today.
From your screenshot, it looks like you are using Safari on IOS, which can be hard to clear the cache from, please try these steps.Best regards,
MikeHi,
@Cloudypro, I don’t believe that this solution would help you, as I recall that solution was before the “Fix WP bug, disable unique timestamps” was added to the “Unique timestamp of merged files and WP object cache bug” option.

So I believe using this option takes the place of the filter.Best regards,
MikeHi,
Glad to hear this helped :) 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 in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Since on Windows I was only able to recreate your error in the browser “Edge”, I tested your site on a Mac with Safari, and I found that the PDF’s open in a lightbox, but they are also redirected to the PDF directly, so if you click the “back” button after the PDF is opened in a new tab (window) I see the empty “lightbox”.
So I believe that Safari is showing the PDF inline, as directed by the site, but I believe that Safari also wants to show the PDF in a new tab by default, as directed by the browser.
So I would suggest converting your PDF’s to images to display like this.
A PDF is a custom “document” type, which is treaded like an HTML document and not like an image type.
At this point, I don’t believe there is a command for the server to serve the PDF inline.. since it is already occurring.
I also note that if you open an “image” first and use the “next” arrows to the next lightbox item, the PDF’s open in the lightbox, it seems that opening the PDF’s directly is the issue.Best regards,
MikeHi,
Sorry to hear that it is not working for you, I have not tested plugins for “Paypal Express functionality” solely, but I did find the woocommerce plugin PayPal Checkout which has Paypal Express functionality. This seems to be a free plugin that is available from the woocommerce site.Best regards,
MikeHi,
Sorry for the late reply, I checked the product page in the Private Content area, and I believe you are referring to the tab “Caractéristiques” that changes to “Info” for mobile, please see the screenshots in Private Content area.
So I didn’t find the last code solution above in your functions.php, I did find one of the previous solutions from above in your functions.php:/*Modifier titre onglet Additional information sur mobile*/ function woo_rename_tabs( $tabs ) { if(wp_is_mobile()) { $tabs['additional_information']['title'] = __( 'Infos' ); // Rename the additional information tab return $tabs; } else{ return $tabs; } } add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );As I recall, this code was unsatisfactory, so I commented it out and added the last solution above, modified for the new tab name:
function custom_woo_tab_title_script(){ ?> <script> (function($){ $(document).ready(function(){ var width = $(window).width() if ((width <= 479)) { $('.single-product #tab-title-additional_information a').each(function() { var text = $(this).text(); $(this).text(text.replace('Caractéristiques', 'Infos')); }); } else {} }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_woo_tab_title_script');This seems to work correctly, this change is now live so please clear your browser cache and check.
Please note that a screen resolution change doesn’t trigger this, so when testing the page must be reloaded for the change to show, simply resizing a desktop browser to emulate a mobile browser will not work.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 in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Sorry for the late reply, I was not able to determine the cause for this, but I was able to show the PayPal button on the cart page with this script, try adding this code to the end of your functions.php file in Appearance > Editor:function custom_script(){ ?> <script> (function($){ $(document).ready(function(){ $( '#top.woocommerce-cart' ).each(function() { var clonepp = $( this ).find( '.menu-item.cart_dropdown .woo-paypalplus-checkout-button' ); var targetpp = $( this ).find( '.wc-proceed-to-checkout .woo-paypalplus-checkout-button' ); $( clonepp ).appendTo( targetpp ); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');Unfortunately, not all plugins work with Enfold, and this seems to be such a case, another option might be to try a different PayPal plugin.
Best regards,
MikeHi,
Glad to hear that you heard back from your webhost, but unfortunately I’m not sure what the correct way to get your server to open the pdf’s inline is, did your webhost offer any advice for this?Best regards,
MikeNovember 15, 2020 at 3:05 am in reply to: Language Switcher JavaScript stopped working after Enfold update #1260537Hi,
Sorry for the late reply and thanks for the login. I couldn’t get your script to work on my localhost. I did find that there is an issue with the Google Analytics theme option, this has been reported to the dev team.
Meanwhile, a better approach to adding your scripts would be in your functions.php file in Appearance > ThemeS > Editor
So for example your alert script would look like this:function custom_script(){ ?> <script> jQuery(document).ready(function(){ alert("Ready!"); }); </script> <?php } add_action('wp_footer', 'custom_script');Please note that for each script you add you will need to change the
custom_scriptpart of the code to be unique, no two functions can have the same name.Best regards,
MikeHi,
Thank you for the login, I adjusted your css to this:@media only screen and (max-width: 480px) { #proconcoaching > .av-parallax { background-image: none !important; }}Please clear your browser cache and check.
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 in the Enfold forum and we will gladly try to help you :)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 in the Enfold forum and we will gladly try to help you :)Best regards,
MikeNovember 13, 2020 at 3:05 pm in reply to: Mailpoet3 forms (popup/bar) appears BEHIND enfold sidebar, header & footer #1260353Hi,
Thanks for your feedback and 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 in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
If I understand correctly, when you are logged in as admin the PDF lightbox work correctly, but when you are logged out they do not?
When I tested your site I was not logged in and the only browser I found an issue in was Edge.
The 500 Internal Server Error is a sign that my suggestions are not correct for your server, did you get a chance to ask your webhost what the correct code for your server would be?Best regards,
MikeHi,
Glad to hear this helped, I checked your page and the effect looks good, almost as if the close “X” “rolls” to the right 🙂
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
Thanks for the screenshot and link, I understand your point, but lets try this css which moves the “X” of the open burger to the right so it won’t be over the menu items.@media only screen and (max-width: 767px) { .responsive.html_cart_at_menu.av-burger-overlay-active #top .main_menu .menu>li:last-child { padding-right: 0 !important; margin-right: 0 !important; } .responsive.html_bottom_nav_header.html_cart_at_menu.av-burger-overlay-active #top #wrap_all .main_menu { right: -20px !important; } }But perhaps a good approach would be to hide the open “X” on mobile, thinking that the user has “intent” when clicking the burger menu, such as to find the “About” page, is the “X” really necessary? Other than in testing I don’t believe I ever try to close an open burger menu. So with this line of thought you could try this css instead:
@media only screen and (max-width: 767px) { .responsive.html_cart_at_menu.av-burger-overlay-active #top .main_menu .menu>li:last-child { display: none !important; } }We could also swap the burger and woo cart on click (or always) with jQuery if you would like 🙂
Best regards,
MikeHi,
Thank you, I assume that you tried this:# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /2017demo1/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /2017demo1/index.php [L] </IfModule> # END WordPress Content-Type: application/pdf Content-Disposition: inline; filename="*.pdf"In my research and test on my localhost, this seems to work, but this might not be correct for your server, if this is how you tested then please ask your webhost if this is correct for your server. If your webhost is on a (MS) DotNet (ASP.Net)server this might be correct, but for most servers, this would be rare.
There is also a chance that your webhost has an option in the backend to activate this “force download” of PDF’s, I recommend opening a support ticket with your webhost and explain how you want to force the download of PDF’s and see if this was the correct way to achieve this with your server.Best regards,
MikeNovember 11, 2020 at 2:39 pm in reply to: Avia Layout Builder ne fonctionne plus + Fonctionnailité Enfold #1259890Hi,
Merci pour la connexion et la vidéo, j’ai essayé de créer une nouvelle page avec Advanced Layout Builder et je ne pouvais pas non plus sélectionner les éléments du constructeur, j’ai trouvé que le panneau Yoast SEO était à l’origine de cela et je l’ai déplacé vers le haut.

J’ai regardé vos plugins et essayé de désactiver:
Outils d’édition avancés (anciennement TinyMCE Advanced)
Désactiver Gutenberg
comme ceux-ci s’attachent à la page du générateur, après avoir désactivé Advanced Layout Builder fonctionnait correctement, mais lorsque j’ai réactivé ces plugins, Advanced Layout Builder fonctionnait toujours correctement, donc je ne sais pas pourquoi, mais veuillez essayer ces étapes et effacer le cache de votre navigateur.— Translated with Google —
Thanks for the login and video, I tried creating a new page with the Advanced Layout Builder and I also couldn’t select the builder elements, I found that the Yoast SEO panel was causing this and moving it to the top corrects.

I looked at your plugins and tried disabling:
Advanced Editor Tools (previously TinyMCE Advanced)
Disable Gutenberg
as these attach to the builder page, after disabling the Advanced Layout Builder worked correctly, but when I re-enabled these plugins the Advanced Layout Builder still worked correctly, so I’m not sure why that is, but please try these steps and clear your browser cache.Best regards,
MikeHi,
Please try posting the content of your .htaccess file so we can see.Best regards,
MikeHi,
Sorry for the late reply and thanks for the link and screenshot.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.woocommerce-checkout.woocommerce-order-pay #redsys_payment_form a.button.cancel{ display: none !important; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey Alexander,
Sorry for the very late reply and thanks for the link and screenshot.
Please try this code in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 767px) { .avia_transform .avia-timeline-vertical.avia-timeline-animate .milestone_icon { opacity: 1 !important; -webkit-transform: scale(1) !important; -ms-transform: scale(1) !important; transform: scale(1) !important; } }Then clear your browser cache and check.
Best regards,
MikeNovember 10, 2020 at 1:57 pm in reply to: Report of blocked resources in Google's Rich Test Tool #1259566Hey Lene,
Sorry for the late reply, I tested your site with the Rich Test Tool, but I didn’t see any blocked resources. Please see the link in the Private Content area.Best regards,
MikeNovember 10, 2020 at 1:38 pm in reply to: Mailpoet3 forms (popup/bar) appears BEHIND enfold sidebar, header & footer #1259563Hi,
Please try this code in the WordPress > Customize > Additional CSS field:.sidebar { z-index: 0 !important; position: relative !important; }Then clear your browser cache and any cache plugin, and check.
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 in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Thank you for the feedback, I checked your site and it looks like the css is working, please see the screenshot in Private Content area.
Please try clearing your browser cache and checking again.Best regards,
MikeNovember 10, 2020 at 1:06 pm in reply to: Language Switcher JavaScript stopped working after Enfold update #1259549Hi,
Please include the language switcher script so we can test it also.
I tested your two alert on load scripts above and both worked for me.Best regards,
MikeHi,
Sorry for the late reply and thanks for the login and screenshot.
I tested different portfolio pages and noticed that the ones that didn’t show the text in the text element were the ones the had your custom appointment script in a text element.
When you load these pages in the backend you will note that the text element tries to parse the code and show a preview of the script, this causes a javascript error in TinyMCE:Uncaught Error: no such method 'instance' for autocomplete widget instance
The solution for this is to add your script to a code block element, this element doesn’t try to parse the code and show a preview of the script.
Please see the test portfolio page in the Private Content area and note the code block element with the script in it.Best regards,
MikeHi,
Glad to hear that you have this sorted out, 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 in the Enfold forum and we will gladly try to help you :)Best regards,
Mike -
AuthorPosts
