Forum Replies Created

Viewing 30 posts - 1 through 30 (of 33,611 total)
  • Author
    Posts
  • in reply to: Animated numbers sticking on 0 when page loads #1475798

    Hey woogie07,
    This error doesn’t happen constantly for me when I check, it looks like you are using the wp-smushit plugin with smush lazy-load. Please disable wp-smushit and clear all cache and check again. If that helps then try disabling only the lazy-load option in smush.
    It also looks like you are using a CDN on the site or server, so also clear this and it could take 24hr for it to clear.
    The element has “avia_animate_when_visible” and the lazy load or smush maybe blocking the “animate_when_visible” script.

    Best regards,
    Mike

    in reply to: Need help removing New Product section from empty cart page #1475796

    Hey marketbiz,
    To remove the new products section on the empty cart page add this css to your Quick CSS:

    .woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-product-new,.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-heading:not(.wc-block-cart__empty-cart__title) {
    	display:none;
    }

    Then to add the button add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    (function($){
      var button = $('<div class="avia-button-wrap av-m6cpztd3-7c60bd307536e2939b17d69a432c4593-wrap avia-button-center  avia-builder-el-56  el_after_av_button  avia-builder-el-last "><style type="text/css" data-created_by="avia_inline_auto" id="style-css-av-m6cpztd3-7c60bd307536e2939b17d69a432c4593">#top #wrap_all .avia-button.av-m6cpztd3-7c60bd307536e2939b17d69a432c4593{border-radius:20px 20px 20px 20px;transition:all 0.4s ease-in-out;}#top #wrap_all.avia-button.av-m6cpztd3-7c60bd307536e2939b17d69a432c4593:hover .avia_button_background{border-radius:20px 20px 20px 20px;}</style><a href="#" class="avia-button av-m6cpztd3-7c60bd307536e2939b17d69a432c4593 av-link-btn avia-icon_select-no avia-size-x-large avia-position-center avia-color-dark" title="Dashboard" aria-label="Dashboard"><span class="avia_iconbox_title">Dashboard</span></a></div>');
      if ($("body").hasClass("woocommerce-cart") && $(".wp-block-woocommerce-empty-cart-block .wc-block-grid").hasClass("wp-block-woocommerce-product-new") == true) {
      $(button).appendTo('.wp-block-woocommerce-cart');
      } else {}
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Then adjust the button URL to suit.
    Screen Shot 2025 01 25 at 5.05.08 PM

    Best regards,
    Mike

    in reply to: Advanced Layerslider and custom license #1475795

    Hey Guenter,
    Thank you for your patience, to use the paid layerslider license you will need to remove the embedded version from the theme by: Layout-Builder – Integrated (Bundled) LayerSlider Plugin – “Remove theme plugin files only and keep slides”
    This version blocks the paid license check.
    I would recommend exporting your sliders first, but is probably not necessary, just good practice.
    I also have noticed that some sliders created with a very old version of the layerslider have issues with the latest version options, such as the first demo, it seems that the layerslider has not maintained a good backward compatibility with all options as new options have been added.

    Best regards,
    Mike

    in reply to: Menu Accessibility Issue – Collapsed state not announced #1475791

    Hey navindesigns,
    I believe you are referring to your burger menu, but I find no sub-menu links in it so I don’t know how this would apply.
    Nonetheless this will require the Dev Team to review, please open a new Github Feature Request for the Dev Team to review.
    Thank you for your patience.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, your css will only highlight the elements as you tab them, not cause a keyboard focusable.
    What element are you not able to keyboard focusable? When I check I can tab to each item on your page.
    Your MasterPopups plugin takes the first few focusable, try disabling this plugin, then you have an empty jQuery:
    Screen Shot 2025 01 25 at 3.12.53 PM
    then other scripts, you may need to disable all of your plugins and see if that helps and then enable them one at a time to find the ones taking the focus. But as I test with enough tabs to get past them I can then tab to all of the items on your page.

    Best regards,
    Mike

    in reply to: Images open in new page instead of presenting as lightbox #1475789

    Hi,
    Glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Elements are erased after saving #1475788

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Change menu item font size? #1475787

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Demo Import #1475786

    Hi,
    Please include the domain URL so we can login.
    If your demo import error is “cURL error 28” then this typically a webhost that blocks our demo files IP address, such as OVH hosting.
    If it is another error, then typically this is a webhost that doesn’t have the PHP ZipArchive Extension enabled on the server. This is typically enabled by default, but some servers beginning with PHP v8 forgot to enabled, so check with your webhost.
    What demo are you trying to install?

    Best regards,
    Mike

    in reply to: Change menu item font size? #1475784

    Hi,
    The advance styling settings in your screenshot is for the “overlay/slide out” (burger menu) please change in the “Main Menu Links” instead:
    Screen Shot 2025 01 25 at 2.17.25 PM
    note that the “Apply only to mouse hover state” is not checked.

    Best regards,
    Mike

    in reply to: shadow and border #1475778

    Hey schweg33,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .responsive .page-id-3302 #av_section_1 .container {
    	max-width: 100%;
    	padding: 0;
    }
    .page-id-3302 #layer_slider_2.avia-shadow {
        box-shadow: none;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Hiding secondary top menu #1475777

    Hi,
    Please link to your page so we can examine.

    Best regards,
    Mike

    in reply to: Extra large white spaces #1475776

    Hi,
    I also don’t see any errors on your homepage, please post a screenshot of what you see and the browser / OS that you are using.
    To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

    in reply to: Justify content with horizontal Gallery Element #1475775

    Hi,
    Glad that this helped, we don’t have a list of all ALB classes as it would be too extensive, but the best way to find classes is to review the element via the browser Dev Tools inspector.
    I have recommend adding more documentation for the horizontal gallery, this may take some time.
    Shall we close this thread?

    Best regards,
    Mike

    in reply to: Justify content with horizontal Gallery Element #1475691

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.page-id-16 .av-horizontal-gallery-slider {
        display: flex;
        justify-content: center;
    } 

    Screen Shot 2025 01 23 at 5.04.08 PM

    Best regards,
    Mike

    in reply to: Disable Enfold generated images #1475690

    Hi,
    Please note that adding the code above and regenerating the thumbnails will not remove the old images that you want to remove, you will need to remove them via FTP or your cPanel file manager.

    Best regards,
    Mike

    in reply to: Linking a sticky element #1475689

    Hey ebenanders,
    It looks like you need to create a new PDF with a new name.
    If you still have issues, please include a admin login for us and upload the new PDF with a link to it for us to see.

    Best regards,
    Mike

    in reply to: Issue with bottom of being cut off in Advanced Layerslider #1475688

    Hi,
    Please try disabling your WP Rocket plugin and disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and clear any CDN and server cache that you may have enabled. This may that 24 hours to clear.
    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: fa icons in main menu #1475605

    Hey Mark,
    It looks like your Font Awesome script is coming from revslider and not from your site, typically you need to add Font Awesome to your functions.php as Enfold doesn’t add it. See here, note that some versions are paid only and old versions may no longer work. See this example Note that it is an old Font Awesome CDN code so you may need to update.
    Best regards,
    Mike

    in reply to: Can’t import “shop” demo #1475604

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Spacing between 1/2 width columns #1475603

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Accessibility – Broken skip link #1475602

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Add the URL of the current page to the form #1475601

    Hi,
    You could review the file at config-templatebuilder/avia-shortcodes/contact/contact.php
    but changing this file will make all of the forms have the same result, you are best to use a different form on each page with a unique “E-Mail Subject” as posted above.

    Best regards,
    Mike

    in reply to: footer only on mobile #1475600

    Hi,
    Glad to hear that you have this sorted out, shall we close this topic?
    Please open a new thread for each issue as it will help the Mods and future users.

    Best regards,
    Mike

    in reply to: add margin left/righ to content section #1475520

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Add the URL of the current page to the form #1475519

    Hey daimonart,
    Add a custom page title to each contact form “E-Mail Subject”
    Screen Shot 2025 01 21 at 5.17.05 PM

    Best regards,
    Mike

    in reply to: Site Edition #1475518

    Hey Arthur,
    The two sites that you linked to do not seem to be using the Enfold theme. It looks like a custom theme using Elementor.
    Try asking your web developer for assistance.

    Best regards,
    Mike

    in reply to: Accessibility – Broken skip link #1475517

    Hey navindesigns,
    Your skip link is pointing to the ID “#content”, but this is not a valid ID, try adding this ID to your page.
    Are you using a custom script or a plugin to add this? I don’t have this on my test site.

    Best regards,
    Mike

    in reply to: Issue with bottom of being cut off in Advanced Layerslider #1475515

    Hey snitt,
    When I check your page I don’t see that your LayerSlider is cut off, I see that the content slider is cut off due to this error:
    (index):875 Uncaught TypeError: Cannot read properties of undefined (reading 'isMobile')
    from this custom code in your functions.php:

    add_action('wp_footer', 'ava_auto_height');
    function ava_auto_height(){
    ?>
    <script>
    (function($){
    	function c() {
    		   if( $.avia_utilities.isMobile ) return;
    
    		   $('#content-slider-height-same .slide-entry').css('height', '');
    
    		   var elementHeights = $('#content-slider-height-same .slide-entry').map(function() {
    			 return $(this).outerHeight();
    		   }).get();
    
    		   var maxHeight = Math.max.apply(null, elementHeights);
    
    		   $('#content-slider-height-same .slide-entry').height(maxHeight);
    	}
    
    	$(window).on('load', function() {
    	  	c();
    	}).load();
    })(jQuery);
    </script>
    <?php
    }

    Screen Shot 2025 01 21 at 4.16.48 PM
    Is this what you are talking about?
    Changing to this seems to solve after your WP Rocket plugin is cleared:

    add_action('wp_footer', 'ava_auto_height');
    function ava_auto_height(){
    ?>
    <script>
    (function($){
    	function c() {
    		   //if( $.avia_utilities.isMobile ) return;
    
    		   $('#content-slider-height-same .slide-entry-excerpt').css('height', '');
    
    		   var elementHeights = $('#content-slider-height-same .slide-entry-excerpt').map(function() {
    			 return $(this).outerHeight();
    		   }).get();
    
    		   var maxHeight = Math.max.apply(null, elementHeights);
    
    		   $('#content-slider-height-same .slide-entry-excerpt').height(maxHeight);
    	}
    
    	$(window).on('load', function() {
    	  	c();
    	}).load();
    })(jQuery);
    </script>
    <?php
    }

    Screen Shot 2025 01 21 at 4.21.57 PM
    I set your code back to the way you had it, please check.

    Best regards,
    Mike

    in reply to: Side bar to be shown on product page #1475513

    Hey whdsolutions,
    You could try this solution, but it is not meant to show for products, as the layout placement shows the sidebar under the product image.

    Best regards,
    Mike

Viewing 30 posts - 1 through 30 (of 33,611 total)