Forum Replies Created

Viewing 30 posts - 23,251 through 23,280 (of 35,204 total)
  • Author
    Posts
  • 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

    in reply to: Rotate image with text #1062303

    Hey juanraubeda,
    Please try our Icon Grid element to create a flipbox, to replace the icon with a image add your image in a html image tag in the title box, like this:

    <img src="https://127.0.0.1/2017demo1/wp-content/uploads/2015/07/portfolio-2.jpg">

    you can get the url to your image in the media library.
    2019-02-03-103651
    then to hide the icon, add this css to your Quick CSS:

    #top .avia-icon-grid-container .avia-icongrid-icon {
    display: none !important;
    }

    you may want to add the page number or section ID to the css so it won’t effect other pages and elements on your site.
    This is the result:
    2019-02-03-104054

    Best regards,
    Mike

    in reply to: flashing menu and logo when page loads #1062293

    Hi,
    Thanks for letting us know, we will leave this open until you let us know it’s resolved.

    Best regards,
    Mike

    in reply to: please help – lost credentials #1062291

    Hey Allen Ulbricht,
    Thank you for contacting us at Enfold support, we are the theme support channel and the developers of Enfold. I have searched the support members for your organization, but didn’t find a user for your organization, I searched with and without wildcards:
    *ssdcitc*
    *easterswing*
    *ssdc*
    Unfortunately when a license is bought the user signs up for support voluntary, so not everyone does. Envato (Theme Forest) handles all of the sales and licensing and we don’t have access to their database, and we can’t create licenses or users for Envato.
    Please try reading this page to reset your Envato password, perhaps the previous user used a organization email address and you will get the reset email, or they will see the request and realize you need help and contact you. There is also a button on the page to ask for help from Envato, but I believe they are very strict with their accounts. Perhaps they will allow you to “renew” your license for a lower cost.
    The version you have will not update automatically because Envato changed from a API to a “Token” system for checking the license to update, so you will need to download the latest version (4.5.3) and update via FTP, (don’t overwrite the theme folder, delete it via FTP and upload the new one)

    But to integrate woocommerce please see our documentation this is the page that explains the most about woocommerce Our theme is well documented, and it’s well crawled by Google, so you can find a specific solution by Googling your question with the word “Enfold”
    and look for the results that are from “kriesi.at/support/”
    I hope this helps, and I wish I could offer support directly, but you would need to be a member of our support forum, I hope you understand.

    If the documentation doesn’t help and Envato won’t give you access to the account, I recommend purchasing a new license because it comes with 6 months of support which can be upgraded to a full year for $17 plus you will get free updates for life, a great bargain when you consider the hourly cost of support.

    Best regards,
    Mike

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

    Hey juanraubeda,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top .avia_textblock strong {
    color: red !important;
    }

    adjust the color to suit.
    Let us know if you want to add more rules, such as only text blocks on pages or posts.

    Best regards,
    Mike

    in reply to: Large white space after logo menu hamburger on mobile #1062260

    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: portfolio previous next #1062259

    Hi,
    Sorry, I understand now :)
    The next and prev buttons are a built-in function and should link your portfolio items. I searched your site and it seems that you only have one portfolio item, the page you linked to, so there is not anything for the buttons to show. Try creating another portfolio item and see if the buttons show then.
    If I’m wrong and you have more portfolio items, Please include a admin login in the Private Content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Date of creation article #1062252

    Hi,
    That is a good place to put your css modifications, glad to hear it is working for you.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    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

    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 - 23,251 through 23,280 (of 35,204 total)