Forum Replies Created
-
AuthorPosts
-
April 13, 2024 at 8:47 pm in reply to: Reitersektion plötzliches Layout- und Darstellungsproblem #1439928
Hi,
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 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,
The precious css had an error in the spelling, I corrected it and added it back, please clear your browser cache and check.Best regards,
MikeHey Diana,
I believe that I solved both issues with this css, please clear your browser cache and check.::-webkit-input-placeholder { color: #000 !important; opacity: 1 !important; font-size: 10px !important; letter-spacing: 1px; font-weight: 300; } ::-moz-placeholder { color: #000 !important; opacity: 1 !important; font-size: 10px !important; letter-spacing: 1px; font-weight: 300; } :-ms-input-placeholder { color: #000 !important; opacity: 1 !important; font-size: 10px !important; letter-spacing: 1px; font-weight: 300; } :-moz-placeholder { color: #000 !important; opacity: 1 !important; font-size: 10px !important; letter-spacing: 1px; font-weight: 300; }
Best regards,
MikeHi,
Try asking your webhost to restore the last backup of the site and database, typically webhosts make automatic backups each week, if you have not used one of these to restore your site befor then ask the webhost support and they will be happy to do it for you. If you remember which month was the last time your site worked correctly you could ask them to go back to that point and also solve whatever was causing this issue.Best regards,
MikeHi,
It looks like you had this thread that was for a different donain and the css you added creates the black bar by adding padding to the top, I removed it for you.Best regards,
MikeHi,
Thanks for the login, your theme is very old v4.7.6.3, and you can not automatically update it, please follow these steps you should not lose any settings or content, but you can also use your webhost options to backup your site & database if you are worried.
To update your version of Enfold you will need to download 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.
Best regards,
MikeHi,
You write that you are using a separate menu for mobiles but when I check your menus the “Mobil” menu only has two items:
and your theme option for using a separate mobile menu is not activate
so how are you adding the separate mobile menu?
Also I can’t vew your child theme functions.php file because the theme editor is not an option:
Best regards,
MikeHi,
Thank you, I see that your WordPress ▸ Settings ▸ General ▸ WordPress Address has your domain with the word wordpress added and WordPress ▸ Settings ▸ General ▸ Site Address doesn’t, these two should match, please remove the word wordpress
If you look at the two links below the /posts/ looks broken and /wordpress/posts/ looks correct, this is due to this setting.Best regards,
MikeHi,
It looked like you added many menu options in the Enfold Theme Options ▸ Advanced Styling and each was empty so the empty setting was overriding the Enfold Theme Options ▸ General Styling settings. I removed these for you and now your menu is back to the way it was.
If you want to use the Enfold Theme Options ▸ Advanced Styling to change the colors then you can, but to need to add the new colors for it to work.
I believe that we have solved your Header Widget that was the topic of this thread, please let us know if so we should now close this thread.
Please note that we ask that each thread stays on a specific topic, this helps other users and Mods. For further questions please open a new threadBest regards,
MikeHi,
I’m not clear on what you are tring to do, the page that you linked to has big squares with background colors, text & icons:
so I don’t think that the table element is the correct element to use, perhaps a column element with the column link is better:
or the grid row, which has the same option.
If I have misunderstood please explain further.Best regards,
MikeHey blinddrop,
Please include an admin login in the Private Content area so we can investigate.Best regards,
MikeApril 13, 2024 at 4:57 pm in reply to: Bug: Enfold Thumbnails No longer recognised by WordPress or plugins #1439907Hi,
Sorry to hear this, but we don’t have a way to fix server errors. You can login to your Theme Forest account and request a refund We will go ahead and close this thread, Thank you for your patience and understanding and for using Enfold.Best regards,
MikeHey cambium.digital,
I believe that this is because you are using custom css to make your menu item display flex with space-between with a custom gap. This changes the placement of your menu items but the mega menu placement is done by javascript and not css so they are not correct.
You could try this css for the last two mega menu items:@media only screen and (min-width: 768px) { #menu-item-28288 > .avia_mega_div.avia_mega2.six.units { left: -263% !important; } #menu-item-28289 > .avia_mega_div.avia_mega1.three.units { left: -288% !important; } }
and adjust to suit for different screen sizes.
Best regards,
MikeApril 13, 2024 at 3:38 pm in reply to: Magazine reverse the date order in only few ones, how? #1439900Hey Julien,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function avf_magazine_entries_query_mod($query, $params) { if (is_page(3961)) { $query['order'] = 'ASC'; } return $query; } add_filter('avf_magazine_entries_query', 'avf_magazine_entries_query_mod', 10, 2);
adjust the page ID to suit.
If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
then add the above code and save.Best regards,
MikeHi,
I think that your caching plugin was not letting the Quick CSS to show correctly, so I moved the css to WordPress ▸ Customize ▸ Additional CSS and it works good there. I adjusted the css to show a bigger font, please clear your browser cache and check.
This is the css that is now used:@media only screen and (min-width: 768px) and (max-width: 989px) { #header_main .inner-container .widget .textwidget p span { font-size: 24px !important; } } @media only screen and (min-width: 990px) and (max-width: 1439px) { #header_main .inner-container .widget .textwidget { margin-left: -196%; } } @media only screen and (min-width: 990px) and (max-width: 1439px) { #header_main .inner-container .widget .textwidget p span { font-size: 14px !important; } } @media only screen and (min-width: 1440px) and (max-width: 1670px){ #header_main .inner-container .widget .textwidget { margin-left: -97%; } } @media only screen and (min-width: 1440px) and (max-width: 1670px) { #header_main .inner-container .widget .textwidget p span { font-size: 24px !important; } } @media only screen and (min-width: 1671px) { #header_main .inner-container .widget .textwidget { margin-left: -66%; } } @media only screen and (min-width: 1671px) { #header_main .inner-container .widget .textwidget p span { font-size: 38px !important; } } #header_main .inner-container { display: flex; flex-wrap: wrap; justify-content: center; align-content: center; } #header_main .inner-container .widget { padding: 0; } #header_main .inner-container .widget .textwidget { align-content: center; height: 100%; }
Best regards,
MikeHi,
When I check your mobile menu items they do not include any attributes, such as the proper classes:
The parent menu items have classes, but all menu items should have classes, I also don’t know why each menu item is wrapped in a “sub-menu” ul
this is what they should look like:
note that the current menu item has the class current-menu-item this is what tells the css to highlight it, without classes it won’t work.
Your desktop menu seems to be correct.
So I don’t know if this is a plugin conflict or if you have some customization in your child theme because the theme editor is not showing so I can’t see the child theme functions.php.
Do you know if you have any customizations that might remove the classes?
Do you want to create a staging site for us the test on?Best regards,
MikeHi,
Thanks when I try to save a setting in the theme panel I see a 500 server error on the core WordPress file admin-ajax.php:
Failed to load resource: the server responded with a status of 500 () ▸ /wp-admin/admin-ajax.php
I’m not sure that would cause this as I’m not a server expert, but I see an error user_get_body(tmpstackbuf, 16384): read from client failed, and when I search online it seems to point to the server reaching a limit in mod_lsapi setting, so you cound ask to have this increased.
I also note that your PHP max input variables is at a low setting, you should ask to change it to 10000, perhaps these are related, but I don’t know.
It this doesn’t help then try changing your PHP version down to 8.0, I don’t think this is the issue but it is worth trying.Best regards,
MikeHi,
When I test this function on my test shop site the category and tag archive page show the full size product images.
Have you tried disabling any other customization functions and plugins? Perhaps one is confliting with it. otherwise please include an admin login in the Private Content area so we can investigate further.Best regards,
MikeHi,
Thank you but this file is called “access.log” so it doesn’t show any errors, try to post the “error.log”
Nonetheless your site still shows the “mixed content” error, so the css files are not loaded and this is why the pages like your contact page are broken.
Are you sure that WordPress ▸ Settings ▸ General ▸ Site Address and WordPress ▸ Settings ▸ General ▸ WordPress Address both use “https” for your URL?
This is a screenshot of the setting:
Best regards,
MikeHi,
Thanks for the screenshots, I use a Samsung Galaxy A14. When I check your site now it seems the button is now covered with the lower section, please see the screenshot in the Private Content area.Best regards,
MikeHey pnamroud,
Our current version is 5.7
If you are using the Advanced Layout Builder to create your posts you could add a widget element to your posts and add the TOC widget to the sidebar displayed in the widget element.
If you are using the WordPress editor for your posts you could try this javascript TOC, first add this code to your post:<div id="toc"></div>
in the “text” tab:
Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor, If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
then add this code and save.function custom_toc_script() { ?> <script> document.addEventListener('DOMContentLoaded', function() { htmlTableOfContents(); } ); function htmlTableOfContents( documentRef ) { var documentRef = documentRef || document; var toc = documentRef.getElementById("toc"); var content = document.querySelector(".single-post .entry-content"); var headings = content ? [].slice.call(content.querySelectorAll( "h1, h2, h3, h4, h5, h6")) : [] //var headings = [].slice.call(documentRef.body.querySelectorAll('#content h1,#content h2,#content h3,#content h4,#content h5,#content h6')); headings.forEach(function (heading, index) { var ref = "toc" + index; if ( heading.hasAttribute( "id" ) ) ref = heading.getAttribute( "id" ); else heading.setAttribute( "id", ref ); var link = documentRef.createElement( "a" ); link.setAttribute( "href", "#"+ ref ); link.textContent = heading.textContent; var div = documentRef.createElement( "div" ); div.setAttribute( "class", heading.tagName.toLowerCase() ); div.appendChild( link ); toc.appendChild( div ); }); } try { module.exports = htmlTableOfContents; } catch (e) { // module.exports is not defined } </script> <?php } add_action('wp_footer', 'custom_toc_script');
This is the result:
There are many TOC plugins available, if you would like a different style, the RankMath SEO plugin also includes a TOC that works with Enfold.Best regards,
MikeHey strumpumpel,
Unfortunately Enfold doesn’t have this feature, please check the plugins from the WordPress library, here is a good place to start.Best regards,
MikeHey Intell,
Please go to Enfold Theme Options ▸ Cookie Consent ▸ Cookie Handling ▸ Enable cookie consent messages and choose Disable cookie consent messagesBest 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,
I don’t see the server logs, please upload them to DropBox or such and include the link in the Private Content area so we can examine.Best regards,
MikeHi,
Please check that this setting is enabled on your iPhone
When I check your site with an iPhone on browserstack.com the favicon.ico shows, see the screenshot in the Private Content area.Best regards,
Mike -
AuthorPosts