Forum Replies Created

Viewing 30 posts - 22,261 through 22,290 (of 34,223 total)
  • Author
    Posts
  • in reply to: Footer diffrerent height than supposed to be #1062957

    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,
    Mike

    in reply to: Turn off shortcodes on bottom of pages #1062953

    Hi,
    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

    in reply to: Phone Number Showing Up Twice #1062952

    Hi,
    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,
    Mike

    in reply to: Wordcloud #1062950

    Hi,
    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

    in reply to: How to add custom icons to a button? #1062949

    Hi,
    Thanks, I was able to import the icon file and use the icons, even in a button:
    2019-02-04-175900
    2019-02-04-180212
    Please include a admin login in the private content area so we can see why it’s not working on your site.

    Best regards,
    Mike

    in reply to: Different header logo for different sections of website #1062944

    Hi,

    @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,
    Mike

    in reply to: Masonry blog layout does not display #1062940

    Hi,
    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

    in reply to: Social Media Icons in Mobile Menu #1062938

    Hi,
    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

    in reply to: Hide product warning #1062704

    Hey 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,
    Mike

    in reply to: Maintenance Page not loading #1062682

    Hi,

    @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,
    Mike

    in reply to: Masonry blog layout does not display #1062678

    Hi,
    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,
    Mike

    in reply to: Color change of all bolds in text block only #1062673

    Hi,
    Glad to help, I assume we can close this now, but I like to ask first. Shall we close this then?

    Best regards,
    Mike

    in reply to: Maintenance Page is not loading #1062671

    Hi,
    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

    in reply to: Enfold 4.4.1 & Gutenberg #1062670

    Hi,
    Unfortunately that is not a feature of the ALB, but you may be able to build upon this script of another member

    Best regards,
    Mike

    in reply to: Change background-image for mobile #1062421

    Hi,
    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.
    2019-02-03-163434
    All of your other settings looks good.

    Best regards,
    Mike

    in reply to: Social Media Icons in Mobile Menu #1062418

    Hey 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,
    Mike

    in reply to: Different header logo for different sections of website #1062416

    Hi,
    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,
    Mike

    in reply to: Maintenance Page is not loading #1062415

    Hi,
    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,
    Mike

    in reply to: Change background-image for mobile #1062413

    Hi,
    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,
    Mike

    in reply to: Masonry blog layout does not display #1062396

    Hey 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:
    2019-02-03-134501
    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,
    Mike

    in reply to: Maintenance Page is not loading #1062391

    Hi,
    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,
    Mike

    in reply to: Date of creation article #1062383

    Hi,
    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

    in reply to: how do you do that #1062381

    Hi,
    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

    in reply to: Enfold Hamburger Menu Disappeared #1062380

    Hey 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”
    2019-02-03-115916
    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:
    2019-02-03-130123
    You may need a little more customizing for your needs, just let us know and we can assist.

    Best regards,
    Mike

    in reply to: Different header logo for different sections of website #1062343

    Hey Alexander,
    Please try this solution let us know if you want some help customizing it for your site.

    Best regards,
    Mike

    in reply to: Token activation error #1062324

    Hi,
    Glad Rikard could help, I assume we can close this now, but I like to ask. Shall we close this then?

    Best regards,
    Mike

    in reply to: how do you do that #1062321

    Hey 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,
    Mike

    Hey 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,
    Mike

    in reply to: CSS help #1062309

    Hi,
    Thanks for sharing your solution, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Buttons alignment in columns to the bottom #1062306

    Hi,
    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

Viewing 30 posts - 22,261 through 22,290 (of 34,223 total)