Forum Replies Created

Viewing 30 posts - 1,261 through 1,290 (of 34,859 total)
  • Author
    Posts
  • 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

    Hey togetherconcept,
    Try this solution:

    note that you may need to adjust for the special charters “quotes” in the code.
    Or perhaps this one:

    but note that the grid layout with the “read more” is only for some theme layouts so we would need to see your site with admin access to investigate feather.
    Best regards,
    Mike

    Hi,
    Glad that this helps, the backend Featured image thumbnail is a WordPress function and I don’t know how to change this. But as you pointed out your customers won’t see this. Shall we close this thread then?

    Best regards,
    Mike

    in reply to: All images have http instead of https. #1475386

    Hi,
    Glad we were able to 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: Button “transparent” not clickable #1475385

    Hi,
    Glad we were able to 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

    Hi,
    Thanks for your feedback, I nor the Dev Team could reproduce this so it is hard for us to investigate further. I’m glad that this solution is working for you.
    Glad we were able to 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

    Hey ProSEO,
    I added this to your functions.php file in Appearance ▸ Editor:

    add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 );
    function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
        return 'woocommerce_thumbnail';
    }
    

    and it solved your webshop
    Screen Shot 2025 01 19 at 9.08.36 AM
    and the Related products:
    Screen Shot 2025 01 19 at 9.20.52 AM

    Best regards,
    Mike

    in reply to: All images have http instead of https. #1475373

    Hey ebenanders,
    The images that I check on your site are “https”, it looks like only the favicon is “http”. Check the URL in Enfold Theme Options ▸ favicon, you can edit it without uploading again. Also check your WordPress ▸ Settings ▸ General ▸ Site Address and WordPress ▸ Settings ▸ General ▸ WordPress Address for “http”

    Best regards,
    Mike

    in reply to: Social media icons missing #1475372

    Hi,
    Thank you for your patience, I checked again but don’t see why the data-av_icon attribute is missing only for the Instagram and YouTube icons.
    I asked Yigit for any other ideas.

    Best regards,
    Mike

    Hi,
    Please also note that I disabled your Disable Gutenberg plugin as this is not needed, the theme already has this setting in the Enfold Theme Options ▸ Select Your Editor option.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, the Dev Team writes that when checking the revisions it seems that the title on your site is causing this, but it is not reproduceable on a local install, this can be ignored or use a plugin to Disable Autosave.
    The only plugin that I found was Disable Gutenberg Autosave, but you are not using Gutenberg so it doesn’t seem to help you. I added this code to your Snippets plugin:

    add_action( 'admin_init', 'disable_autosave' );
    function disable_autosave() {
    wp_deregister_script( 'autosave' );
    }

    and used your WP DB Cleaner plugin to remove past auto saves and saved a page and a post and checked back many times and checked your WP DB Cleaner plugin to see if any was added, but none were.
    Please check.

    Best regards,
    Mike

    in reply to: Burger Menu Position – small screens #1475358

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

    @media only screen and (max-width: 767px) { 
    	.av-burger-menu-main.menu-item-avia-special,
    	.responsive.html_cart_at_menu.html_header_searchicon .menu-item-search-dropdown {
    		right: -100px;
    	}
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.
    Screen Shot 2025 01 18 at 3.30.31 PM

    Best regards,
    Mike

    in reply to: footer only on mobile #1475357

    Hey Munford,
    The sidebar is not expected to show on mobile in this layout, nor in the burger menu, but adding this code to the end of your child theme functions.php file in Appearance ▸ Editor will show it:

    function custom_script() { ?>
      <script>
    (function($){
    $('#avia-menu').one('click', function(){
    jQuery('.avia-custom-sidebar-widget-area.sidebar.sidebar_right').clone().wrapInner('<div class="sidebar-widget-area"/>').children(0).unwrap().appendTo('#av-burger-menu-ul');
    });
    })(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.
    Screen Shot 2025 01 18 at 3.16.23 PM

    Best regards,
    Mike

Viewing 30 posts - 1,261 through 1,290 (of 34,859 total)