Forum Replies Created

Viewing 30 posts - 13,741 through 13,770 (of 34,910 total)
  • Author
    Posts
  • in reply to: Sticky search-dropdown #1326178

    Hey Veronika,
    Thank you for the screenshot, try adding margin-top to your css to this:

    .html_burger_menu_active #top #wrap_all .menu-item-search-dropdown > a {
        position: fixed;
        margin-top: 30px;
    }

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

    Best regards,
    Mike

    in reply to: Enfold use #1326177

    Hey Julian,
    Thank you for your question, our license is for one domain, but sub-domains and a domain count as only one domain.
    If each website installation is a different domain then you would need a license for each.
    Thank you for considering Enfold.

    Best regards,
    Mike

    in reply to: Disable Preloader only on homepage #1326176

    Hey KevinDuy2605,
    To remove this from only the homepage please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top.home .av-siteloader-wrap {
        display: none !important;
        visibility: hidden !important;
    }
    

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

    Best regards,
    Mike

    in reply to: Adding a Flag symbol to the main menu? #1326174

    Hi,
    Glad Rikard could help you get 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: masonry grid #1326172

    Hi,
    This screenshot https://imgur.com/5FuA2zT is pointing to your container max-width is 1310px which is picked at Enfold Theme Options ▸ General Layout ▸ Dimensions
    2021-10-23_002.jpg
    Try changing this to 100%

    Best regards,
    Mike

    in reply to: Post Slider #1326171

    Hey wp1,
    Thank you for your patience, to do this please edit the file \wp-content\themes\enfold\js\shortcodes.js
    and look for this around line 200:
    $('.avia-content-slider-active', container).aviaSlider({wrapElement: '.avia-content-slider-inner', slideElement:'.slide-entry-wrap', fullfade:true}); and change the last word “true” to “false
    then disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Enfold vs. YouTube Feed plugin #1326169

    Hey Arend,
    Thank you for your patience and for the link to your site, I tested the Feeds for YouTube on my localhost and found that it conflicts with the built-in lightbox script. I tried many approaches to get them to work together but couldn’t, I also tried having the gallery images open in the Feeds for YouTube lightbox, but it was not dependable and caused other issues with the video lightboxes. The only working solution I could find was to disable the built-in lightbox and use the Simple Lightbox plugin for the gallery images, these two lightboxes work together.
    Please give this a try.

    Best regards,
    Mike

    in reply to: Woocommerce Image width #1325868

    Hi,
    You can control the width of the image container with this css:

    #top.single-product .single-product-main-image {
        width: 50%;
    }

    this sets the remaining page width for the product summary container, but please note that the gallery below the product summary is also in the product summary container so it’s width is also changed and may be undesirable.
    So you can try adjusting the image width to find an image width & summary/gallery width that you are ok width.
    Don’t forget to clear your cache while you are testing.

    Best regards,
    Mike

    in reply to: Something not working as before #1325859

    Hi,
    I found that I see if I’m not logged in, but it works when I was logged in. I cleared your WP Fastest Cache and then I could see it on Chrome & Edge when logged out, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Exclude Javascript from Cache #1325855

    Hi,
    I can’t explain why excluding slideshow.js would allow content to show without clearing your cache, when I examine the file I only see functions to set the container size and layout, adding the next/previous triggers, and other javascript events, but there are no calls to get the data, so it doesn’t make logical sense why this would work.
    Anyways, did you try /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/(.*).js for your /news-events/ page?
    The only other way I can think of is to not cache your /news-events/ page at all.

    Best regards,
    Mike

    in reply to: Exclude Javascript from Cache #1325724

    Hi,
    I believe you will need to refresh the cache when you create new posts, I don’t believe there is a way around that and it is why there is this option in WP Rocket.
    A cache is a “snapshot” of your page at a certain time so the database doesn’t need to be called, by adding a new post you have changed the database but not the cache, so for your cache to show the latest version of your page it needs to be updated.

    Best regards,
    Mike

    in reply to: Cannot get transparent header to work #1325722

    Hi,
    Did this work for you? Shall we close this then?

    Best regards,
    Mike

    in reply to: Tabcontainer "Reiter"- mobile Position/Offset #1325721

    Hi,
    I linked the child theme that should have been included with the latest version, in the full theme and docs download from Theme Forest, you can replace yours with this or copy the function I mentioned above to yours.
    It is key that you create a /shortcodes/ directory in your child theme to place your modified shortcode directory, like I described above.

    Best regards,
    Mike

    in reply to: Setting to hide caption below lightbox doesn't work #1325715

    Hi,
    Thank you for your patience the Dev Team has created a patch for this issue and it will be included in the next update.
    If you would like to try the patch on your site then make a backup of your current \wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\av-helper-masonry.php file and replace it with the one linked below via FTP.

    Best regards,
    Mike

    in reply to: Tabcontainer "Reiter"- mobile Position/Offset #1325565

    Hi,
    Glad to hear this helped, if you are using the child theme that came with the theme then you should see this near the top of the functions.php:

    function avia_include_shortcode_template( $paths )
    {
    	if( ! is_array( $paths ) )
    	{
    		$paths = array();
    	}
    	
    	$template_url = get_stylesheet_directory();
    	array_unshift( $paths, $template_url . '/shortcodes/' );
    
    	return $paths;
    }
    
    add_filter( 'avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1 );

    then when you copy the tab sortcode folder from \wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\tabs\ you should put it in the /shortcodes/ directory in your child theme, like this \wp-content\themes\enfold-child\shortcodes\tabs\ ok so now please try adding this function to your child theme functions.php:

    function wp_change_aviatabjs() {
       wp_dequeue_script( 'avia-module-tabs' );
       wp_enqueue_script( 'avia-module-tabs-child', get_stylesheet_directory_uri().'/shortcodes/tabs/tabs.js', array('jquery'), 2, true );
    }
    add_action( 'wp_print_scripts', 'wp_change_aviatabjs', 100 );

    Then clear your browser cache and any cache plugin, a couple on times, and check.

    Best regards,
    Mike

    in reply to: Disable post nav arrow on first or last entry in a category #1325553

    Hi,
    Glad Ismael 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: Full wdidth google maps #1325550

    Hi,
    Glad Yigit was 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: Fullwidth easy slider ´dynamic height´ glitch #1325548

    Hi,
    I found a similar issue on another site, and it turned out to be the lazy load feature of SmushPro, I see that your site is loading wp-smushit
    2021-10-19_001.jpg
    although it’s not the typically way, perhaps you are caching with a CDN or your running a muilti-site?
    Nonetheless please try disabling this and then clear your browser cache and any cache plugins, CDN, and theme caching and minifying, a couple of times and check again.
    Please note that js files can be hard to clear even after a plugin is disabled, If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Block resize #1325545

    Hi,
    Thank you for your patience, the Dev Team has created a patch for this issue which will be included in the next update, if you would like to add this to your theme now please save a copy of your current \wp-content\themes\enfold\config-gutenberg\js\avia_blocks_front.js for backup and replace it with the file linked below. Then disable the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression option and enable the Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files option and clear your browser cache and any cache plugin, a couple of times, and check.

    Best regards,
    Mike

    in reply to: Blog posts links #1325541

    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: Blog posts links #1325485

    Hi,
    Thank you, I assume that you don’t want the underline, so please try this css instead:

    #top.single-post .entry-content a,
    #top.single-post .entry-content a strong {
    	    color: #316694;
    }

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

    Best regards,
    Mike

    in reply to: Background video options outside Color Section layout? #1325482

    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: Cannot get transparent header to work #1325479

    Hi,
    Please try this:

    @media only screen and (max-width: 767px) { 
    .responsive #top .logo,.responsive .logo img { 
    	width: 100%; 
    	margin: auto;
    }
    }

    Best regards,
    Mike

    in reply to: Blog posts links #1325421

    Hi,
    Please link to the page in your screenshot so I can see what should be changed.

    Best regards,
    Mike

    in reply to: Side in a Side or how to create dynamic contant #1325419

    Hi,
    Thank you for the link to your site, I believe that I understand but I was not sure if I could edit your page so I copied it to my testing site to create this example, please see the working example link below. Above you said you wanted to hide & show the color sections and their content so I started by duplicating your main color section and adding special headings One & Two so it would be clear which we are looking at:
    2021-10-18_008.jpg
    each color section has a custom ID “one” or “two” and the full-width sub-menu has a simple menu built in the sub-menu with two buttons and manual links with only a hastag:
    2021-10-18_009.jpg
    then to hide or show the color sections I added this script inside a code block element and the bottom of the page:
    2021-10-18_010.jpg

    <script>
    (function($) {
    	$('#one').show();
    	$('#two').hide();
    	$('#av-custom-submenu-1 .menu-item-top-level-1').on('click', function(e) {
    		e.preventDefault();
    		$('#one').show();
            $('#two').hide();
        });
        $('#av-custom-submenu-1 .menu-item-top-level-2').on('click', function(e) {
        	e.preventDefault();
            $('#two').show();
            $('#one').hide();
        });
    }(jQuery));
    </script>
    

    Please give this a try.

    Best regards,
    Mike

    in reply to: Mobile menu not working #1325414

    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: Blog posts links #1325413

    Hi,
    To have all single post links have a blue underline try this css in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top.single-post .entry-content a {
    	text-decoration: underline;
        text-decoration-color: #316694;
    }

    After applying the css, please clear your browser cache and check.
    2021-10-18_007.jpg

    Best regards,
    Mike

    in reply to: Mobile menu not working #1325402

    Hi,
    Thank you for your patience and for the login, I found in Enfold Theme Options ▸ General Layout ▸ Dimensions ▸ Responsive Site you had the Responsive Site option disabled, this needs to be enabled for the site to change to mobile mode for mobile devices, I enabled for you and now your mobile menu shows. Please clear your browser cache and check.
    2021-10-18_006.jpg

    Best regards,
    Mike

    in reply to: Sticky add to cart button on single product page #1325396

    Hi,
    Thank you for the login, you had an un-closed comment tag in your css, I corrected and now it’s working
    2021-10-18_003.jpg

    Best regards,
    Mike

    in reply to: Logos on scale #1325390

    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

Viewing 30 posts - 13,741 through 13,770 (of 34,910 total)