Forum Replies Created

Viewing 30 posts - 26,971 through 27,000 (of 67,534 total)
  • Author
    Posts
  • in reply to: Layer Slider : video doesn't work on mobile device #1015053

    Hi,

    I didn’t disable the maintenance mode.

    Best regards,
    Ismael

    Hi,

    The selector:

    li .avia-pricing-row
    

    should be replaced with:

    li.avia-pricing-row
    

    Best regards,
    Ismael

    in reply to: Blog Posts Content Element not showing posts #1015051

    Hi,

    I get a 502 Bad Gateway error after logging in. Did you move the site? Please contact your hosting provider.

    Best regards,
    Ismael

    Hi,

    The settings are correct. However, one of the posts is using the advance layout builder instead of the default editor. I switched it to the default editor and then added this hook in the functions.php file to have the blog display the excerpt and the read more button.

    function ava_blog_read_more() {
        global $avia_config;
        $avia_config['blog_content'] = "excerpt_read_more"; 
    }
    add_action('get_header', 'ava_blog_read_more');

    Best regards,
    Ismael

    in reply to: Product Grid have odd line-breaks! #1015048

    Hi,

    The site is running on an old version of the theme, 4.0.7. You have to upgrade to version 4.4.1.

    Best regards,
    Ismael

    in reply to: Close popop/modal using back button without changing url #1015047

    Hi,

    The same script works on my end. Where are you testing this?

    Best regards,
    Ismael

    in reply to: Close popop/modal using back button without changing url #1014670

    Hi,

    Thank you for using Enfold.

    You can try this script instead.

    add_action('wp_footer', 'ava_custom_disable_back');
    function ava_custom_disable_back(){
    	?>
    	<script type="text/javascript">
    		(function($) {
                $(document).ready(function() {
                    function zoomEnabled() {
                        var $zoom = $('body').is('.mfp-zoom-out-cur');
                        backDisable($zoom);
                    }
    
                    function backDisable($zoom) {
                        if($zoom) {
                            window.history.pushState(null, "", window.location.href);        
                            window.onpopstate = function() {
                                window.history.pushState(null, "", window.location.href);
                                $('.mfp-close').trigger('click');
                            };
                        }  
                    }
    
                    $(document).on('click', '.lightbox-added', function() {
                        zoomEnabled();
                    });
                });
            })(jQuery);
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    in reply to: Theme update problem #1014663

    Hi,

    Did you update the theme manually via FTP? Please remove the whole “framework” folder and then replace it with the latest version.

    Best regards,
    Ismael

    Hi,

    Great! Glad that you found a solution. Please feel free to open a new thread if you need anything else. :)

    P.S: I’ve already removed the screenshot.

    Best regards,
    Ismael

    in reply to: Sticky Navigation styling on scroll #1014659

    Hi,

    Thanks for the update.

    We adjusted the header layout a bit with these css codes.

    @media only screen and (max-width: 989px) {
    .responsive #top .av_header_transparency.av_alternate_logo_active .logo a > img {
        opacity: 1;
        padding: 5px;
    }
    
    .responsive .logo img {
        height: auto !important;
        width: auto;
        max-width: 100%;
        display: block;
        max-height: 80px;
        transform: none;
        left: 0;
    }
    
    #top .av_header_transparency .phone-info, #top .av_header_transparency .social_bookmarks li a {
        color: #000000;
    }
    
    .header_color div .av-hamburger-inner, .header_color div .av-hamburger-inner::before, .header_color div .av-hamburger-inner::after {
        background-color: #231f20;
    }
    
    .responsive #top .av_header_transparency .logo img.alternate {
        display: none;
    }
    
    .responsive #top .logo {
        position: static;
        display: table;
        height: 80px !important;
        float: none;
        padding: 0;
        border: none;
        width: 80%;
    }
    
    .responsive #top #wrap_all .container {
        width: 85%;
        max-width: 85%;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
        float: none;
    }
    }

    Best regards,
    Ismael

    in reply to: Transparent Header only in home page #1014641

    Hi,

    Yes, that is one way to change it but you can combine all of those css declarations into a single style rule.

    .page-id-3581 #header_main, .page-id-3574 #header_main, .page-id-3731 #header_main, .page-id-3745 #header_main, .page-id-1167 #header_main { background-color: #1F3446 !important; }
    

    You can also try this:

    #top:not(.home) #header_main { background-color: #1F3446 !important; }
    

    Best regards,
    Ismael

    in reply to: Probleme mit dem BoxLayout #1014638

    Hi,

    The theme’s compression settings are enabled. We disabled it from the Enfold > Performance panel temporarily. You should see the changes immediately now.

    Best regards,
    Ismael

    in reply to: Error #1014637

    Hi,

    Thanks for the update.

    We removed the custom icon from the Enfold > Import/Export > Iconfont Manager section. Those warnings should be gone by now.

    Best regards,
    Ismael

    in reply to: Blog posts image on the right and text on the left #1014636

    Hey mofix,

    Thank you for using Enfold.

    Use this css code to adjust the images’ position.

    #top .fullsize .template-blog .blog-meta {
    left: 100px;
    }

    Best regards,
    Ismael

    in reply to: Site stuck in maintenance mode #1014634

    Hi,

    Thanks for the update. The “Frontpage Settings” was set to “Site to be launched soon” page instead of the actual home page. We adjusted that.

    Best regards,
    Ismael

    in reply to: Links doesn't open in new Tab #1014629

    Hi,

    Thanks for the info. We modified the config-templatebuilder > aviashortcodes > timeline.php file. It should work properly now.

    Best regards,
    Ismael

    in reply to: Menu description under title #1014623

    Hi,

    You can start a new thread here: https://kriesi.at/support/forum/enfold/#new-post

    Regarding the original question, you can add a description to the menu items and then use the following css codes to toggle the visibility of the subtext container.

    .avia-menu-subtext, #top .sub-menu .avia-menu-subtext {
        position: absolute;
        top: 0;
        font-size: 9px;
        display: block;
        left: 0;
    }

    It is hidden by default.

    Best regards,
    Ismael

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

    Hey!

    Sorry if I am not able to help you this time. I’m not sure why the video is not playing so I provided a workaround. If you’re not OK with that, please hire a freelance contractor or contact our partner, Codeable.

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

    Feel free to open a new thread if you need anything else.

    Best regards,
    Ismael

    in reply to: Known issues with multiple Easy Sliders on the same page? #1014561

    Hi,

    I can reproduce the issue but I can’t see any errors in the page. Please upgrade the theme from version 4.3 to version 4.4.1. Let us know if that helps.

    Best regards,
    Ismael

    in reply to: Burger Menu No Scroll #1014560

    Hi,

    Where are you testing it? I can’t see the extra scroll bar on a mobile emulation.

    // https://imgur.com/a/hcPWqQa

    Best regards,
    Ismael

    Hey Marc,

    Thank you for using Enfold.

    There’s a line break between the title and the content. Try to add this code on the Quick CSS field.

    #footer-page br {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Not Able to Type or Enter Text in Search When in IE 11 #1014547

    Hey NicomIT,

    Thank you for using Enfold.

    Try to specify the height of the search field.

    #top .av_minimal_header #s {
        height: 25px;
    }
    

    // https://stackoverflow.com/questions/21295055/cannot-type-in-textfields-in-ie11

    Best regards,
    Ismael

    in reply to: Boxed Header #1014542

    Hey ichmusshierweg,

    Thank you for using Enfold.

    You can find that option in the Enfold > General Layout > Layout panel. Set the layout to “Boxed” instead of “Stretched”.

    Best regards,
    Ismael

    in reply to: Demo import wont work #1014541

    Hey sivertsletten,

    Thank you for using Enfold.

    Is it working on your local installation? You may need to import the demo on your local installation first and then manually upload it to your live site.

    // https://kriesi.at/documentation/enfold/initial-theme-setup/#manual-demo-import–xml-file-import-

    Best regards,
    Ismael

    Hi,

    You can hide that particular slider on mobile view and then add another type of slider that is more suited on smaller screens. You can toggle the sliders’ screen options for that. Unfortunately, you can’t set the slider to move vertically.

    Best regards,
    Ismael

    in reply to: product variations #1014535

    Hi,

    Thanks for the update. Please go to the Enfold > Shop Options panel and then set the “Product gallery” to the second option.

    Best regards,
    Ismael

    in reply to: Enfold 4.4.1 Google Map doesn't display #1014534

    Hi,

    There is a customized copy of the google_maps.php file in the child theme. Did you update that file? Please update the template files in your child theme.

    Best regards,
    Ismael

    in reply to: child theme has no css #1014532

    Hi,

    I get the following error when I try to change something in the theme.

    [26-Sep-2018 03:35:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function wp() in /home/sculpt0r/public_html/wp-blog-header.php:16
    Stack trace:
    #0 /home/sculpt0r/public_html/index.php(17): require()
    #1 {main}
    thrown in /home/sculpt0r/public_html/wp-blog-header.php on line 16

    The error came from a WP core file – some of the core files may be corrupted or broken. Please get a fresh copy of WordPress and then override your whole installation.

    Best regards,
    Ismael

    in reply to: Customize masonry in category page #1014530

    Hey emanuelecocchiaro,

    Thank you for using Enfold.

    You need to adjust the thumbnail size for the archive pages. Please edit the archives.php file, look for this code around line 56:

    'class' => 'avia-builder-el-no-sibling'
    

    Below, add these codes:

     'preview_mode' => 'custom',
    'image_size' => 'full',
    

    Default “image_size” value is set to “portfolio”, which has a dimension of 495x400px.

    Best regards,
    Ismael

    in reply to: Transparent header on tablet not working #1014528

    Hi,

    Thanks for the update.

    Yes, you enable the settings back once you’re done with the site.
    Regarding the header, it becomes gray because of this css code.

    #header {
        position: relative;
        z-index: 501;
        width: 100%;
        background: transparent;
    }

    Did you add it?

    Best regards,
    Ismael

Viewing 30 posts - 26,971 through 27,000 (of 67,534 total)