Forum Replies Created
-
AuthorPosts
-
Hi,
Thanks for your investigation and feedback.
I believe that this is a rare case, as I have checked your page with Firefox again and it seems to be normal
If your satisfied that this is not the Enfold theme, shall we go ahead and close this then?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 under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
Thanks for the login, I see that the “header_meta” container with the extra phone number was showing between 767px & 782px, and was not needed, so please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (min-width: 767px) and (max-width: 782px) { #header_meta { display: none !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 under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeFebruary 5, 2019 at 12:46 am in reply to: Different header logo for different sections of website #1062944Hi,
@alsterb glad to hear, we will leave this open to hear back from you that it’s solved.
@Guenni007 thanks for the suggestion.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 under Enfold sub 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 under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHey kellyCraftMedia,
Thanks for the link, you could use this css:#top.home .av_three_fifth.avia-builder-el-5 p { display: none !important; }but the problem is that there is not a class on the page for not logged in users, so this will hide the section for everyone.
It would be better to add it as a function with the “!is_user_logged_in()” in the functions.php
So give this a try in your functions.php:function hide_message_not_logged_in(){ if( !is_user_logged_in() && (is_page('home') ){ echo '<style> #top.home .av_three_fifth.avia-builder-el-5 p {display: none !important;} </style>'; } } add_action( 'wp_head', 'hide_message_not_logged_in' );If this works, then I would improve it by adding a custom class to the element with the message, right now it’s using the default element class “avia-builder-el-5” but this could change if you edit the page.
Best regards,
MikeHi,
@Jan_FtFA, I just found your thread and was going to tell you about the Yoast issue, but I see that @McBrugg already has. The dev team to working on this issue now. You can try this fix:
Replace the file /enfold/functions-enfold.php with the one in the linked below, please save a copy of the original one as a backup.Best regards,
MikeHi,
I took a look at your blog link, and it looks like the masonry element is showing now, Please see the screenshot in Private Content area. Isn’t this what you are trying for?Best regards,
MikeHi,
Glad to help, I assume we can close this now, but I like to ask first. Shall we close this then?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 under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
Unfortunately that is not a feature of the ALB, but you may be able to build upon this script of another memberBest regards,
MikeHi,
I checked your “opacity: 0.1;” and it’s working for me. It looks like the Optimus plugin optimizes images when you upload them, so you will need to upgrade to Optimus HQ to optimize the images you already have in your media library and then click the Optimus Bulk Optimizer button, to improve your speed test results.

All of your other settings looks good.Best regards,
MikeHey P3T3R_0ne,
Sorry for the late reply, I tested the code above on my localhost and didn’t get double the social icons, so I checked you site and found that this happens only on the one post “Food Sharing” because it has the social icons after the post.
So I was able to fix this by adding “:first” to the social_bookmarks class
Please clear your browser cache and check.Should anyone else have this issue, here is the corrected code:
// add social icons inside the mobile menu function ava_custom_script_mod_social(){ ?> <script> (function($){ var int = ''; function a() { var isMobile = $('.av-burger-menu-main').css('display'), htmlString = $('#header_main .social_bookmarks:first').find('li a'), mobileMenu = $('.av-burger-overlay'), socialString = []; if(isMobile == 'none') return; if($('.burger-social').length) clearInterval(int); htmlString.each(function() { var socialClass = $(this).parent('li').attr('class'), socialItems = $(this).wrap('<li class="'+ socialClass + ' av-active-burger-items burger-social"></div>').parent().unwrap(); socialString.push(socialItems); }); $(socialString).each(function() { $(this).appendTo('#av-burger-menu-ul'); }); } $('#header').on('mousedown', '.av-main-nav-wrap', function() { int = setInterval(function() { a(); }, 500); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script_mod_social');Best regards,
MikeFebruary 3, 2019 at 10:39 pm in reply to: Different header logo for different sections of website #1062416Hi,
To change the logo for a page and all of it’s children, Try adding this code to the end of your functions.php file in Appearance > Editor://change the logo for page and all child pages //first is the function to find all child pages function is_tree($pid) { global $post; $ancestors = get_post_ancestors($post->$pid); $root = count($ancestors) - 1; $parent = $ancestors[$root]; if(is_page() && (is_page($pid) || $post->post_parent == $pid || in_array($pid, $ancestors))) { return true; } else { return false; } }; //second is the function to change the logo, note the "is_tree" add_filter('avf_logo','av_change_logo'); function av_change_logo($logo) { if (is_tree(1406)) { $logo = "https://kriesi.at/themes/enfold-minimal-portfolio/wp-content/uploads/sites/51/2015/07/logo_minimal_portfolio.png"; } return $logo; }adjust to suit.
Best regards,
MikeHi,
That is great news! The issue seems to be with the Yoast plugin and maybe the WPML (site translator) plugin, the dev team is working on it, and I don’t see any other issues, so in your case you can just turn Yoast back on when you go live.
No need for the second answer, as it was Yoast :)
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
I believe that it’s background of #besthit that you mean is too dark on mobile, with the text of: “THE BEST HIT THIS SIDE OF” on the “Our Story page”
if so try this css:@media only screen and (max-width: 767px) { #besthit .av-section-color-overlay { opacity: 0.3 !important; } }right now it’s 0.8, so 0.3 is lighter. Please adjust to suit, then clear your browser cache and check.
**Thanks :)
Best regards,
MikeHey angereichert,
So to have a masonry blog like this one
you will need to use the masonry element, but the trick is to not set the page as the “blog” page for your site, if you do the default blog settings will take over.
You should select no page as your blog page:

and then set your masonry element on the page you want to use as the blog, such as /blog, and be sure your menu points to this page.Best regards,
MikeHi,
I see that you are using the Yoast plugin and I read about a issue the dev team is working on with Yoast and the maintenance page, please try disabling Yoast and see if the maintenance page then works correctly.
I didn’t catch that you are using a multisite, does the maintenance page work on the other sites in the multisite?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 under Enfold sub 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 under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHey DDSameera,
Unfortunately by using the “blank” template you have no header, and no menu, so you can’t have a mobile menu.
To correct please use the “default” template and hide the “footer & socket”, hide the “title bar”, use “no sidebar” and choose a “transparent header”

then to hide the header on desktop screens add this css in the Quick CSS field:@media only screen and (min-width: 768px) { #header { display: none !important; } }and to show the mobile menu on mobile screens, add this css in the Quick CSS field:
@media only screen and (max-width: 767px) { #header_meta, span.logo,#menu-item-search,#menu-item-shop { display: none !important; } }Here’s an example of how it will look:

You may need a little more customizing for your needs, just let us know and we can assist.Best regards,
MikeFebruary 3, 2019 at 6:41 pm in reply to: Different header logo for different sections of website #1062343Hey Alexander,
Please try this solution let us know if you want some help customizing it for your site.Best regards,
MikeHi,
Glad Rikard could help, I assume we can close this now, but I like to ask. Shall we close this then?Best regards,
MikeHey Bregi,
It is actually one image in a slider:
https://x-over.nl/wp-content/uploads/2019/01/slider-landing-1-aangepast-min.jpg
So you can create this image in your favorite image editor, such as photoshop.Best regards,
MikeFebruary 3, 2019 at 6:09 pm in reply to: mobile header transparency messing up other pages header padding #1062318Hey Munford,
To move your page down a little so it won’t be behind your mobile header, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 767px) { main.template-page { margin-top: 80px !important; } }Please adjust to suit, then clear your browser cache and check.
To make your mobile header a little smaller, please try this css:
@media only screen and (max-width: 767px) { .responsive #top #wrap_all #header,.responsive #top #wrap_all #header span.logo img { height: 60px !important; max-height: 60px !important; } .responsive .logo a { vertical-align: top !important; } #header_main { border-bottom-width: 0px !important; } }Please adjust to suit, then clear your browser cache and check.
Best regards,
MikeHi,
Thanks for sharing your solution, we will close this now. Thank you for using Enfold.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 under Enfold sub forum and we will gladly try to help you :)Best regards,
Mike -
AuthorPosts


