Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the feedback and the link, the css you posted contains a page ID, so this css will only work on that page, and not the linked page. You could use this css:@media only screen and (max-width: 767px) { #av_section_2 .flex_column_table { margin-top: 0 !important; } }and it probably will work, but I recommend adding a custom ID to the element on each page that you want this to work on, because the ID #av_section_2 will occur on every Advanced Layout Builder built page, and if it should contain a flex_column_table after this css will fire.
If this was the only page you are having issues with then try this css with the correct page ID:@media only screen and (max-width: 767px) { #page-id-563 #av_section_2 .flex_column_table { margin-top: 0 !important; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeJanuary 9, 2021 at 2:36 pm in reply to: Enfold: Blätterfunktion von Seite 2 + 3 zurück auf Seite 1 funktioniert nicht #1271220Hi,
Wir glauben, dass das nächste Update ungefähr Ende Januar sein wird, da ich für die Verwendung des “Envato Market Plugins” dieser Envato-Support-Thread, der erklärt, dass die Fehlermeldung” Das Envato Market WordPress-Plugin erfordert TLS-Version 1.2 oder höher “bedeutet, dass die im PHP Ihres Servers installierte TLS-Version 1.2 sein muss, um eine Verbindung herzustellen zu Envato.
Bitte überprüfen Sie, welche TLS-Version in PHP Ihres Servers installiert ist. Wenn Ihr Server eine alte PHP-Version wie 5.6 verwendet, besteht eine gute Chance, dass durch ein Update auf 7.4 auch die TLS-Version korrigiert wird. Überprüfen Sie dies daher.
Bitte beachten Sie auch, dass dies möglicherweise darauf zurückzuführen ist, dass die Verbindung zum “Envato Market-Plugin” blockiert ist, z. B. eine Firewall. Wenn Sie also Sicherheits-Plugins haben, deaktivieren Sie diese.Sie benötigen jedoch nicht unbedingt das Envato Market-Plugin, um Enfold zu aktualisieren. Ich persönlich bevorzuge die manuelle Aktualisierung über FTP, da ich eine neue Version testen und bei Problemen problemlos auf die alte Version zurücksetzen kann, wenn ich Probleme bemerke. Der einfachste und sicherste Weg, dies zu tun, besteht darin, die neueste Version aus Theme Forest herunterzuladen und Ihren aktuellen Themenordner über FTP in “enfold-old” umzubenennen. Laden Sie dann den neuen Ordner “enfold” hoch und überprüfen Sie, ob Ihre Site ordnungsgemäß funktioniert.
Wenn Sie aus irgendeinem Grund ein Rollback auf die alte Version durchführen möchten, ist dies ganz einfach. Benennen Sie den neuen Ordner “enfold” einfach über FTP in “enfold-new” um und benennen Sie “enfold-old” in “enfold” um und aktualisieren Sie ihn dann deine Seite.
Sobald Sie zufrieden sind, können Sie den Ordner “enfold-old” über FTP löschen (nicht die WP-Themenseite).
Bitte versuchen Sie nicht, den Themenordner zu überschreiben, da dies alte Dateien zurücklässt und Fehler verursacht. Beachten Sie auch, dass der Verzeichnisname in der Erläuterung der Standardname [umhüllen] ist, wenn Sie den Standardnamen des Themas “Entfalten” geändert haben Verwenden Sie aus Sicherheitsgründen den von Ihnen zugewiesenen Namen. Dies wäre nicht üblich, so dass es höchstwahrscheinlich nicht der Fall ist, aber ich dachte, es sollte darauf hingewiesen werden.— Translated with Google —
We believe the next update will be about the end of January, as for using the “Envato Market plugin” I found this Envato support thread that explains that the error message “The Envato Market WordPress plugin requires TLS version 1.2 or above” means that the TLS version installed in your server’s PHP must be 1.2 in order to connect to Envato.
Please check what version of TLS is installed in your server’s PHP, there is a good chance that if your server is using an old version of PHP, such as 5.6, updating to 7.4 will also correct the TLS version, so please check this.
Please also note that it could also be due to something blocking the “Envato Market plugin” connection, like a firewall, so if you have any security plugins try disabling them.But you do not “absolutely” need the Envato Market plugin to update Enfold, I personally prefer updating manually via FTP because I can test a new version and easily “roll-back” to the old version if I notice any issues. The easiest and safest way to do this is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors, also note that the directory name in the explanation are the default name [enfold], if you have changed the default name of the Enfold theme for security reasons then use the name you assigned. This would not be common so it’s most likely not the case, but I thought it should be pointed out.Best regards,
MikeJanuary 9, 2021 at 12:33 pm in reply to: WPML flag in menu link to external url working only on homepage? #1271210Hi,
Thank you for the feedback and glad to hear that you were able to sort this out.
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
@baucks thanks for the link to the script you are using, I tried testing this on my localhost and believe this adjustment will help.
Please try changing this line:else if (direction === 1)to:
else if (direction === 1 && curScroll < 600)this is meant to only allow the header to show when scrolling up within 600px of the top of the page.
After applying the change, please clear your browser cache and check.Best regards,
MikeHi,
Sorry for the late reply and thanks for explaining further. I found this function for changing the Alternate Menu for Mobile as explained in this thread.
I tried testing this on my localhost with Polylang and changed it to show a menu based on the language, in this example I set one menu to show for English and another menu to show for any other language. In $header[‘alternate_menu’] there is the ID of your selected menu. Replace the value with your translated menu ID according to your language.
To find the ID of your other menus look at the bottom of any menu move your cursor over the “Delete” link and in the popup for the link you find something like http://localhost/wp_xxx/wp-admin/nav-menus.php?action=delete&menu=25&_wpnonce=xxx
menu=25: 25 is the id of the menu.
Try adding this code to the end of your functions.php file in Appearance > Editor:function my_header_setting_filter( $header, $context ) { if (get_locale() == 'en_US') { $header['alternate_menu'] = 11; } else { $header['alternate_menu'] = 56; } return $header; } add_filter( 'avf_header_setting_filter', 'my_header_setting_filter', 10, 2 );So in the above code you will want to adjust the language, ‘en_US’ and the two IDs
Best regards,
MikeHi,
Thank you for the feedback, #1: yes in the theme options: Enfold Theme Options > Performance > JS & CSS file merging and compression & Enfold Theme Options > Performance > Load jQuery in your footer.
For #2 for desktop, & for your second post: mobile homepage and blog post cover photos
I removed the css:#top.single .container { padding: 0 !important; width: 100% !important; max-width: 100% !important; } #top.single .content { padding-top: 0 !important; } .responsive .single .container { max-width: 875px !important; }I also found an extra bracket in your Quick CSS that could have thrown things off, I’m not sure that it did.
I then cleared your 3 caches: Autoptimize, Asset CleanUp Pro, & WP Rocket, and this seems to correct by allowing the theme settings to set the widths. Please try clearing the “caches” and your browser cache and check.
I feel that using the classes .container & .content is too general as they typically occur several times on a page, thus your last two screenshots. We can make this more specific, but I don’t see the need for it, please check.Best regards,
MikeJanuary 7, 2021 at 1:30 pm in reply to: Some WPML translations on certain pages not working with Enfold #1270860Hi,
Thank you and happy new year to you also 🙂
I note that the WPML > Translation Management option says: “Before you can use WPML’s Translation Management, you need to complete this quick setup.” please see the first screenshot.
When you are viewing the frontend of the post, in the admin toolbar there is an “Edit Translation” option, is this the page you mean? I don’t see any shortcodes there. Please see the second screenshot.
Now when I compare this page of the working translation page, to the non-working translation, the non-working translation has mostly English text in the Korean translation. Please see the third screenshot.
Please try correcting the non-working translations. That is, I believe the translations are working correctly, but the translations of this page are in English, incorrectly, and changing the incorrect text to Korean will then display the language correctly.Best regards,
MikeJanuary 6, 2021 at 2:46 pm in reply to: BUG: content no longer showing after editing copyright field via theme options #1270629Hi,
@Guenni007 thank you for your help, as always, with these threads, and Happy New Year🙂, I don’t believe there was a “bug”, on the other thread I noted thesiteground-optimizer-combined-jserror and recommend disabling it. A day later I cleared the theme merging and everything seemed fine, so I assumed that thesiteground-optimizer-combined-jscontained an error.Best regards,
MikeJanuary 6, 2021 at 2:07 pm in reply to: WPML flag in menu link to external url working only on homepage? #1270615Hi,
Thank you, I also wish you a happy and healthy 2021🙂
As I investigated further I noted that in WPML > Language URL format > A different domain per language it says: This option is not yet available for Multisite installs
so I understand that you are trying to work around this with the function above, but since it is not working on all pages I wonder if WPML is working against us by setting the URL after Enfold, or some other conflict.
At the current setting WPML > Language URL format > Different languages in directories you can see that the “expected” URL is the undesiered /iq/zh-hans/
I found that this option in WPML can be turned on, so perhaps using this instead will work correctly.
I found the link to the WPML function from this WPML support thread, I’m linking to it because it has further tips than the official page that might help you.Best regards,
MikeHi,
Thank you for the login, I checked your Quick CSS and found that you had two errors with media queries missing brackets, I corrected these and now the lower half the css in the Quick CSS will work correctly.
I changed the “max-width” css to this:@media only screen and (min-width: 1250px) { #top #main > .container_wrap.fullsize > .container { max-width: 1250px !important; } }This seems to be working correctly. I also noticed that you disabled the jQuery Migrate & enabled Load jQuery in your footer, I recommend disabling these two settings if you notice any issues, at least as a test.
Correcting the Quick CSS seems to have fixed your “text-sep-date” & H1 font size issue.
Please clear your browser cache and check.Best regards,
MikeHi,
Glad Ismael could help, since you placed this function in your child theme functions.php it will be safe and not overwritten, this is the correct place for it.
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
Thanks for the feedback, I see for mobile the social icons and the search icon are not displaying, are you still using your custom functions above? Please try removing this and update the Enfold theme, as you are using version 4.6.2 which is quite old now and contained many errors that have now been corrected in the current version 4.7.6.4Best regards,
MikeHi,
Happy new years to you too 🙂
I checked your site and the font error seems to be solved.Best regards,
MikeJanuary 4, 2021 at 2:59 pm in reply to: Graphic Elements rendering only AFTER leaving the browser window when scrolling #1270164Hi,
Glad to hear this helped, as you were able to see the correction without doing the “merge & compress” and “delete old CSS and JS” part, you should be fine now, but should some changes in the future not take hold you can then try this step.
I recommend not using any caching or minifying until your site is done, only because making frequent changes can be masked with the cache.Best regards,
MikeHi,
Thank you for the screenshot, from this I see your max-width is set to 1250px, but your blog page is still 1010px, this css would correct:#top.page-id-248 #main > .container_wrap.fullsize > .container { max-width: 1250px !important; }I used the page ID after “#top” in the css above because it looks like this page is not set as the site “blog” page, if it were we could use the “blog” class after the “#top”.
To set the post H1 to 40px please try this css:
#top .fullsize .template-blog .post-title { font-size: 40px !important; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Happy New Year to you too 🙂
So in the browser console I see these two errors:

both of these javascript files seem related to your affiliate program.
It sounds like your affiliate program plugin is only needed to update the database and not for each purchase, if this is true then you should be able to disable the plugin and test again. Please try this because there is a chance that once these errors are removed the product page will work correctly.

Best regards,
MikeJanuary 4, 2021 at 1:16 pm in reply to: Hide logo (mobile only) when scroll down stopped working since last update #1270132Hi,
@baucks please include a link to your site, and please remove your “custom_hide_logo_script” code.
So for your iPad you would like the header to be sticky and have the logo disappear on scroll, and you would like this on the desktop version. For mobile do you want the same? If you are hiding the logo on scroll why do you want you show the header, so the burger menu is visible?
I ask because typically the header takes a lot of space on smaller screens, you might be interested in having the header scroll away when the user scrolls down and have it show when the user starts to scroll up, if you are please see this thread.Best regards,
MikeHi,
So your plugin support says there is a “SOAP WSDL error” but your hosting support says there is not one?
Which plugin are you using for your Virtual POS?
I tried to test your checkout on http://www.tarimyedekparcam.com.tr to see the error but I did not see any credit card entry field and the only errors I found were “mixed content” for fonts & a logo.Best regards,
MikeHi,
Thank you for the link to your test page, I see that the “Text Block with a link” & the “Link in List Item Desciption” are not changed, but because the
mobilepay:// protocol is not recognised the links do not launch.
The last link “CATALOGUE LIST ITEM ADVANCED LINK” has had the mobilepay:// removed, which we could add back in but then the link will be like the first two, where the whole link is shown but will not launch.
I do not find any plugins to add the protocol, so I don’t see how you will be able to use this.
I did find another page on your site /priser/, these links usehttps://www.mobilepay.dk/where the protocol is https:// and the domain is mobilepay.dk and these links work correctly.
Are you sure you are supposed to use the mobilepay:// protocol?Best regards,
MikeHi,
Sorry for the very late reply, I tried to investigate the mobilepay:// protocol but apparently it was shut down in January 2018, since you are asking about this I imagine this is still being used at your location. Since WordPress doesn’t recognize the mobilepay:// it is trying to correct the “error” I didn’t find a way to add your own protocols, but I believe we might be able to write a script that will adjust this for you on page load.
Can you create a test page and link to it so we can investigate further.Best regards,
MikeDecember 30, 2020 at 2:54 pm in reply to: WPML flag in menu link to external url working only on homepage? #1269987Hi,
Sorry for the very late reply and thanks for the login, I tried investigating why the [CH] language switcher is not linking correctly on other pages, when I check your functions.php it looks like you have created a custom post type of “iq” and a custom category of “iq”, from past experience I have seen strange issue arise when a post type and category type are the same.
I also have a question about the function “wpmlcore_3937_fix_for_enfold_page_builder” and what it is doing with “_aviaLayoutBuilderCleanData”
I’m not sure what might be causing this, but I’m thinking it could be a conflict in functions.Best regards,
MikeHi,
Sorry for the very late reply, and thanks for the link to your site. I took a look but I couldn’t find the masonry grid as shown in your screenshots, if you could link to the page I sure we could help with the background shadow.
I also checked one of your blog posts H1 title and it seems to be set to a font size of 30px for both desktop and mobile, this is the H1 you meant correct? The login token doesn’t seem to allow me into the backend to check your settings, please check.
As for the image size of the blog page, the page container width is set to 1010px, which is consistent with your “boxed” layout for your site, but your blog gird is set to 3 posts per row, so to achieve this the images must be smaller, if your grid was set to 2 posts per row the images would be larger, or we can change the width of just the blog page so the images are larger, 1310px for example.
Please try changing the number of posts per row, or try changing the width of your pages in the theme settings to see if this would help.Best regards,
MikeHi,
Very good, as I understand the above, the preloader was not the suspected cause, it was just hiding the SOAP error, so once that is sorted out, it sounds like you will be able to enable the pre-loading again.Best regards,
MikeDecember 29, 2020 at 3:30 pm in reply to: Some WPML translations on certain pages not working with Enfold #1269968Hi,
Sorry for the very late reply, are you still experiencing a change in the Translation editor? Can you explain what is different now?
You can add screenshots by uploading your images to a service such as https://savvyify.com/img/ and pasting the html code, or link given in your post or the Private Content area.Best regards,
MikeDecember 29, 2020 at 3:17 pm in reply to: how-to-stop-background-video-in-color-section-from-auto-looping #1269966Hi,
Sorry for the very late reply, and thanks for the login, it looks like you (*someone) added the “section.php” to your child theme, but the function to use it was commented out:/* add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; } */I uncommented this function so your custom “section.php” will be used, and in my test it is now working, please clear your browser cache and check.
Best regards,
MikeHi,
Sorry for the late reply, are you trying to have the video autoplay & loop on mobile? I ask because getting the video to autoplay for mobile may not be possible for all devices, due to browser limitations, but the loop should work.
I also notice that your video link is in this formathttps://youtu.be/Kohi7wu-P74please try this format insteadhttps://www.youtube.com/watch?v=Kohi7wu-P74Best regards,
MikeDecember 29, 2020 at 2:06 pm in reply to: Trampelt kaufen ; Optionen & Preis ; Wartung ; deutsche Handhabung #1269962Hi,
Entschuldigen Sie die späte Antwort. Ich werde versuchen, Ihnen bei Ihren Fragen behilflich zu sein. Zwar haben wir derzeit keinen deutschen Muttersprachler im Moderatorenteam, aber normalerweise können wir über Google Übersetzer helfen.
# 2> Ihre Frage zu den Preisen, alle Vorlagen sind im Thema enthalten, jedes Element auf der Seite kann sein hinzugefügt oder entfernt.
Normalerweise wählt man eine “Basis” -Demo aus einer davon und importiert sie und passt sie dann an.
# 3> Sie können Ihr eigenes Design oder Layout erstellen, ohne die Demos oder nur die gewünschten Elemente zu verwenden.
# 4> Wartung? Ich bin mir nicht sicher, was Ihre Frage zur Wartung ist. Dies wäre das gleiche wie bei jeder WordPress-Site.
Ich hoffe, dies hilft bei der Beantwortung Ihrer Fragen.— Translated with Google —
Sorry for the late reply, I will try to assist with your questions, it is true that currently, we don’t have a native German speaker on the moderator team, but typically we are able to assist via Google translate.
#2 > your question about prices, all of the templates are included with the theme, each element on the page can be added or removed.
Typically, one would choose a “base” demo from one of these and import it and then customize it to suit.
#3 > You can create your own design or layout without using the demos or only using the elements you wish.
#4 > maintenance? I’m not sure what your question about maintenance is, this would be the same as any WordPress site would be.
I hope this helps answer your questions.Best regards,
MikeHi,
Sorry for the late reply, the middle section of your post above looks like a response from your plugin author, first it asks to disable the pre-loading script, which you can do at Enfold Theme Options > Theme Options > Page Preloading, then doing this it says you will then see the “SOAP WSDL” error.
Then it says you should ask your “server provider” to enable this function.
So at this point they are asking you to contact your web hosting to enable “SOAP WSDL” on your server, please try contacting your webhost to do this.
I’m not sure how your Virtual POS plugin is using SOAP WSDL, but hopefully following their advice will help you.Best regards,
Mike -
AuthorPosts
