Forum Replies Created

Viewing 30 posts - 29,941 through 29,970 (of 67,591 total)
  • Author
    Posts
  • in reply to: Cookies Enfold + European law #955235

    Hi,

    i’d like to know the list of all cookies used by Enfold Theme.

    The theme only sets cookies when the cookie consent is enabled and the ALB’s notification elements with a Close Button is added to the page.

    Best regards,
    Ismael

    in reply to: Problems with java script loading #955229

    Hi,

    Thank you for the update. We checked the site on gtmetrix and we found out the images are not optimized. In fact, the site score for that particular criteria is zero. Please install an image compression plugin. You’ll find good options inside the theme’s Performance Panel. In the same panel, you should also see the js and css compression options. Enable those and then re-test the site on gtmetrix.

    Here’s the current score: https://gtmetrix.com/reports/www.idtraveller.com/KyDwCykM

    Best regards,
    Ismael

    in reply to: Two different blog stylings for single blog posts? #955220

    Hi,

    Yes, that’s what’s going to happen. You can also create a separate post, generate the recipe there and then paste it on the text or code block of the actual post or page.

    Best regards,
    Ismael

    in reply to: Woocommerce product categories are empty after update #955216

    Hi,

    I still can’t figure out the issue. What I did noticed is the Enfold duplicates in the themes folder. Please delete those or more them somewhere else and leave the latest version.

    Best regards,
    Ismael

    in reply to: Enfold 4.3 – loading time increased [Google says] #955192

    Hi,

    Thanks for the update. I think it happens because the theme or WP returns the thumbnails with the highest quality. Please try this filter in the functions.php file.

    add_action('after_setup_theme', function() {
        function av_return_75(){ return 75; }
        add_filter('jpeg_quality', 'av_return_75');
        add_filter('wp_editor_set_quality', 'av_return_75');
    });
    

    It will override the theme’s “av_return_100” function.

    if( ! function_exists( 'av_return_100' ) )
    {
    	/**
    	* Sets the default image to 100% quality for more beautiful images when used in conjunction with img optimization plugins
    	*
    	* @since 4.3
    	* @added_by Kriesi
    	*/
    	function av_return_100(){ return 100; }
    	add_filter('jpeg_quality', 'av_return_100');
    	add_filter('wp_editor_set_quality', 'av_return_100');
    }
    

    IMPORTANT: You have to regenerate the thumbnails.

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    You should not include the whole iframe or embed tag. Just add the vimeo video url and it will automatically be detected by the lightbox script. Let us know if you need further help.

    Best regards,
    Ismael

    in reply to: Load only used elements malforms website (part 2) #955183

    Hi,

    The icon boxes are visible on a test page (see private field) even when I enable template builder settings so it’s probably not working because it can’t detect the old elements in the home page. Please set the builder to debug mode then run the shortcode parser. You’ll find it at the bottom of the advance layout builder.

    // https://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    I tried to add the debug mode snippet but I ran onto an error in the Appearance > Editor panel.

    Best regards,
    Ismael

    Hi,

    Thanks for the update. I think you forgot the FTP username. Please add it in the private field. We’ll implement the modifications for you.

    Best regards,
    Ismael

    in reply to: Untermenue lässt sich nicht stylen #955175

    Hi,

    This css code should work for the mega menu items.

    #top #header .avia_mega_div > .sub-menu > li > ul > li a {
        width: auto;
        float: none;
        display: block;
        border: none;
        padding: 3px 12px 3px 12px;
        font-weight: normal;
        font-size: 20px !important;
        height: auto;
        line-height: 23px;
    }

    Adjust the values as needed.

    Best regards,
    Ismael

    Hi!

    Another user found a temporary workaround. You can find it here.

    // https://kriesi.at/support/topic/woocommerce-lightbox-not-showing-up-on-products-with-single-one-image/

    Regards,
    Ismael

    Hi,

    Thanks for the update. I’m glad that you found the issue. We’ll let the development team know. For now, please keep the modifications.

    Best regards,
    Ismael

    in reply to: Accordion Slider showing imagens only on mobile #955169

    Hi,

    The dashboard doesn’t look right. The toolbars or panels are located at the top. Did you change that? Is it OK if we deactivate the plugins while we inspect the issue?

    Best regards,
    Ismael

    Hi,

    Alright. We’ll close this one now. Please feel free to open a new thread if you need anything else. :)

    Best regards,
    Ismael

    in reply to: Enfold 4.3 – loading background image fails #955165

    Hi,

    It will affect the size of the page but the speed will still depend on a lot of other factors like content, images, hosts, hardware etc. The compression is a small part of it.

    Best regards,
    Ismael

    in reply to: Need form id for Event Tracking #955164

    Hi!

    Thanks for the update. I can’t get the preview button to display. I checked the site with the Tag Assistant chrome extension and it didn’t find any tags in the page even though the google tag manager snippet is there. Please provide the WP login details. We’ll disable the css and js compression and then try the preview again.

    Best regards,
    Ismael

    in reply to: Google Maps API issue #955144

    Hey hobart,

    Thank you for using Enfold.

    The error says “NoApiKeys”. Please try to re-create the project and then regenerate a new API key. And upgrade the theme to version 4.3.1 while you’re at it.

    Best regards,
    Ismael

    in reply to: Logo in the header area will not center #955141

    Hi,

    Thank you the update. The code above should not affect the header. Did you update the theme manually? I’m still not sure where those extra tags came from. Please try to deactivate the plugins temporarily.

    Best regards,
    Ismael

    Hi,

    Glad it’s solved. Let us know if you need anything else. :)

    Best regards,
    Ismael

    in reply to: Advanced Layout Editor – not working #955133

    Hey Lara,

    Thank you for using Enfold.

    We would like to set the builder to debug mode but we couldn’t edit the functions.php file in the Appearance > Editor panel. There’s a php error and the memory limit needs to be increased. Please increase the memory limit to at least 256M then set the builder to debug mode so that we can inspect the shortcodes.

    // https://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    Best regards,
    Ismael

    Hi,

    The version before the upgrade is 3.6.1 so expect a few issues after the update. We updated the footer.php file in the child theme and disabled a few old scripts in the functions.php file. It removes the errors in the console but I’m not sure if the site is back to normal completely. Please try re-configure the theme options because a lot has changed since version 3.6.1.

    Please update the theme regularly.

    Best regards,
    Ismael

    in reply to: Two different blog stylings for single blog posts? #954690

    Hi,

    I’m sorry. I’m not that familiar with the plugin. I thought that you can edit the recipe on its own page. If you want to insert a recipe in the ALB, just use a text or a code block. You have to generate the recipe shortcode from a separate post or page. (see private field)

    Best regards,
    Ismael

    in reply to: Add to cart is not displayed in 4.3 #954682

    Hi,

    Glad it worked. We will look for an alternative solution in the next patch. Please use the solution for now.

    Best regards,
    Ismael

    in reply to: Portfolio Grid with Ajax Preview very slow #954676

    Hey bluscht,

    Thank you for using Enfold.

    Yes, that’s correct. That’s why the option title is called “Open a preview of the entry (known as AJAX Portfolio)”, emphasizing the
    “known as AJAX Portfolio”, because it feels like an AJAX gallery not an actual AJAX gallery. That is definitely possible but it will require modifications that we won’t be able to provide here. Please hire a freelance developer or contact our partner, Codeable.

    // https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: Upgrade 4.3 – Google Map not working #954665

    Hi,

    Edit the series engine’s js > seriesenginefrontend.js file. Look for this code around line 1124.

    jQuery('#seriesengine audio').mediaelementplayer({stretching: 'responsive'});
    

    Replace it with this code.

    if(!jQuery('.page-id-35811').length) jQuery('#seriesengine audio').mediaelementplayer({stretching: 'responsive'});
    

    Remove browser cache prior to checking the page.

    Best regards,
    Ismael

    in reply to: Demo Import not working #954653

    Hi!

    I’m getting the same error as @rikard. Please ask your hosting provider for the error logs. Or post the FTP details in the private field. We’ll try to import the demo manually.

    Regards,
    Ismael

    in reply to: WooCommerce shortcode removes sidebar #954645

    Hi,

    Thank you for the info. I can’t modify the functions.php file via the Appearance > Editor panel. Please add this code.

    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    	?>
    	<script type="text/javascript">
    		(function($) {	
    		    $(document).ready(function() {
        			$('.woocommerce-products-header .page-description').prependTo('.template-shop .entry-content-wrapper');
    		    });
    		})(jQuery);
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    in reply to: Sequence order masonry portfolio grid. #954635

    Hi,

    We managed to fixed it with the following filter but that query is quite specific for the category “Klaviere Blüthner”. You may need to duplicate the filter for the rest of the portfolio categories.

    function avf_previous_post_where() {
    	global $post, $wpdb;
    	return $wpdb->prepare( "WHERE p.post_date < %s AND p.post_type = %s AND tt.term_id IN ('37') AND p.post_status = 'publish'", $post->post_date, $post->post_type);
    }
    add_filter( 'get_previous_post_where', 'avf_previous_post_where' );
    
    function avf_next_post_where() {
    	global $post, $wpdb;
    	return $wpdb->prepare( "WHERE p.post_date > %s AND p.post_type = %s AND tt.term_id IN ('37') AND p.post_status = 'publish'", $post->post_date, $post->post_type);
    }
    add_filter( 'get_next_post_where', 'avf_next_post_where' );
    
    function avf_previous_post_sort() {
    	return "ORDER BY p.post_date desc LIMIT 1";
    }
    add_filter( 'get_previous_post_sort', 'avf_previous_post_sort' );
    
    function avf_next_post_sort() {
    	return "ORDER BY p.post_date asc LIMIT 1";
    }
    add_filter( 'get_next_post_sort', 'avf_next_post_sort' );

    Best regards,
    Ismael

    in reply to: 4.3.1 – Automatically Adding Unwanted Padding #954622

    Hi,

    Is this the same issue as the following thread?

    // https://kriesi.at/support/topic/header-consistency/#post-954621

    Best regards,
    Ismael

    in reply to: Header Consistency #954621

    Hi!

    That is the default behavior because transparency is disabled on mobile devices. If you want to display the transparent logo, add this css code inside the css media query.

    .responsive #top .av_header_transparency.av_alternate_logo_active .logo a > img {
        opacity: 0;
    }
    
    .responsive #top .av_header_transparency .logo img.alternate {
        display: block;
    }

    Best regards,
    Ismael

    in reply to: change menu colors #954616

    Hi,

    Thank you for the info. You should enable the option when you’re done with the site. That is when optimizations like minification and cache should be enabled.

    Best regards,
    Ismael

Viewing 30 posts - 29,941 through 29,970 (of 67,591 total)