Forum Replies Created
-
AuthorPosts
-
Hi,
Glad we were able to help, and thanks for posting 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,
Thanks for your patience, unfortunately I can not login though siteground.com as they are asking for the one-time code sent to your email.
Can you provide a direct FTP access so we can login?
Also please create a full backup including your database, I don’t expect problems, but just in case it would be good to know that you have a backup.Best regards,
MikeHi,
Try adding 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:
and ensure that it is activated, then add the bellow code and save.
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.function custom_script() { ?> <script> document.addEventListener("DOMContentLoaded", function () { const termDescription = document.querySelector(".archive .term-description"); const productsGrid = document.querySelector(".archive .products.columns-3"); if (termDescription && productsGrid && productsGrid.parentNode) { productsGrid.parentNode.insertBefore(termDescription, productsGrid.nextSibling); } }); </script> <?php } add_action( 'wp_footer', 'custom_script', 99 );
Sorry, I don’t read your language in the screenshot, now that I can translate your live page it does make sense. :)
Best regards,
MikeHi,
Perhaps this will be easier, try adding 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:
and ensure that it is activated, then add the below code and save.function custom_menu_by_page_name($args) { // Only modify the main header menu if ($args['theme_location'] != 'avia') { return $args; } // Get current page object if (is_page()) { global $post; $page_slug = $post->post_name; // Map of page slugs to custom menu names $menu_switches = array( 'about-us' => 'rick-sherman', 'faq' => 'rick-sherman', 'contact' => 'sherman-sound', 'help' => 'sherman-sound', // Add more as needed ); // Check if the current page slug is in our list if (array_key_exists($page_slug, $menu_switches)) { $menu_name = $menu_switches[$page_slug]; $menu_obj = wp_get_nav_menu_object($menu_name); if ($menu_obj) { $args['menu'] = $menu_obj->term_id; } } } return $args; } add_filter('wp_nav_menu_args', 'custom_menu_by_page_name');
in the code under
$menu_switches = array(
you see four page names with the menu name, such as:
'about-us' => 'rick-sherman',
change the page “slugs” or names to suit and the menu names, whatever pages or posts that you don’t add to the code will use your default menu.
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.Best regards,
MikeHi,
Ok, we will leave this open for now to hear back from you.
Typically uploading in the theme settings work fine, but sometimes the Google Bot doesn’t find it, so in that case adding the real favicon.ico in the root directory solves. I don’t know why, perhaps site caching or server caching such as Memcached, Redis, Varnish, Litespeed, etc.
As I said it doesn’t happen on all sites and I can’t reproduce the issue on my server.Best regards,
MikeHey j0schi,
Please link to the page in your screenshot so we can help. Your point of moving the description below the related products doesn’t make since, but I think that we can do this if you wish.Best regards,
MikeHi,
I hope you are not using Elementor on a Enfold site, they are not expected to work together.Best regards,
MikeHi,
No you can leave that, this is only for the Google Bot which seems to look for the favicon.ico in the root directory and doesn’t follow the HTML links in the header.
It’s an old school place for the favicon, I don’t know why Google has not updated their Bot, but as I said this “trick” seems to be working to date.
Let us know if this helps.Best regards,
MikeHi,
I assume that this is a new customization that you want to achieve, and not one that you have in the theme now.
Try this solutionBest regards,
MikeHey jmbernstein,
Assuming that there are no customizations in the functions.php of the parent theme and you are not using a Child Theme, but your WordPress is up to date you can follow these steps:
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.
While I don’t expect any issues with updating the theme, I recommend testing on a staging site first to ensure that it works well.Best regards,
MikeHey Aron,
I recommend converting your png to a favicon.ico
be sure to use this file name and proper file type, then upload it to your root directory via FTP or your webhost file manager.
Then try having your site crawled again. It may take a day or two before Google updates to show it.
Even though you have the png tags in your site for a favicon correctly, Google Bot seems to prefer the old favicon.ico in the old place (root directory) and not the /wp-content/uploads/… place on some sites. I’m not sure why it’s only some sites, but this trick seems to work.Best regards,
MikeHi,
I removed the screenshot as requested, glad Guenni007 could help, thank you Guenni007, 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,
MikeJuly 6, 2025 at 2:22 pm in reply to: Referring to Post: #1486323: Date picker field display problems + question #1486370Hi,
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,
I can’t see your screenshot, I think the error is with your server (webhost) Please include an FTP access in the Private Content area and we will try updating via FTP for you.Best regards,
MikeJuly 6, 2025 at 1:38 pm in reply to: Referring to Post: #1486323: Date picker field display problems + question #1486367Hi,
Try adding this code to the end of your child theme functions.php file instead in Appearance ▸ Editor:function my_datepicker_limits() { ?> <script type="text/javascript"> jQuery(document).ready(function($){ setTimeout(function() { var $dateField = $('.avia_datepicker'); if ($dateField.length && $dateField.data('datepicker')) { var today = new Date(); var startDate = new Date(2025, 7, 8); // August 8, 2025 var endDate = new Date(2025, 7, 18); // August 18, 2025 // Use the later of today or startDate var effectiveMinDate = today > startDate ? today : startDate; $dateField.datepicker('option', { minDate: effectiveMinDate, maxDate: endDate }); } else { console.warn("Datepicker not initialized or selector not found."); } }, 500); }); </script> <?php } add_action('wp_footer', 'my_datepicker_limits', 30);
Not both at the same time.
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.Best regards,
MikeJuly 6, 2025 at 1:01 pm in reply to: Referring to Post: #1486323: Date picker field display problems + question #1486365Hi,
Now point B, I will need more info.
So we are in July, but you want the datepicker limited to Aug 8 – 18
Is this the only time your festival is available?
The next time can you change the dates in the code? This doesn’t seem based on the current date so if it is only a few times a year it would be best to manually change the date in the code.
As for your concern that when 10.08.2025 arrives 08.08.2025 may still be selected, would someone really pick a past date for their visit?Best regards,
MikeJuly 6, 2025 at 12:16 pm in reply to: Referring to Post: #1486323: Date picker field display problems + question #1486362Hey ORC,
Point A:
The misaligned datepicker in the footer is not from the theme but from jQuery UI, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#ui-datepicker-div { display: none; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey schweg33,
The color is from the socket background color which is not the same on both sites.Best regards,
MikeHey Sammy Ngaho,
We will need more info about your site, please include an admin login in the Private Content area so we can examine.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 extraeyes,
I don’t understand your issue, if it is only in the backend, you didn’t proved backend access.
Perhaps some screenshots of the issue would help.
To add a screenshot please try using an Screenshot service and pasting the image URL in your post.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,
MikeJuly 5, 2025 at 2:07 pm in reply to: Menu-Links Seitenüberlagerung Schriftgröße ändern und Lightbox fixieren #1486345Hi,
If you want the font to be 200px and the menu items closer and to the left, try this CSS in your <strong style=’color:#000′>Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top #av-burger-menu-ul { text-align: left; padding-left: 20px !important; } .html_av-overlay-full #av-burger-menu-ul li { padding: 10px; } #top #wrap_all #av-burger-menu-ul li { font-size: 200px; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey cnpetr,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.mfp-iframe-scaler { height: 90vh !important; }
feel free to adjust to suit.
Best regards,
MikeJuly 5, 2025 at 12:33 pm in reply to: Bug Report: Gallery Image Subtitle Changes to “null” on Scroll / Reload #1486337Hi,
Glad Guenni007 could help, thank you Guenni007, 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,
MikeJuly 5, 2025 at 12:31 pm in reply to: Reservierungsseite – Datumsfeld den auszuwählenden Zeitraum einschränken #1486336Hi,
Thanks for sharing Guenni007, perhaps someone will find this helpful.
@shop802 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,
MikeJuly 4, 2025 at 11:37 pm in reply to: Reservierungsseite – Datumsfeld den auszuwählenden Zeitraum einschränken #1486331Hey shop802,
Try adding this code instead to the end of your child theme functions.php file in Appearance ▸ Editor:function my_datepicker_limits() { ?> <script type="text/javascript"> jQuery(document).ready(function($){ // Use a short delay to wait for Enfold to initialize the datepicker setTimeout(function() { var $dateField = $('.avia_datepicker'); // Adjust this if needed if ($dateField.length && $dateField.data('datepicker')) { $dateField.datepicker('option', { minDate: new Date(2025, 7, 8), // August 8, 2025 maxDate: new Date(2025, 7, 18) // August 18, 2025 }); } else { console.warn("Datepicker not initialized or selector not found."); } }, 500); // delay to allow Enfold scripts to finish }); </script> <?php } add_action('wp_footer', 'my_datepicker_limits', 30);
Best regards,
Mike -
AuthorPosts