Forum Replies Created

Viewing 30 posts - 27,121 through 27,150 (of 67,539 total)
  • Author
    Posts
  • in reply to: Avia Layout Architect don't work on a specific page #1012575

    Hi,

    Script tags are known to create these kind of issues on the builder. Try to create a custom shortcode for the newsletter script instead of adding it directly to the builder.

    // https://codex.wordpress.org/Shortcode_API

    Best regards,
    Ismael

    in reply to: Autoplay Youtube Video in Lightbox #1012381

    Hi,

    Great! You’re welcome! 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: Elements Flicker During Site navigation #1012380

    Hi,

    Thanks for the update. I can’t reproduce the issue any more. I’m not sure what changed but I don’t see the site flicker with the dark background and blue or unstyled menu items like it used to. I also enabled the theme’s file compression, leaving WP Rocket’s settings intact and it’s still the same. Can you still reproduce the issue?

    Best regards,
    Ismael

    in reply to: Reversing the timeline #1012376

    Hi,

    I see. Replace the script with this instead.

    
    add_action('wp_footer', 'ava_custom_reverse_timeline');
    function ava_custom_reverse_timeline(){
    	?>
    	<script type="text/javascript">
    		(function($) {	
                $(document).ready(function() {
                    var i = 0;
                    var clickTimeline = setInterval(function() {
                        if(i == 4) {
                            $(window).trigger('av-stop-click-timeline');
                        }
                        $('.next-slide.av-timeline-nav-next').trigger('click'); 
                        i++;
                    }, 10);
    
                    $(window).on('av-stop-click-timeline', function() {
                        clearInterval(clickTimeline);
                    });
                });
    		})(jQuery);
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    in reply to: Translation Issue in title #1012374

    Hey Flugtraeumer,

    Thank you for using Enfold.

    You can try this code instead.

    add_filter('avf_title_args', 'avf_title_args_mod', 99, 2);
    function avf_title_args_mod($args,$id)
    {
         if ( $args['title'] == 'Kalender mit Ereignissem' ) 
         {
            $args['title'] = 'Veranstaltungskalender';
         }
        return $args;
    }

    Best regards,
    Ismael

    in reply to: Transparant background table #1012373

    Hey Martijn,

    Thank you for using Enfold.

    You can use this css code to make the table transparent. Please note that this will affect all tables across the site, so you may need to enable the custom css class field.

    .main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra, .main_color table, .main_color tr:nth-child(even), .main_color .avia-data-table .avia-heading-row .avia-desc-col, .main_color .avia-data-table .avia-highlight-col, .main_color .pricing-table>li:nth-child(even), body .main_color .pricing-table.avia-desc-col li, #top .main_color .avia-data-table.avia_pricing_minimal th {
        background: transparent;
    }

    // https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#turn-on-custom-css-class-field-for-all-alb-elements

    Best regards,
    Ismael

    in reply to: Blog #1012370

    Hey Dogmut,

    Thank you for using Enfold.

    You need to enable the sidebar if you want your blog to have the same layout as the demo. The blog layout changes when the page is set as full width or without a sidebar.

    Best regards,
    Ismael

    Hey leos,

    Thank you for using Enfold.

    You may need to edit the includes > loop-portfolio-single.php file or the config-templatebuilder > avia-shortcodes > portfolio > portfolio.php file for that.

    Best regards,
    Ismael

    in reply to: Remove content elements from ALB #1012366

    Hey geneticsed,

    Thank you for using Enfold.

    Are you trying to disable a certain element in the builder? You can do that in the Enfold > Performance panel, set the “Disable Template Builder Elements” settings to the 3rd option and then you’ll be able to disable specific elements manually.

    Best regards,
    Ismael

    in reply to: Picture size portfolio gallery #1012365

    Hey woellmi,

    Thank you for using Enfold.

    I think it looks bigger because the maximum container width is set to 1310px. Try to decrease the value in the Enfold > General Layout > Dimensions panel. Set the “Maximum Container width” to 1130px, that is about the same width as the demo.

    Best regards,
    Ismael

    in reply to: blog featured image quality problem #1012363

    Hey Coursemaker,

    Thank you for using Enfold.

    The minimum width of the images for the blog overview page with sidebar should be at least 845px because that’s the default width of the content container. Upload a larger image if sidebar is disabled.

    Best regards,
    Ismael

    in reply to: Longer words in columns are overlapping in mobile devices #1012310

    Hi,

    No, long words won’t overflow outside the container because the “word-wrap” property is set to “break-word”. They will break onto the next line when necessary. You can adjust the “font-size” value in the css code above if you want to change the text size.

    Best regards,
    Ismael

    in reply to: Add arrow beside and border around enfold language switcher #1012307

    Hi,

    Adjust the previous css code a bit.

    #top #avia-menu > .menu-item-language, #top #avia-menu > .menu-item-language > a {
        height: 30px !important;
        line-height: 30px !important;
        border: 1px solid #ffffff;
        padding: 0 3px;
        top: 25px;
    }
    
    #top .header-scrolled #avia-menu > .menu-item-language, #top .header-scrolled #avia-menu > .menu-item-language > a {
        top: 0;
    }

    Best regards,
    Ismael

    in reply to: Full width slider Caption Frame transparent background color #1012303

    Hi,

    Yes, that same code should work with the full screen slider.

    It’s about time this was in the standard settings!

    We just can’t add every little options in the theme. This kind of changes can be done with css or minor template adjustment without adding unnecessary bloat to the theme.

    Best regards,
    Ismael

    in reply to: Change layout of caption background in fullwidth slider #1012297

    Hi,

    The current theme does not support mobile devices.

    The slider works fine on mobile view by default as long as the caption or content are within limit as you can see on the demo. Usually, the button goes off the slider because the captions are too long. I don’t think it’s quite fair to say that theme is not responsive at all just because you can’t make something work the way you expect it to, without making any adjustments.

    Demo: https://kriesi.at/themes/enfold-2017/elements/fullscreen-slider/
    Screenshot: https://imgur.com/a/vtPNqvP

    Best regards,
    Ismael

    in reply to: Blog Header images not rendering correctly on mobile #1012291

    Hi,

    Yes, it seems to be a bug in the blog.css file. We’ll report it to the dev team. Please keep the css modification for now.

    Best regards,
    Ismael

    Hi,

    Have you tried to limit the size of the main image container?

    .single-product-main-image {
        width: 23%;
    }

    Default width value is 33%.

    Best regards,
    Ismael

    in reply to: Space on the left side of text #1012278

    Hi,

    I encounter an internal server error whenever I try to access the “about-eefke/” page. Please contact your hosting provider.

    Best regards,
    Ismael

    in reply to: Problem Clicking/Selecting Mobile Menu Links #1012273

    Hi,

    You need to insert the modification after this block of code.

    //toogle hide/show for submenu items
    		$('.html_av-submenu-display-click').on( 'click', '.av-width-submenu > a', function (e) 
    		{ 
    			var menu = $(this);
    			toggle_submenu( menu, e );
    		});

    You may need to turn off the Performance > File Compression settings if they are enabled.

    Best regards,
    Ismael

    Hi,

    The Media > Library looks empty or the images are not being read properly. Did you move the site to a different host? Please try to deactivate the plugins temporarily.

    Best regards,
    Ismael

    in reply to: Parallax not working for stretch to fit #1012255

    Hi,

    I can’t reproduce the issue on Chrome, Windows 8. Anyway, try to adjust the size of the parallax container.

    add_filter('avf_parallax_speed','avia_change_parallax_ratio', 10, 2);
    function avia_change_parallax_ratio($ratio, $id){
        $ratio = "0.8";
        return $ratio;
    }

    Default ratio value is “0.3”.

    Best regards,
    Ismael

    in reply to: Elements Flicker During Site navigation #1012251

    Hi,

    Did you exclude them from minification? Please provide the login details in the private field so that we can check the settings.

    Best regards,
    Ismael

    in reply to: Text in slider (and the rest of the page) doesn't center #1012249

    Hi,

    Provide the login details in the private field so that we can check test the site.

    Best regards,
    Ismael

    in reply to: Display font size on mobile #1012247

    Hi,

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    Hi,

    How did you make the loop work? I thought that by setting the image overlay to fade, the video will display on mobile view. Did you set a loop or middle transition?

    Best regards,
    Ismael

    in reply to: Pictures are blurry when viewing website on mobile devices #1012245

    Hi,

    Yes, it’s possible. You have to turn on the custom css class field first and then apply a custom css class attribute to that particular image element or picture.

    Best regards,
    Ismael

    in reply to: Layer Slider : video doesn't work on mobile device #1012241

    Hi,

    The site looks different when I checked it on mobile. Did you set a redirect?

    Best regards,
    Ismael

    in reply to: Show list of posts in same category in single post sidebar #1012231

    Hi,

    1.) Yes, it should be added in the child theme’s functions.php file.

    2.) There is a workaround but you have to modify the template-builder.php file.

    // https://kriesi.at/support/topic/blog-posts-related-posts/#post-447533

    3.) That feature is not available by default, unfortunately. Try to look for a third party plugin.

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: There is an issue related to CSS #1012175

    Hi,

    Great! 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: There is an issue related to CSS #1012173

    Hi,

    Great! 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

Viewing 30 posts - 27,121 through 27,150 (of 67,539 total)