Forum Replies Created

Viewing 30 posts - 28,351 through 28,380 (of 67,566 total)
  • Author
    Posts
  • in reply to: mobile navigation #987419

    Hey SvHa,

    Thank you for using Enfold.

    Try to adjust the scroll offset value on mobile view.

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    function avf_header_setting_filter_mod($header) {
            if( wp_is_mobile() ) {
    	    $header['header_scroll_offset'] = $header['header_scroll_offset'] + 48;
            }
    	return $header;
    }

    Adjust the value “48” as needed.

    Best regards,
    Ismael

    in reply to: Editor Elements disappear after saving !!! #987414

    Hey ideenstart,

    Thank you for using Enfold.

    Did you copy the content of the additional doctor from another source? Please check if there are any comparison (< or >) symbols in the doctor’s description text. Those symbols can break the content of the builder.

    Is it the same when you add the “doctor” below the current team member elements?

    Best regards,
    Ismael

    in reply to: Google Maps Develpoment purposes #987410

    Hi,

    I’m sorry for the confusion.

    Basilis probably thought that the actual issue was fixed so he closed it. Sorry about that. Anyway, the map element is displaying properly when I checked the site today. Is that fixed? The map API key is also authenticated.

    Best regards,
    Ismael

    Hey Craig,

    Thank you for using Enfold.

    Are you using the theme’s social share section? The twitter button will only use the title and the shortlink (wp_get_shortlink). It won’t be able to detect Yoast’s twitter card options. You’ll find this pattern in the includes > helper-social-media.php file.

    'twitter' 	=> array("encode"=>true, "encode_urls"=>false, "pattern" => "https://twitter.com/share?text=[title]&url=[shortlink]"),
    

    Best regards,
    Ismael

    in reply to: Use Parent and Child theme together in a multisite #987407

    Hey Gitte,

    Thank you for using Enfold.

    Yes, both sites are supposed to load the custom.css file. Did you enable the css/js compression in the Performance panel? Please disable it temporarily. If it’s not working, try to move the css codes into the Quick CSS field.

    Best regards,
    Ismael

    Hey Siracher,

    Thank you for using Enfold.

    The plugin opens another frame directly inside the code block container instead of the #main container or outside the main wrapper. I’m not sure why it’s doing that. Unfortunately, we don’t provide support for third party plugins as stated on our support policy. Please contact the plugin author for more info.

    Best regards,
    Ismael

    in reply to: Responsive font size, logo and menu items. #987402

    Hey Elisabethkaasa,

    Thank you for using Enfold.

    In the Enfold > Main Menu > General panel, set the “Menu Items for mobile” to the second option to fix the overlap issue. Other than that issue, the site looks responsive.

    Best regards,
    Ismael

    in reply to: Enfold: This page can't load Google Maps correctly. #987396

    Hi,

    Thanks for the update.

    Could you please provide a screenshot of the http referrers field? Remove the rest of the http referrers and try the suggested referrer format above. This is the error that we get when we try to authenticate the key in the EN version.

    Google Maps API error: RefererNotAllowedMapError https://developers.google.com/maps/documentation/javascript/error-messages#referer-not-allowed-map-error
    Your site URL to be authorized: https://www.breeze-technologies.de/wp-admin/admin.php?page=avia&lang=en
    

    Best regards,
    Ismael

    in reply to: Margin/Padding for Page and Post Content? #987388

    Hey Moondreamer21,

    Thank you for using Enfold.

    Where can we see the issue? Please provide a link to the actual page. A screenshot will help.

    For the meantime, you can try this css code.

    #main .container { 
      max-width: 1030px;
    }

    Best regards,
    Ismael

    in reply to: Alter order of cells in Grid Row on mobile #987386

    Hey sdturnbull,

    Thank you for using Enfold.

    The flexbox property might help.

    // https://css-tricks.com/snippets/css/a-guide-to-flexbox/

    Set the “order” property of the cells manually.

    Best regards,
    Ismael

    in reply to: Advanced Layout Editor for Blog Post Page? #987385

    Hey Moondreamer21,

    Thank you for using Enfold.

    The Blog Layout is set to “Single author, small preview” when I checked and there’s an error when I edited the blog page.

    avia-builder.js?ver=0.9.5:985 Uncaught TypeError: Cannot read property 'replace' of undefined
        at $.AviaBuilder.convertTextToInterface (avia-builder.js?ver=0.9.5:985)
        at avia-builder.js?ver=0.9.5:642
    

    Please try to deactivate the plugins temporarily.

    Best regards,
    Ismael

    Hi,

    I’m very sorry for the confusion. You can use the following plugin to translate those texts.

    // https://wordpress.org/plugins/loco-translate/

    If you want to change it manually, edit the includes > related-posts.php file and the includes > helper-social-media.php file.

    Best regards,
    Ismael

    in reply to: Additional Header bar #987376

    Hi,

    Thanks for the update.

    Looks like you managed to add the “extra-header-bar” section below the header. Is that all you wanted?

    Best regards,
    Ismael

    Hi,

    There are only two items in the main menu and I can’t see the menu falling of the page. Can you please provide screenshot? Use imgur or dropbox.

    Best regards,
    Ismael

    in reply to: Main menu header adjustment #987373

    Hi,

    You should change the second value.

    #header #header_main_alternate .container {
        padding: 0 100px;
    }

    First value is zero, second is 100px. Adjust the second value.

    Best regards,
    Ismael

    Hi,

    Awesome! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: Google Maps and 4.4.1 #987368

    Hi,

    The “Check API Key” worked after the “Geocoding Services API” was enabled. Please remove all https referrers and use the ones above. You may need to wait for a few minutes before the changes take effect.

    Best regards,
    Ismael

    in reply to: Expanding Content Hidden in Tab Views #987367

    Hey!

    Thanks for the update.

    We used this script in the functions.php file to trigger the “set_slide_height” function on page load.

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	var int = window.setInterval(function(){
    		$(window).trigger('resize');
    		$(window).trigger('av-content-el-height-changed');
    	}, 2000);
    	
    	$(window).load(function () {
    		setTimeout(function() {
    			clearInterval(int);
    		}, 2000);
    	});
    })(jQuery);
    </script>
    <?php
    }

    Cheers!
    Ismael

    in reply to: Translation – Child Theme #987362

    Hi,

    Awesome! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    Hi,

    Alright. Let us know if it worked.

    Have a nice day! :)

    Best regards,
    Ismael

    Hi,

    Are you sure that you’ve added the code properly? It should not affect the header or the text because we just set the “border-color” property of the containers with the main_color class attribute to “#969196”. It should not set the main menu text to “purple” or the product pricing to “green”. It will also not affect the rest of the pages other than the checkout and cart pages.

    Best regards,
    Ismael

    Hi,

    b.) You should remove this css code because it doesn’t seem to help in making the image sharper.

    #top div .avia-gallery .avia-gallery-big {
        padding: 0; 
    }

    It will re-align the main image and the gallery thumbnails.

    What file size would you recommend to get a sharp but still fast-loading image?

    c.) You should consider the standard screen resolutions when deciding what image size to use.

    // https://www.w3schools.com/browsers/browsers_display.asp

    Best regards,
    Ismael

    Hi,

    Did you set the background size to “stretch to fit”? Set it to “scale to fit”. I would like to check it again but the page is no longer available.

    Best regards,
    Ismael

    in reply to: Hide Postslider if no entries available does not work #987353

    Hi,

    In my understanding $excerpt should be empty if there are no blogposts.

    The $excerpt is going to be empty when the posts has no content or excerpt and when the layout is set to display only the title. It is also empty when the advance layout builder is used because all shortcodes will be stripped from the $post->post_content. Add an excerpt manually if you’re using the advance layout builder.

    line 466

    
    $prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , $excerpt_length) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true, '');
    

    line 494

    case "title":
    		$excerpt = '';
    		$title = $entry->post_title;
    		break;
    

    Best regards,
    Ismael

    in reply to: Visualization of the articles, portfolio and gallery #987351

    Hi,

    Did you add a single masonry element for each image? You can use one masonry element for all those images.

    Best regards,
    Ismael

    in reply to: Main menu header adjustment #987349

    Hi,

    Did you adjust the second value of the padding property? First value (0) is the top and bottom paddings and the second value (100px) is the right and left paddings. You should adjust the second value and leave the first value as it is.

    Best regards,
    Ismael

    in reply to: LayerSlider problem with RTL in Enfold 4.4.1 #987347

    Hi,

    I see. I didn’t notice that. The layout becomes “rtl” once I’ve added your css code — with slight modification. We’ll forward it to the team.

    .rtl .ls-layers * {
    	direction: rtl;
    }

    Best regards,
    Ismael

    in reply to: Display post category in advanced layout editor #987343

    Hi,

    Glad it worked. Use this css code to align them horizontally.

    p.cat { display: inline-block; }
    

    Please provide the link to the actual post with the categories if the css code didn’t work.

    Best regards,
    Ismael

    in reply to: a better image resize algorithm ? #987342

    Hi,

    Yes, it’s a bit expensive. The plugin author provided a promo or discount code for Enfold users but I’m not sure if it’s going to be included in the Performance panel. (see private field)

    Best regards,
    Ismael

    in reply to: Can the horizontal gallery autoslide the images? #986834

    Hey Malene,

    Thank you for using Enfold.

    You can use this script in the functions.php file to set an autorotation to the horizontal gallery element. Set the interval in ms. Default is 2 seconds.

    function ava_horizontal_gallery_interval() {
    	?>
    	<script>
    		(function($) {
    			// set the autorotation duration in ms
    			var interval = 2000;
    
    			$('.av-horizontal-gallery').each(function() {
    				var i = 0;
    				var b = 0;
    				var slider = $(this).find('.av-horizontal-gallery-slider');
    				var item = slider.find('.av-horizontal-gallery-wrap');
    				var next = $(this).find('.next-slide');
    				var prev = $(this).find('.prev-slide');
    				var count = item.length;
    				
    				var nextSlide = () => {
    						setInterval( $.proxy(function() {	
    						next.trigger('click');
    						i++;
    						if(i == count && item.last().is('.av-active-gal-item')) {
    							clearInterval(nextSlide);
    							$(this).trigger('av-reset-item');
    							i = 0;
    						}
    					}, this), interval);
    				}
    
    				nextSlide();
    				
    				$(this).on('av-reset-item', function() {
    					setTimeout( function() {
    						var resetSlide = setInterval( $.proxy(function() {	
    							prev.trigger('click');	
    							if(count == b && item.first().is('.av-active-gal-item')) {
    								clearInterval(resetSlide);
    								b = 0;
    								$(this).trigger('av-next-item');
    							}
    							b++;
    						}, this), 10);
    					}, interval);
    				});
    
    				$(this).on('av-next-item', function() {	
    					nextSlide();
    				});
    			});
    		})(jQuery);
    	</script>
    	<?php
    }
    add_action( 'wp_footer', 'ava_horizontal_gallery_interval', 9999 );

    Best regards,
    Ismael

Viewing 30 posts - 28,351 through 28,380 (of 67,566 total)