Forum Replies Created

Viewing 30 posts - 24,211 through 24,240 (of 66,084 total)
  • Author
    Posts
  • in reply to: Ajax Portfolio Image Quality #1046329

    Hi,

    The gallery is using the “large” thumbnail by default. You should be able to adjust the thumbnail size in the Settings > Media panel. Regenerate the thumbnails after the adjustment.

    // https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    in reply to: LayerSlider showing 'more videos' when opened in Chrome #1046178

    Hi,

    The full screen slider does have a button option. Go to the Captions panel and look for the “Apply a link or buttons to the slide?” settings.

    Can you please tell me how to mute the video in Layer Slider? I can’t find the option :(

    There is a “Volume” settings right below the layer’s Content field.

    Best regards,
    Ismael

    Hi,

    Replace the script with this, so it hides the button on play and render it back on pause.

    add_action('wp_footer', 'ava_custom_vimeo_api');
    function ava_custom_vimeo_api(){
        ?>
        <script src="https://player.vimeo.com/api/player.js"></script>
        <script type="text/javascript">
            document.addEventListener( "DOMContentLoaded", () => {
                const player = null;
                let slide = document.querySelector('.av-video-slide'); 
                let iframes = slide.getElementsByTagName('iframe'); 
                const button = slide.querySelector('.avia-slideshow-button');
    
                for (var i = 0; i < 1; i++) { 
                    player = new Vimeo.Player(iframes[i]);
                }
    
                player.on('play', function() {
                    button.style.display = 'none';
                    player.setVolume(1);
                });
    
                 player.on('pause', function() {
                    button.style.display = 'block';
                });
    
               button.addEventListener( 'click', () => {
                    player.play();
                });
            });      
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    in reply to: Featured image blog #1046168

    Hi,

    The default thumbnail size is 495x400px. You can select a different thumbnail by setting the “Preview Image Size” to “manual”. It defaults to the “portfolio” thumbnail.

    Best regards,
    Ismael

    in reply to: Enfold Contact form and spam #1046160

    Hi,

    @Vicky: That is actually how the plugin works. It disables the button, hide it, remove the action attribute and enable it back if you pass recaptcha. We can add more layers of security, like fetching a certain value in the database and compare it to something, or listen for mouse events checking if the interaction is made by a script or a human etc, but I think that is enough for now. And of course, that implementation is not impregnable as long as one is so eager to break into it.

    Best regards,
    Ismael

    in reply to: Full Width SubMenu #1046152

    Hi,

    That is the default behavior of the menu. You have to click on something after opening the menu toggle to close the menu. Are you expecting it to close on scroll?

    Best regards,
    Ismael

    in reply to: Header menue at the bottom of the .inner-container #1046135

    Hi,

    Thanks for the update.

    This css code should help adjust the hover lines:

    .avia-menu-fx {
        bottom: 65px;
    }
    
    .header-scrolled .avia-menu-fx {
        bottom: 20px;
    }

    Best regards,
    Ismael

    Hey Vicky,

    Thank you for using Enfold.

    According to the webkit documentation, the “playsinline” attribute allows videos to autoplay on mobile devices as long as the said videos are muted. Unfortunately, I am not sure if this is going to work for Android devices. It is also not applicable for vimeo videos because they have their own video player. You have to convert it to mp4, webm or ogv and modify the framework > php > avia-function-set-avia-frontend.php file. Look for this code around line 626:

    $output .= '<video class="avia_video" '.$image.' '.$autoplay.' '.$loop.' '.$metadata.' '.$muted.' controls id="'.$uid.'" >';
    

    Add the “playsinline” attribute or replace the code with:

    $output .= '<video playsinline class="avia_video" '.$image.' '.$autoplay.' '.$loop.' '.$metadata.' '.$muted.' controls id="'.$uid.'" >';
    

    Make sure that the video is muted.

    Or use the Layer Slider plugin if you don’t want go through all of that. Create a layer and set the video as background.

    Best regards,
    Ismael

    in reply to: Blog Post Author link not working #1046130

    Hi,

    One of the plugins is causing the authors’ page to redirect, but I’m not sure which one.
    In order to find the plugin, please follow these steps:

    1. Go to your plugins page > Deactivate all active Plugins
    2. Activate one plugin at a time and refresh until you find the plugin in conflict.

    Thanks for your cooperation.

    Best regards,
    Ismael

    in reply to: New Icon Grid Flip box show 2 Columns #1046125

    Hi,

    Yes, that’s possible. Just add this css code in the General Styling > Quick CSS field.

    .avia-icongrid-numrow-3 li {
        width: 50%;
    }

    Turn on the custom css class field if you don’t want the modification to be applied on every icon grid element.

    Best regards,
    Ismael

    in reply to: Mega-menu subnav that's flying out to the right #1046124

    Hi,

    Thanks for the update.

    This css code should pull the mega menu towards the left.

    #menu-item-19 .avia_mega_div {
        margin-left: -38vw;
    }

    Best regards,
    Ismael

    in reply to: Instagram widget returns error #1046123

    Hi,

    The following steps might help:

    // https://kriesi.at/support/topic/instagram-widget-did-not-return-200-specify-username/#post-1031501

    If it’s still not working, use the Instagram Feed plugin temporarily.

    // https://wordpress.org/plugins/instagram-feed/

    And then post the FTP details in the private field.

    Best regards,
    Ismael

    in reply to: Background Video (Vimeo) Autoplay Android #1046120

    Hey Pixelsaft GbR,

    Thank you for using Enfold.

    It’s not allowed to autoplay media files on mobile devices by default, so you have to add a fallback or a background image. Or try to create a video slider using the layer slider plugin.

    Best regards,
    Ismael

    in reply to: Hide quantity of reactions #1046119

    Hi,

    I can’t access the site using the credentials above. Please check if the user name and password are correct.

    Best regards,
    Ismael

    Hi,

    Great! Glad it’s fixed. We’ll close the thread now.

    Best regards,
    Ismael

    Hi,

    Did you replace the default blog with a magazine element? Have you tried to adjust the “Blog Layout” settings before?

    Best regards,
    Ismael

    in reply to: Animation in layer slider #1045630

    Hi,

    Thank you for using Enfold.

    1.) Set the layer’s Transitions > Opening Transitions > “Offset X” settings to “Enter the stage from right”.

    2.) Do you want to adjust the height of the contact form fields? Try this css code:

    #top .avia_ajax_form .text_input, #top .avia_ajax_form .select, #top .avia_ajax_form .text_area {
        min-width: 50px;
        padding: 7px;
    }

    3.) You can hide or display specific layers in the slider by toggling devices’ icons inside the layer’s Content panel. You can also display a completely different slider on mobile view by adjusting the settings in the Slider Settings > Mobile panel.

    Best regards,
    Ismael

    in reply to: Das könnte sie auch interessieren #1045629

    Hey Udo,

    Thank you for using Enfold.

    The related posts section is not included in the advance layout builder template, so you have to add a “posts” element manually. You can use the Blog Posts element as a substitute for the related posts section.

    Best regards,
    Ismael

    in reply to: Customised colours for User Registration form #1045628

    Hey billysbuddies,

    Thank you for using Enfold.

    This css code should help:

    div#ur-frontend-form, div#ur-frontend-form form {
        background: purple;
    }

    Best regards,
    Ismael

    in reply to: minify and concatenate option not working #1045626

    Hi,

    You should not be worrying about this now, no one can see the site except you, so performance is not an issue yet. And you’re still developing the site, so you should leave the performance options disabled. Please feel free to contact us again once the site is live and the issues persist.

    Best regards,
    Ismael

    in reply to: Positioning widget in header area #1045625

    Hi,

    Did you install the plugin? Please note that it will only for reCAPTCHA V2, not V3. And you have to add your site in the domain list field.

    Please open a new ticket for this issue because it’s no longer relevant to the original inquiry.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Set the slider’s Slider Options > Slider Background Image > “Size” settings to “cover”.

    Best regards,
    Ismael

    in reply to: Problem with LayerSlider and Docker Environment #1045621

    Hey iplat,

    Thank you for using Enfold.

    The slider should load even without the skin.css file, so I think there’s a problem with the server or local environment. Unfortunately, I’m not familiar with docker, so I’ll just forward the thread to the rest of team. Please wait for their response. You can use XAMP or WAMP for the meantime.

    Best regards,
    Ismael

    in reply to: Enfold und the events calendar plugin #1045619

    Hi,

    1.) The calendar is already full width. Is this fixed?

    2.) And the tooltip displays below the “day” cell or the event title.

    Best regards,
    Ismael

    in reply to: Portfolio Images Losing Resolution #1045618

    Hi,

    Thank you for using Enfold.

    Are you using the Portfolio Grid element? Have you tried setting the “Portfolio Grid Image Size” to “manual”? It will allow you to manually select the image size.

    Best regards,
    Ismael

    in reply to: Help with Enfold Child Theme and Church Demo #1045613

    Hey Gary!

    Thank you for using Enfold.

    I think it’s not working because there’s a minor typo in the original callback name. Please change this line:

    if(is_child_theme()) remove_action('tribe_events_template', 'avia_events_template_paths', 10, 2);
    

    to:

    if(is_child_theme()) remove_action('tribe_events_template', 'avia_events_tempalte_paths', 10, 2);
    

    Make sure that template files are inside the child theme’s “tribe-events/views” folder.

    Regards,
    Ismael

    in reply to: sidebars for blog page and blog post #1045201

    Hi cagraphicdesign!

    Please continue here: https://kriesi.at/support/topic/sidebar-for-posts-only/#post-1045200

    We’ll close this duplicate thread.

    Cheers!
    Ismael

    in reply to: Sidebar for posts only #1045200

    Hey!

    The “Display Everywhere” widget area, as the name would suggest, is going to be displayed on any type of page along with the page-specific widget areas such Sidebar Blog, Sidebar Page etc, so avoid adding any page specific widgets there. The Sidebar Blog widget area will display on both the main blog page and the single post pages, so you have to use the Widget Logic plugin if you don’t want specific widgets to display on the blog overview page. You can use this conditional tag in the widget’s visibility field once the plugin is activated.

    is_single()
    

    Regards,
    Ismael

    in reply to: Avia layout builder not working anymore #1045197

    Hi,

    Alright. You won’t be needing that plugin on version 4.5.1 but you can keep it there if you’re not planning to use the new block editor.
    Please feel free to open a new thread if you need anything else.

    Best regards,
    Ismael

    in reply to: Partner / Logo Element #1045196

    Hi,

    I’m not really sure what’s wrong with that screenshot. Can you explain it further please?
    I add a few images in the slider but I still can’t see the issue. (see private field)

    Best regards,
    Ismael

Viewing 30 posts - 24,211 through 24,240 (of 66,084 total)