Forum Replies Created

Viewing 30 posts - 11,881 through 11,910 (of 66,152 total)
  • Author
    Posts
  • in reply to: Support Access #1323591

    Hey Sites ME!

    Thank you for the inquiry.

    Themeforest actually requires all authors including Kriesi to implement the license check, but Kriesi chose not to implement it, which allow users to use the forum and get support without the license check for significant number of years, so this was actually long overdue. But now he was promptly asked to finally comply to this rule, thus the license check. To learn more about renewing the support license, please check the following documentation.

    // https://help.market.envato.com/hc/en-us/articles/207886473-Extending-and-Renewing-Item-Support

    Best regards,
    Ismael

    in reply to: MegaMenu submenu items keyboard accsessibility #1323572

    Hi,

    For nested sub menus, you will have to do this modification.

    // https://kriesi.at/support/topic/accessibility-issue-for-menu-with-sub-items-of-sub-items/#post-1296178

    Or add this code instead.

    currentLink.on('focus', function () {
    						sublist.stop().css({ visibility: 'visible' }).animate({ opacity: 1 });
    						currentItem.css("z-index", 1000);
    
    						sublist.find('li:last-child').on('focusout', function () {
    							var parent = sublist.parent(".menu-item");
    							var nextMenu = parent.next();
    							var submenu = $(this).parent(".sub-menu");
    
    							if(nextMenu) {
    								nextMenu.trigger("mouseenter").focus();
    								submenu.stop().animate({ opacity: 0 }, function () {
    									submenu.css({ visibility: 'hidden' });
    								});
    								return;
    							}
    
    							sublist.stop().animate({ opacity: 0 }, function () {
    								sublist.css({ visibility: 'hidden' });
    							});
    						});
    					});
    

    Best regards,
    Ismael

    in reply to: MegaMenu submenu items keyboard accsessibility #1323571

    Hi,

    Thank you for the clarification.

    The following code is not yet included in the latest version of the avia-snippet-megamenu.js file, so you will have to add it manually.

    currentLink.on('focus', function () {
    						sublist.stop().css({ visibility: 'visible' }).animate({ opacity: 1 });
    
    						sublist.find('li:last-child').on('focusout', function () {
    							sublist.stop().animate({ opacity: 0 }, function () {
    								sublist.css({ visibility: 'hidden' });
    							});
    						});
    					});
    

    This should work for regular dropdowns. The previous modification above is intended for mega menus.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    1-2.) We have found out that the fts_instagram shortcode is the causing the layout issue. We saved the content of the page as template, applied it to a draft page (see private field) and removed the fts_instagram shortcode. The content within the tab section displayed correctly after removing the shortcode. You may need to contact the plugin authors for additional assistance or use a different instagram plugin.

    3.) We checked the site on Chrome and Firefox. Please check the screenshot below.

    Screenshot: https://postimg.cc/gallery/5J4W3S8/3813816e

    4.) What is the font that you are using? It is possible the font weight 900 is not available for that font.

    Best regards,
    Ismael

    in reply to: Image resizes on lightbox preview image #1323562

    Hi,

    No problem! Glad to know that it is working. You can actually override the the shortcode file (portfolio.php) in your child theme. Please check the following documentation.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    You have to add the snippet in the functions.php filey, create a folder called “shortcodes” in the child theme directory, then create a copy of the shortcode file inside the new folder. The snippet will instruct the theme to look for new builder elements in the “shortcodes” folder.

    Best regards,
    Ismael

    in reply to: No hamburger menu on below 990px #1323561

    Hey karinorage,

    Thank you for the inquiry.

    What is the actual model of the tablet device that you are using? The mobile menu icon will display when the screen width is less than 991px, but some tablet device is now wider or have a higher screen resolution, so the default menu will still be visible on those devices.

    We could use the following css to adjust the mobile menu breakpoint or to force the mobile menu to display when the screen width is less than 1366px, which should cover tablet devices with high screen resolutions such as iPad Pro.

    @media only screen and (min-width: 768px) and (max-width: 1366px)
        .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special {
            display: block;
        }
    
        .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item {
            display: none;
        }
    }
    

    Best regards,
    Ismael

    in reply to: Problemi con il plugin SiteGround Optimizer #1323558

    Hey cristinagrafik,

    Thank you for the inquiry.

    The site health panel is now loading properly on our end, and it still works properly after we activated the Siteground Optimizer plugin. Is it working correctly on your end?

    Screenshot: https://postimg.cc/Kkwvpq17

    Best regards,
    Ismael

    in reply to: Mobile layout oddity #1323556

    Hey Ralph,

    Thank you for the inquiry.

    Did you set the background attachment to “fixed”? This might be causing the issue on mobile devices. We tried to inspect the site but it is not loading properly on our end. We may need to login to the dashboard first. Please post the admin account info in the private field.

    Best regards,
    Ismael

    in reply to: cookie consent issues #1323555

    Hey Munford,

    Thank you for the inquiry.

    The message bar did not display again after we OK’d it, so it seems to be working correctly. Is it currently set to the third option?

    Please ask the user if the browser is set to block external cookies. Enabling this browser option will disallow all cookies including the essential cookies that the theme requires to properly execute the privacy options.

    // https://support.google.com/chrome/answer/95647?hl=en&co=GENIE.Platform%3DDesktop#zippy=%2Cdelete-cookies-from-a-period-of-time%2Cdelete-cookies-from-a-site%2Callow-or-block-cookies

    Best regards,
    Ismael

    in reply to: check mobile friendly #1323554

    Hey Lautho2011,

    Thank you for the inquiry.

    Most browser have mobile device emulators, which allow you to display a site on a resized view port and check it as if you are using a smaller device.

    // https://developer.chrome.com/docs/devtools/device-mode/#viewport

    You can also use the following tool to check the mobile friendliness of the site.

    // https://search.google.com/test/mobile-friendly?id=VsWo5yrnl83-V6Kn7PbyAA

    Best regards,
    Ismael

    in reply to: MegaMenu submenu items keyboard accsessibility #1323387

    Hi!

    Thank you for the update.

    There are no mega menu in the site posted above. Tabbing through the items with regular dropdown works fine. Please create a mega menu so that we can check the issue. You should also keep the file compression settings disabled while testing the modification.

    Regards,
    Ismael

    Hi,

    It works on Firefox/Dev when we remove the -webkit-transform-style property and use the following css code, but this will also break the slider because it relies on the transform property to move the sliders.

    .avia-mozilla .avia-fullscreen-slider .avia-slideshow[data-image_attachment="fixed"] > ul > li {
    	transform: none !important;
    }
    
    

    Looks like the Firefox developers were not planning on fixing this based on the thread that @guenter posted above.

    There was a discussion [1] that involved all major browser vendors, including Chrome, which resulted in a consensus to change the spec [2] to treat background-attachment:fixed inside a transform as if it was background-attachment:scroll.

    Best regards,
    Ismael

    in reply to: Google Analytics On Click Bug #1323383

    Hi,

    Thank you for the update.

    Try to replace the snippet with the following code. We just replaced the prop function with attr.

    //	added 4.8.6.4 https://kriesi.at/support/topic/google-analytics-on-click-bug/
    			var analytics_ckeck = new_submit.attr( 'onclick' );		
    			if( 'undefined' != typeof analytics_ckeck )
    			{
    				analytics_ckeck = analytics_ckeck.toLowerCase();
    				if( analytics_ckeck.indexOf( 'gtag(' ) >= 0 )
    				{
    					new_submit.attr( 'onclick', null );
    				}
    			}
    
    

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after doing the modification.

    Best regards,
    Ismael

    in reply to: MegaMenu submenu items keyboard accsessibility #1323381

    Hey Rob,

    Thank you for the inquiry.

    For the mega menu, you have to modify the /enfold/js/avia-snippet-megamenu.js file, around line 175, look for this code..

    //bind event for mega menu
    			megaItems.each(function(i){
    				$(this).on('mouseenter', 
    					function()
    					{
    						delayCheck[i] = true;
    						setTimeout(function(){megaDivShow(i); },options.delay);
    					}).on('mouseleave',
    					function()
    					{
    						delayCheck[i] = false;
    						setTimeout(function(){megaDivHide(i); },options.delay);
    					}
    				);
    

    Replace it with:

    //bind event for mega menu
    			megaItems.each(function(i){
    				$(this).find("a").on('focus', 
    					function()
    					{
    						delayCheck[i] = true;
    						setTimeout(function(){megaDivShow(i); },options.delay);
    					}).on('blur',
    					function()
    					{
    						delayCheck[i] = false;
    						setTimeout(function(){megaDivHide(i); },options.delay);
    					}
    				);
    
    				$(this).on('mouseenter', 
    					function()
    					{
    						delayCheck[i] = true;
    						setTimeout(function(){megaDivShow(i); },options.delay);
    					}).on('mouseleave',
    					function()
    					{
    						delayCheck[i] = false;
    						setTimeout(function(){megaDivHide(i); },options.delay);
    					}
    				);
    			});
    

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after doing the modificaiton.

    Best regards,
    Ismael

    in reply to: how to make a table ignore existing css rules #1323370

    Hi,

    Alright! Glad we could be of help. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Going from Enfold 3.8 to 4.7.6.4 – HELP :) #1323369

    Hi,

    Glad to know that it is working correctly now. To create a shop page, you will need a plugin such as Woocommerce. The plugin has a setup wizard, so you should be able to start a shop page in no time. Please check their documentation for additional info.

    // https://docs.woocommerce.com/document/woocommerce-setup-wizard/

    Best regards,
    Ismael

    in reply to: Startup Business Demo & WPML not working #1323368

    Hi,

    Thank you for the update.

    We successfully translated a page from Italian to English using the WPML Translation Management panel as described in the documentation and the short video tutorial included in it. Please check the links in the private field. We also disabled the Performance > File Compression settings temporarily.

    Best regards,
    Ismael

    Hey Cordell,

    Thank you for the inquiry.

    1-2.) The content of the first tab is at the very bottom of the container. You may need to set the tab section’s Layout > Content height to the second option (Auto adjust to content). And make sure that the Styling > Alignment > Vertical Align settings of each tab is set to Top or Middle.

    3.) All videos worked correctly when we checked the page. Is this fixed? You may have set the Privacy & Cookies > Cookie Handling > Default Cookie Behavior settings to the third or fourth option, which disallow or block external scripts including videos on page load.

    4.) Did you enable the Enfold > Performance > File Compression settings? Please try toggle or temporarily disable it, and make sure to purge the cache.

    If you have any additional questions at this time we kindly ask that you open them up in separate threads. 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: boxed layout #1323152

    Hey pontedellarco,

    Thank you for the inquiry.

    Where can we see the issue? Please post the URL of the category page where you need the boxed layout. You may need to adjust the css selector a bit.

    .responsive #top.category-1, .responsive #top.category-1 #header, .responsive #top.category-1 .container {
        max-width: 100%!important;
        width: 100%!important;
    }
    

    Best regards,
    Ismael

    in reply to: Enfold conflict with Tooltips Pro plugin #1323143

    Hi,

    Thank you for the update.

    It seems to work correctly when the tooltip link (GIF TEST) is in the same line. Please check the screenshot below.

    Screenshot: https://postimg.cc/SXsCRMDz

    We inserted a few letters before the link to completely push it in the second line.

    Best regards,
    Ismael

    in reply to: do_shortcode issue with layout #1323142

    Hi,

    Sorry for the delay. Is there a staging or development version of the site where we can see the issue? Please post the WP and FTP details in the private field. And please include a direct link to the page where you are testing the modification so that we can see how it currently works.

    Best regards,
    Ismael

    in reply to: Image resizes on lightbox preview image #1323140

    Hi,

    Alright. Please try to edit the enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.php file, look for this code around line 1351..

    $params['size'] = $params['preview_size'];
    

    .., and replace it with:

    $params['size'] = "full";
    

    Let us know how it goes.

    Best regards,
    Ismael

    in reply to: entypo-fontello missing in version 4.8.6.2 #1323138

    Hi,

    Thank you for the update.

    The icon font files (entypo-fontello) are included in the theme (see private field), so it should be in your server. For some reason, the woff or icon font files are not loading properly in the site.

    Can we deactivate the plugins temporarily? The security plugin might be preventing the icon files from loading.

    Best regards,
    Ismael

    in reply to: Shortcodes not working in text widget anymore #1323136

    Hi,

    Try to edit the snippet from the previous thread, look for this code.

    $output .= $footertop;
    

    Replace it with:

    $output .= do_shortcode($footertop);
    

    You may also have to include this filter in the functions.php file.

    function avf_custom_exec_sc_only_mod( $exec_sc_only, $obj_sc, $atts, $content, $shortcodename, $fake ) {
    	return true;
    }
    
    add_filter( 'avf_alb_exec_sc_only', 'avf_custom_exec_sc_only_mod', 10, 6 );
    

    Let us know if it helps.

    Best regards,
    Ismael

    Hi,

    Sorry about that. There is a minor syntax error in the code. Please look for this line..

    if(is_wocommerce() || is_checkout() || is_cart()) {
    

    .., and replace it with:

    if(is_woocommerce() || is_checkout() || is_cart()) {
    
    

    Or just remove this part.

    is_woocommerce() || 
    

    Best regards,
    Ismael

    in reply to: Issue with Easy Slider + image rollover #1323131

    Hi,

    Thank you for the update.

    We cannot reproduce the same issue on our end, so it is probably cause by a plugin or a custom script. Did you copy the code directly from this forum?

    For the image overlay or “rollover”, please try this code in the Quick CSS field.

    .avia-image-container.av-hover-grow, .avia-image-container.av-hover-grow .avia-image-container-inner, .avia-image-container.av-hover-grow .avia-image-overlay-wrap a.avia_image {
        overflow: hidden;
    }
    

    Make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.

    Best regards,
    Ismael

    in reply to: Issue with Easy Slider + image rollover #1323105

    Hey CatchPR-Sa-Ra,

    Thank you for the inquiry.

    Looks like the gap or space below the slider only occurs on page load. It gets removed once we manually resize the browser. Adding this script in the functions.php might help.

     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(){
                    $(window).trigger('av-content-el-height-changed');
                }, 1500);
    
                $(window).on('load', function() {
                    setTimeout( function() {
                        clearInterval(int);
                    }, 1000 );  
                });
            })(jQuery);" );
        }
     }
     add_action( 'wp_enqueue_scripts', 'ava_enqueue_custom_script_resize', 9999);

    The script above should trigger a resize event every 1.5 seconds and stops once the page is fully loaded.

    Best regards,
    Ismael

    in reply to: Prevent Consent Manager from being indexed by Google #1323103

    Hey Jan,

    Thank you for the info.

    We will forward the issue to our channel and possibly include the changes in the next patch.

    Best regards,
    Ismael

    in reply to: Google Analytics and Cookie Pop-up Bug (workaround) #1322937

    Hey Thomas,

    Thank you for the inquiry.

    Looks like an issue with the regex match. Please try to edit the helper-privacy.php file, look for this code around line 520 and 2097.

    preg_match( "!UA-[0-9]+-[0-9]+!", $analytics, $match );
    

    Replace it with:

    preg_match( "/(UA|G)-([0-9]+-[0-9]|[0-9A-Za-z])/", $analytics, $match );
    

    Let us know if it helps.

    Best regards,
    Ismael

    in reply to: Getting a server error message when uploading video #1322936

    Hey Fiore,

    Thank you for the inquiry.

    Is it working correctly when using a different theme or when the plugins are deactivated? Please post the site URL in the private field so that we can check it. You should also try to increase the maximum file upload size limit. Here’s how.

    // https://www.wpkube.com/how-to-increase-the-maximum-file-upload-size-in-wordpress-5-methods/

    Best regards,
    Ismael

Viewing 30 posts - 11,881 through 11,910 (of 66,152 total)