Forum Replies Created
-
AuthorPosts
-
Hey kernwein,
Thanks for the link to your site, but I can’t tell where it is coming from without logging in, please include an admin login in the Private Content area so we can be of more assistance.Best regards,
MikeHi,
Thank you for the login, I see that you are using a plugin to add a background slider to the page: Unlimited Background Slider which is taller than the page content, so I have adjusted the function to also change the height of the page content to match your slider.function custom_sidebar_header_min_height() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ var pageHeight = $('body').height(); $('.html_header_sidebar #top #header').css({'min-height': pageHeight + 51}); $('.html_header_sidebar #top #av_section_1').css({'min-height': pageHeight}); })(jQuery); }); </script> <?php } add_action('wp_footer', 'custom_sidebar_header_min_height');This seems to work on the pages that I checked, please check.
Best regards,
MikeNovember 17, 2022 at 2:01 pm in reply to: Site Title to Logo on Mobile + Missing Search with Burger + Category Pagination #1372948Hi,
Thanks for your feedback, sorry for point 2 I thought you were talking about the mobile view. The search icon you see when you are logged in is not the site search, it is the admin search. To show the search icon next to your desktop burger menu please use this css:.html_burger_menu_active #header .avia-menu #menu-item-search.menu-item { display: block; } .html_burger_menu_active #header .avia-menu #menu-item-search.menu-item a:before { color: #5e5a4d; }For point 3 I was looking at the wrong page, unfortunately, the load more pagination is not available for categories.
Best regards,
MikeHi,
Thanks for your patience, it looks like you are using the Construction Demo, to change the width of the single post pages add this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .fullsize .template-blog .post .entry-content-wrapper > *, #top .fullsize .template-blog .post .entry-content-wrapper { max-width: 1310px; }by default the max-width is 800px, adjust the above width to suit.
To change the post justification to left use this css:#top #main .fullsize .template-blog .post .entry-content-wrapper { text-align: left; }To change the border colors go to Enfold Theme Options ▸ General Styling ▸ Main Content ▸ Border Colors

After applying the css, please clear your browser cache and check.Best regards,
MikeHi,
xela thanks for your patience, on your test site the htaccess login is not working so I couldn’t view it, but on your live site the item on the /works/ page are working correctly, is the correct page?
FOTOstheimer Please open a new thread with the url to the page in question and an admin login so we can be of more assistance. It gets confusing when we are working on more than one site per thread. Thanks for understanding.Best regards,
MikeNovember 17, 2022 at 12:55 pm in reply to: Site Title to Logo on Mobile + Missing Search with Burger + Category Pagination #1372933Hi,
Thank you for your patience and the link to your question, as I understand the first question you are currently using this function to show a text logo on your desktop site, but you only want it to work on desktop and on mobile you want the logo image that you uploaded at Enfold Theme Options > Logo to show. To do this you will need to modify the function to include an IF statement to detect the WordPress mobile function like this:add_filter('avf_logo_final_output', 'avf_text_logo_final_output'); function avf_text_logo_final_output($logo) { if(!wp_is_mobile() ) { $link = apply_filters('avf_logo_link', home_url('/')); $logotext = "LOGO TEXT"; $subtext = "CUSTOM SUBTEXT"; $subtext = "<span class='subtext'>$subtext</span>"; $logo = "<span class='logo'><h1><a href='".$link."'>".$logotext.$subtext."</a></h1></span>"; return $logo; } else { return $logo; } }If you have trouble adjusting your function, please include an admin login in the Private Content area below so we can assist.
2: when I check your site I see the magnifying glass, perhaps you already found the setting at Enfold Theme Options ▸ Main Menu ▸ General ▸ Append search icon to main menu

3: to change the pagination to “Load More”, it look like you are using the Blog Posts element, but this element doesn’t offer the “Load More” pagination, for this option please try the Masonry element:

but this will also change the layout of your post grid, so please test on a test page to see if you like the change.Best regards,
MikeNovember 17, 2022 at 11:39 am in reply to: Shop category thumbnail images are suddenly the wrong size #1372911Hi,
Glad we were able to help, ‘Run everywhere’ is correct. 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,
Please ensure that you copied the code from the support forum and not an email that you may get from the forum because copying from an email may convert the quotes in the code to “curly quotes” which will break the code.
If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.Best regards,
MikeHey mhmhdev,
Thanks for your question, so you don’t have the ability to downgrade the PHP version temporarily?
If you could then you could update the theme though WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New as in the second set of instructions in the post you linked to.
If you can not then follow the FTP instructions in the post you linked to. After you update via FTP then you can activate the Enfold theme and it should work correctly.Best regards,
MikeNovember 17, 2022 at 1:24 am in reply to: Smaller viewports ignoring settings of a created css-class #1372856Hi,
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,
MikeNovember 17, 2022 at 1:23 am in reply to: burger menu on mobile menu changes colors on breakpoints #1372854Hi,
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,
MikeHey Louis Witte,
Please login into the support forum and open a new thread, you have asked your question through the contact form which is not for support requests.
If you have not registered to our support forum yet you can do so here.
Thank you for your understanding and for using Enfold.Best regards,
MikeHey ralfakerkhoff,
Thanks for your question, when I test the disable emojis option in the Enfold Theme Options ▸ Performance settings the wp-emoji-release.min.js file is not loaded, perhaps you have a caching plugin that is still serving it, or perhaps you are also using caching on your webhost that you need to clear, or perhaps you are also using a CDN like cloudflare that you need to clear?
Perahps there is a plugin that is conflicting with the theme setting, if none of these suggestions help try adding this function in your child theme functions.php://Disable WordPress Emojis add_action( 'init', 'smartwp_disable_emojis' ); function smartwp_disable_emojis() { remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); remove_action( 'wp_print_styles', 'print_emoji_styles' ); remove_filter( 'the_content_feed', 'wp_staticize_emoji' ); remove_action( 'admin_print_styles', 'print_emoji_styles' ); remove_filter( 'comment_text_rss', 'wp_staticize_emoji' ); remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' ); add_filter( 'tiny_mce_plugins', 'disable_emojis_tinymce' ); } function disable_emojis_tinymce( $plugins ) { if ( is_array( $plugins ) ) { return array_diff( $plugins, array( 'wpemoji' ) ); } else { return array(); } }If this doesn’t solve then include an admin login in the Private Content area so we can be of more assistance.
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 gdsconcepts,
Thanks for the link to your page, it looks like you have added custom css to set the footer as fixed to the bottom of the screen, as I understand your question you actually want the footer at the bottom of the page so it will scroll into view. So please remove your custom css for this.
Now the issue that the sidebar header doesn’t reach the bottom can be solved with this function added to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_sidebar_header_min_height() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $('.html_header_sidebar #top #header').each(function() { var pageHeight = $('body').height(); $(this).css({'min-height': pageHeight }) }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'custom_sidebar_header_min_height');Best regards,
MikeHey rixi,
Thank you for your patience and the link to your page, I assume to mean the image scaling on hover, to remove this please add this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.avia_desktop #top .av-masonry-entry:hover .av-masonry-image-container { -webkit-transform: unset; transform: unset; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
If you want to continue to use the emojis in the title fields just keep in mind to check them each time you update the page, at some point your page will be finished and you won’t be updating it anymore and at that point you won’t be losing the emojis anymore.
Another option would be to add the emojis via CSS with the :before / :after selector see the example in this article.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,
MikeNovember 16, 2022 at 1:47 pm in reply to: WooCommerce/WooCommerce Bookings issues after updating, JavaScript error #1372762Hi,
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 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,
Thanks for the login to your staging site, I’m not sure why this is occurring, but I added this css to correct:.av-main-nav #menu-item-86 ul.sub-menu { right: 0; left: unset; }Please clear your browser cache and check and see the screenshot in the Private Content area.
This should also work on your live site since the menu item has the same ID.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,
MikeNovember 16, 2022 at 12:55 pm in reply to: Shop category thumbnail images are suddenly the wrong size #1372753Hi,
Glad to hear that this helped, I’m not sure what the cause of this is since only a few installs have this error, but the team has looked into it.
Anyways, glad we were able to help and 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,
MikeNovember 15, 2022 at 10:54 pm in reply to: Menu with app feel and look, at the bottom of the viewport #1372721Hey Frans,
Try using the full width submenu element and add the custom class sticky-bottom and don’t use the sticky option, then add this css to your child theme stylesheet or the theme option Quick CSS@media only screen and (max-width: 767px) { .sticky-bottom { position: fixed!important; bottom: 0; } }If you want to use icons in the submenu see our documentation here.
Best regards,
MikeHi,
Try following the suggestion in this thread to see if it corrects.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,
Mike -
AuthorPosts

