Forum Replies Created

Viewing 30 posts - 24,691 through 24,720 (of 66,166 total)
  • Author
    Posts
  • Hi,

    What happens with the slider on iPad view? Is it displaying or not?

    Best regards,
    Ismael

    in reply to: Search function with plugin download monitor #1033406

    Hi,

    Thanks for the update. I’m not that familiar with the plugin and I can’t find any plugin functions in their documentation.
    Please ask the plugin author what function to use to get the download url. You can then integrate that function with the filter above.

    Best regards,
    Ismael

    in reply to: Transparent Header on Mobile doesn´t work on 4.5 #1033403

    Hi,

    I see. Have you tried adjusting the css media query above? Change the max-width value from 768px to 1024px.

    Best regards,
    Ismael

    in reply to: comments and discussion order change. #1033402

    Hi,

    I haven’t tried to disable the plugins because it will interrupt your site. I kept the modifications in there, so if you have the time, try to disable the plugins to see if it changes anything or not.

    Best regards,
    Ismael

    in reply to: Google api #1033332

    Hi,

    There was an extra space before the actual API key. I removed the space and revalidated the key. It’s working properly now.

    Best regards,
    Ismael

    in reply to: Form inside codeblock not dispaying properly URGENT PLEASE #1033327

    Hi,

    The asterisks are beside the field to the left. Where do you want to place the asterisks?

    Best regards,
    Ismael

    in reply to: Galleri shows thumbnails, though unchecked.. #1033325

    Hi,

    Yes, it would affect all gallery elements. Please remove the css code and then edit the config-templatebuilder > gallery > gallery.php file. Look for this code around line 354:

    $output .= $style == "
    <div class='avia-gallery-thumb'>{$thumbs}</div>
    ";
    

    Replace it with:

    $output .= $style == 'thumbnails' || strpos($style, "lightbox") === false ? "
    <div class='avia-gallery-thumb'>{$thumbs}</div>
    " : null;
    

    Let us know if it helps.

    Best regards,
    Ismael

    Hi,

    Thanks for the update. I couldn’t reproduce the issue on Opera/Chrome Windows 8. The masonry element loads every time I refresh the page. Anyway, you can try this script in your functions.php file:

     function ava_enqueue_custom_script_resize() {
        if ( wp_script_is( 'avia-default', 'registered' ) ) {
            wp_add_inline_script( 'avia-default', "(function($){	
                var int = window.setInterval(function(){
                    console.log('tick');
                    $(window).trigger('resize');
                    $(window).trigger('av-content-el-height-changed');
                }, 2000);
    
                $(window).on('load', function() {
                    setTimeout( function() {
                        clearInterval(int);
                    }, 1000 );  
                });
            })(jQuery);" );
        }
     }
     add_action( 'wp_enqueue_scripts', 'ava_enqueue_custom_script_resize', 9999);

    Best regards,
    Ismael

    in reply to: WooCommerce Advanced extra fees and reductions displaying #1033317

    Hi,

    I disabled the File Compression settings from the Enfold > Performance panel. Please try the css code again.

    Best regards,
    Ismael

    in reply to: Problem with the default Blog category #1033316

    Hi,

    That’s odd. Can we access the site again? The previous login info is not working anymore.

    Best regards,
    Ismael

    in reply to: Calendar Pro | single-event.php #1032972

    Hi!

    Sorry about that. I adjusted the code a bit and it worked properly on my installation. Please try it again.

    // https://kriesi.at/support/topic/calendar-pro-single-event-php/#post-1032435

    Cheers!
    Ismael

    in reply to: Extra page elements on bbPress forums page #1032967

    Hi,

    Can we access the multisite panel? I would like to check the bbPress settings.
    You can add this code in the functions.php file to fix the issue temporarily.

     function ava_enqueue_custom_script() {
        if ( wp_script_is( 'avia-default', 'registered' ) ) {
            wp_add_inline_script( 'avia-default', " (function($){
                (function() ) {
                    var grid = $('body').children('.av-submenu-container, .avia-section, .av-layout-grid-container, .av-tab-section-container, #footer, #socket');
                    $(grid).appendTo('#wrap_all #main');
    
                    var child = $('.avia-section, .av-layout-grid-container').find('.avia-section, .av-layout-grid-container, #footer, .av-submenu-container, #footer'),
                    parent = child.parents('.avia-section, .av-layout-grid-container');
    
                    child.insertAfter(parent);
                }();
            })(jQuery);" );
        }
     }

    Best regards,
    Ismael

    in reply to: Masonry Resize / Sort Bug #1032962

    Hi,

    And why does the problem exist in general?

    The gallery script fails to calculate the actual or proper position of the gallery items because the images load later than expected. This issue usually happens on a gallery with a lot of images. The script above should force the gallery items to reposition until the site is fully loaded.

    Victoria, I added the script because Ismael recommended adding this scirpt!

    Did you set jQuery to load in the footer? Please check the Enfold > Performance panel.

    I adjusted the code a bit and readded it in the functions.php file :

     function ava_enqueue_custom_script() {
        if ( wp_script_is( 'avia-default', 'registered' ) ) {
            wp_add_inline_script( 'avia-default', "(function($){	
                var int = window.setInterval(function(){
                    console.log('tick');
                    $(window).trigger('resize');
                    $(window).trigger('av-content-el-height-changed');
                }, 1000);
    
                $(window).on('load', function() {
                    setTimeout( function() {
                        clearInterval(int);
                    }, 5000 );  
                });
            })(jQuery);" );
        }
     }
     add_action( 'wp_enqueue_scripts', 'ava_enqueue_custom_script', 9999);

    Let us know if it’s working properly.

    Best regards,
    Ismael

    in reply to: Scroll down to next Section Offset #1032954

    Hi,


    @grafixstudio
    : This is a fairly old thread and the scripts might have changed since. Please open a new ticket or thread with the site url and the login credentials. We’ll check the site there.

    NOTE: Remove your site from the private field.

    Best regards,
    Ismael

    in reply to: How to change blog post like this theme #1032953

    Hi,

    Can you give us an actual link to the post with the issue? I’m not really sure where or what to check.

    Best regards,
    Ismael

    Hi,

    Could you disable the maintenance mode temporarily? I can’t access any of the pages on my end.

    Best regards,
    Ismael

    in reply to: Learndash #1032947

    Hi,

    2.) Looks like you’ve found the correct css code for the button color.

    3.) I’m not really sure about this but I think the Course Progress Bar and Course Navigation widgets will only work if you’re on an actual course page. Please contact the plugin author for confirmation.

    Best regards,
    Ismael

    in reply to: TEC default styles and maps issue #1032944

    Hi,

    I disabled the “avia_events_custom_post_nav” from the config-events-calendar temporarily. The post navigation is displaying now but I’m not sure if the events are in the right order. Let me know if you notice anything.

    Best regards,
    Ismael

    in reply to: After Update to 4.5: Highlights are oversized! #1032933

    Hi,

    Thanks for the update. We’ll forward the issue to the dev. FYI, this same code works for another user.

    // https://kriesi.at/support/topic/slightly-increase-the-image-on-hover-not-workin-after-update-to-4-5-2/#post-1029075

    Best regards,
    Ismael

    Hi,

    I can’t login to the site. I get a 503 Service Unavailable error in the login page. Please contact your hosting provider.

    Best regards,
    Ismael

    in reply to: akkordeon slider "loading" animation #1032846

    Hi,

    Thanks for the update.

    There’s a minor syntax error. This css code should work.

    #top .aviaccordion-preview-title-pos {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    
    #top .aviaccordion.av-animation-active .aviaccordion-slide, #top .aviaccordion-title-on-hover .aviaccordion-preview {
        -webkit-transition: none !important;
        transition: none !important;
    } 
    
    #top .aviaccordion-preview-title-wrap {
        background: rgba(0, 0, 0, 0) !important;
    }
    
    #top .aviaccordion {
    	height: 150px;
    }
    
    #top .aviaccordion-image {
        opacity: 1 !important;
        transition: none !important;
    }
    

    Best regards,
    Ismael

    in reply to: Search function with plugin download monitor #1032839

    Hi,

    You can add it in the functions.php file or install a custom functions snippet plugin.

    Best regards,
    Ismael

    in reply to: Video doesn't worked #1032838

    Hi,

    The autoplay parameter is being appended to the video url. Did you add any modifications or custom functions to the site?

    Best regards,
    Ismael

    Hi,

    Great! You’re welcome. We’ll close the thread now. :)

    Best regards,
    Ismael

    in reply to: Customising Autoresponder using multiple contact forms #1032833

    Hi,

    You’re welcome. Please open a new thread if you need anything else. :)

    Best regards,
    Ismael

    Hi,

    Great! Glad it’s working. I’ll close the thread now. :)

    Best regards,
    Ismael

    in reply to: Form inside codeblock not dispaying properly URGENT PLEASE #1032830

    Hi,

    to just put it into a code block on the page.

    You have to wrap it in a style tag in order for it work.

    
    <style>
    #top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select {
        margin-bottom: 0 !important;
    }
    </style>
    

    Best regards,
    Ismael

    Hi,

    My bad. This is the updated reCAPTCHA snippet using the secret key.

    // EDITED: https://github.com/KriesiMedia/enfold-library/tree/master/integration%20plugins/Enfold/Enfold%20G%20Recaptcha/enfold-recaptcha

    Add the public key on this line:

    var captcha = jQuery("
    <p data-sitekey='PUBLIC KEY HERE' data-callback='onloadCallback' id='reCAPTCHAV2'></p>
    
    ");
    

    And the secret key here:

    $secret = 'SECRET KEY HERE';
    

    You can create your own options panel and save the keys in your database if you don’t want to put them directly in the snippet.

    Best regards,
    Ismael

    in reply to: Transparent Header on Mobile doesn´t work on 4.5 #1032827

    Hi,

    and my second problem is with upward the content on transparent header. I got this code from you:

    Where are you testing it? Try to adjust the css media query a bit.

    @media only screen and (max-width: 768px) {
    .responsive #top #main {
        margin-top: -80px;
    }
    }

    Best regards,
    Ismael

    in reply to: Capture (contact form) and spam filter #1032826

    Hi,

    You can put this code in the functions.php file:

    // https://pastebin.com/zZXQaLwP

    Just add the public key on this line:

    var captcha = jQuery("<p data-sitekey='PUBLIC KEY HERE' data-callback='onloadCallback' id='reCAPTCHAV2'></p>");
    

    And the secret key here:

    $secret = 'SECRET KEY HERE';
    

    You can create your own options panel and save the keys in your database if you don’t want to put them directly in the snippet.

    Best regards,
    Ismael

Viewing 30 posts - 24,691 through 24,720 (of 66,166 total)