Forum Replies Created

Viewing 30 posts - 22,951 through 22,980 (of 62,103 total)
  • Author
    Posts
  • in reply to: Google Maps Develpoment purposes #986229

    Hi,

    Did you update the whole theme folder? It’s loading an old version of the maps script.

    <script type='text/javascript' src='https://maps.googleapis.com/maps/api/js?ver=1.0'></script>
    

    The version should be 3.30. I also noticed that the theme options have been reset to default. Is that intentional?

    Best regards,
    Ismael

    in reply to: Need Preview Pic To Be Full Size On Blog Page #986220

    Hi,

    Alright. Thank you for being patient. Please open a new thread if you need anything else. :)

    Best regards,
    Ismael

    in reply to: Main menu header adjustment #986219

    Hi,

    Did you enable the css/js compression in the Enfold > Performance panel? Please disable those options temporarily and then purge the browser cache before checking the page.

    Best regards,
    Ismael

    in reply to: Portfolio Masonry #986216

    Hi,

    The get_terms function accepts more arguments including the “order” and “orderby” parameter so you can use that to reverse the order of the category sort.

    // https://developer.wordpress.org/reference/functions/get_terms/
    // https://developer.wordpress.org/reference/classes/wp_term_query/__construct/

    Unfortunately, we can’t help you with the item filter. Please hire a freelance developer or contact our partner, Codeable.

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

    Best regards,
    Ismael

    in reply to: Google Maps and 4.4.1 #986212

    Hi,

    Please enable the Geocoding Services API from the API manager. Generate a new key and make sure that the Key Restrictions is set to “HTTP referrers (web sites)”.

    @mischka_b: Have you tried that? Please create a new thread with the site url and the login credentials. We would like to check it.

    Best regards,
    Ismael

    in reply to: Modify font size #986207

    Hi,

    Great! Glad that you figure it out. :)

    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: Expanding Content Hidden in Tab Views #986206

    Hi,

    Thanks for the update.

    We disabled this script from the functions.php file.

    function ava_custom_script_fix(){
    ?>
    <script>
    (function($){
    	function a() {
    		$('.av-tab-section-container').bind('click', '.av-section-tab-title', function() {
    			var active  = $(this).find('.av-active-tab-title'),
    				number  = active.data('av-tab-section-title'),
    				content = $(this).find('.av-layout-tab[data-av-tab-section-content='+ number +']').children('.av-layout-tab-inner'),
    				oheight = content.outerHeight(true) + active.outerHeight(true) + 100;
    
    				$(this).find('.av-tab-section-outer-container').css('max-height', oheight);
    		});
    
    		$('.av-section-tab-title:eq(0)').trigger('click');
    	}
    
        a();
    })(jQuery);
    </script>
    <?php
    }
    //add_action('wp_footer', 'ava_custom_script_fix');

    Best regards,
    Ismael

    in reply to: Masonry Gallery – Image title is not displayed #986202

    Hi,

    Glad it worked. We’ll forward it to the team. Please open a new thread if you need anything else. :)

    Best regards,
    Ismael

    in reply to: Enfold theme is not as on demo preview #986197

    Hi,

    Did you insert the layer slider using a shortcode? Please use the theme’s layer slider element under the Media Elements panel.

    Best regards,
    Ismael

    in reply to: Google Maps Issues #986196

    Hi,

    I removed the API key from the theme’s Google Services panel and then deregister every map scripts from the theme but the error is the same. The plugin or some other script is including the maps API script twice. Please contact the plugin author for additional help.

    Best regards,
    Ismael

    in reply to: Animated Numbers isn't working for me on mobile #986189

    Hi,

    Thanks for the info.

    We modified the file. The number is now animating when it’s visible in the view port on a browser emulation. I’m not sure if it’s the same on an actual mobile device. Please remove the browser cache prior to checking the page.

    Best regards,
    Ismael

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

    Hi,

    Alright. Let us know of the results. :)

    Have you read this article yet?

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Ismael

    in reply to: Layer Slider not working properly #986180

    Hi,

    You’re welcome. Let us know when you found the plugin that’s causing it. :)

    Best regards,
    Ismael

    in reply to: contact form autorespond text #986179

    Hi,

    This is the actual response when you sent the form. The “avia_8_1” is the “Ich bin dabei” checkbox and it’s going to be empty when it’s not checked. The “avia_9_1” is the other checkbox.

    
    avia_1_1: Test
    avia_2_1: Test
    avia_3_1: Test
    avia_4_1: Test
    avia_5_1: Test
    avia_6_1: Test
    avia_7_1: Test%40test.com
    avia_8_1: 
    avia_9_1: true
    avia_10_1: Nein
    avia_11_1: Test
    avia_12_1: 
    avia_generated_form1: 1

    I adjusted the filter a bit.

    add_filter('avf_form_autoresponder_from', 'avf_form_autoresponder_from_mod', 55, 3);
    function avf_form_autoresponder_from_mod( $to, $post, $params ) {
    	if($post['8_1'] === '' || $post['9_1'] === 'true') {
    		$to = null;
    	}     
    	return $to;
    }

    That filter will set the “autoresponse” email to null or empty when the “Ich bin dabei” checkbox was not ticked or when the “Ich bin leider verhindert” was checked.

    NOTE: Users have to check one of the options. Autoresponse will be sent if they don’t.

    Best regards,
    Ismael

    in reply to: Backgroundvideo is playing audio in backend #986177

    Hi,

    Yeah, agree. The Chrome browser has a more strict policy regarding media autoplay so using that browser should prevent the videos from auto playing. And again, if it’s still auto playing, try to mute the tab manually. Sorry for the troubles.

    Best regards,
    Ismael

    Hi,

    This css code should add the header shadow or border.

    #header {
        box-shadow: 1px 1px 3px #989898;
    }
    
    #header.av_header_transparency {
        box-shadow: none;
    }

    Best regards,
    Ismael

    Hi,

    Awesome! Took us a while but we did get there, finally. Thank you for being patient.

    Please open a new thread if you need anything else. :)

    Best regards,
    Ismael

    Hi,

    Thanks for the update.. We’ll close this thread for now.

    Best regards,
    Ismael

    in reply to: Enfold Form Tracking #986171

    Hi,

    Thanks for the update. Can I have access to your gmail account? I would like to test it.
    Is it working when you set the contact form to redirect to another page instead of displaying a message that the form was sent?

    Best regards,
    Ismael

    in reply to: Using Advanced layout editor for posts #985875

    Hey B,

    Thank you for using Enfold.

    The posts are going to use a different template when you switch to the advance layout builder. This new template contains nothing and will only render content from the advance layout builder. You get to add every elements manually. For the related section, you can use posts elements such as the blog posts or the magazine element to display posts from the same category.

    Best regards,
    Ismael

    in reply to: Banner video (mp4) not moving #985873

    Hi,

    The video won’t autoplay on Chrome because of their new policy.

    // https://developers.google.com/web/updates/2017/09/autoplay-policy-changes

    You have to mute the video.

    Chrome’s autoplay policies are simple:

    Muted autoplay is always allowed.
    Autoplay with sound is allowed if:
    User has interacted with the domain (click, tap, etc.).
    On desktop, the user’s Media Engagement Index threshold has been crossed, meaning the user has previously play video with sound.
    On mobile, the user has added the site to his or her home screen.
    Top frames can delegate autoplay permission to their iframes to allow autoplay with sound.

    Best regards,
    Ismael

    in reply to: Enfold Front Page Setting Causing Large Issue #985869

    Hi,

    Thank you for using Enfold.

    Please check if the css/js compression is enabled in the Enfold > Performance panel. Disable those options temporarily while you configure the site.

    Best regards,
    Ismael

    in reply to: Translation – Child Theme #985868

    Hey emaruxo,

    Thank you for using Enfold.

    You can use this plugin to translate the strings or texts.

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

    The language file (.po) may not contain the updated lines so manual translation may not work properly.

    Best regards,
    Ismael

    Hi,

    You can’t have the same effect on the single post page, unfortunately, but this css code should make the logo visible again.

    #top.single .av-logo-container {
        display: block;
    }

    Best regards,
    Ismael

    in reply to: Animated Numbers isn't working for me on mobile #985864

    Hi,

    The login info is invalid. Please check it carefully.

    Best regards,
    Ismael

    in reply to: New page footer acts odd with sidebar and no sidebar #985862

    Hey acscreativenew,

    Thank you for using Enfold.

    There’s a blank section below the last one. I’m not sure why it’s being added. We used this css code on the style.css file to fix the issue temporarily.

    #footer + div {
        display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Website Display on iPad #985861

    Hey projectt_co_uk,

    Thank you for using Enfold.

    Use this code on the Quick CSS field to adjust the layout on portrait view.

    @media only screen and (max-width: 768px) {
    .responsive #top #wrap_all .av-flex-cells .no_margin.av-zero-padding {
        padding-left: 0% !important;
        padding-right: 0% !important;
    }
    
    .responsive #top #wrap_all .av-flex-cells .no_margin {
        display: block;
        margin: 0;
        height: auto !important;
        overflow: hidden;
        padding-left: 8% !important;
        padding-right: 8% !important;
    }
    
    .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
        width: 100%;
    }
    }

    Best regards,
    Ismael

    in reply to: Layer Slider not working properly #985858

    Hi,

    The slider works when the plugins are deactivated. Please deactivate the plugins and then activate them one at a time to find the cause of the issue.

    Best regards,
    Ismael

    in reply to: License #985856

    Hi,

    The site is no longer loading. Did you transfer it?

    Best regards,
    Ismael

    in reply to: Visual Artist demo mobile devices #985854

    Hi,

    Provide the link to the actual page so that we can check the elements with fixed backgrounds. Did you add apply a custom css class attribute to those elements?

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

    Best regards,
    Ismael

Viewing 30 posts - 22,951 through 22,980 (of 62,103 total)