Forum Replies Created

Viewing 30 posts - 7,681 through 7,710 (of 67,463 total)
  • Author
    Posts
  • in reply to: Background video on color section not working properly? #1417124

    Hi,

    Thank you for the update.

    The issue occurs because of the custom css rule in the Quick CSS field, which we have temporarily disabled. This limits the height of the slider to 400px and affects the background video.

    .avia-slideshow-inner {
        height: 400px !important;
    }
    .avia-slideshow {
        max-height: 400px !important;
    } 
    

    Please make sure to purge the cache before testing the page again.

    Best regards,
    Ismael

    Hi,

    Thank you for the short clip.

    The issue seems to occur only when you scroll down without waiting for the site to finish loading. Improving the site’s loading speed could potentially resolve this issue. Please refer to the links below for more info on how to optimize the site’s loading speed.

    // https://gtmetrix.com/wordpress-optimization-guide.html
    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Ismael

    in reply to: ReCaptcha / Contact Form | Possible Fonts Issue #1417121

    Hey Lunaspace,

    Thank you for the inquiry.

    Have you recently enabled the cookie consent messages in Enfold > Privacy & Cookies? Users might need to accept cookies initially to access or activate services like Google fonts and reCAPTCHA. However, you can choose the first option for Default Cookie Behaviour settings to enable external services even without the users’ consent.

    Best regards,
    Ismael

    in reply to: Mega Menu only Vertical #1417120

    Hi,

    Thank you for the update.

    You will have to upgrade the theme manually via FTP because the automatic update will no longer work in the installed version. Please download the latest version from your Themeforest account and upload the files to your server via FTP as described in the following documentation.

    // // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: Image fit settings in a Grid section #1417119

    Hi,

    As mentioned earlier, you can use the css code above to adjust the size of the background image. Replacing the default property value “cover” with “contain” should decrease the size of the image. You can check for other property values in the following link.

    // https://www.w3schools.com/cssref/css3_pr_background-size.php

    Best regards,
    Ismael

    Hey wusatiuk,

    Thank you for the inquiry.

    You can use the “avf_ajax_search_query” filter instead of copying the whole function. Please add the following code in the functions.php file.

    if ( ! function_exists( 'avf_filter_ajax_search_results_woo' ) )
    {
    	add_filter('avf_ajax_search_query', 'avf_filter_ajax_search_results_woo', 10, 1);
    	function avf_filter_ajax_search_results_woo( $search_parameters )
    	{
    		$tax_query = array(
                         array(
                            'taxonomy'  => 'product_cat',
                            'field'     => 'term_id',
                            'terms'     => array(340),
                            'operator'  => 'NOT IN'
                        )
                    );
    		$defaults = array('numberposts' => 5, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false, $tax_query);
    		$_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);
    		$search_parameters = array_merge( $defaults, $_REQUEST );
    		return $search_parameters;
    	}
    
    }
    

    Best regards,
    Ismael

    in reply to: Mega Menu Not Working #1417116

    Hi,

    Alright! Please let us know if you have any further questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Shopping Cart Preview on mouse hover not working #1417115

    Hey NonSuch,

    Thank you for opening a new thread.

    The issue with the cart container has been resolved in the latest version (5.6.5) of the theme. However, we’ve just noticed that your site is currently running an older version (5.6.2). Please update the theme to the most recent version, toggle the file compression settings again, and then make sure to clear the cache afterward.

    Best regards,
    Ismael

    in reply to: Verschiedene Farben PC/Handy #1417114

    Hey janika7,

    Thank you for the inquiry.

    The colors or general styling of the site should remain consistent both on desktop and mobile view. The colors and other styling configurations can be adjusted in the Enfold > General Styling or Advanced Styling panel.

    Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    in reply to: Image Link Masonry Galery #1416926

    Hi,

    Great! Glad to know that this has been resolved. Please let us know if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Productpage #1416925

    Hey IrisDepasse,

    Thank you for the inquiry.

    1.) You can add this css code to correct the layout of the product grid on smaller screens.

    @media only screen and (max-width: 768px) {
    
      /* Add your Desktop Styles here */
      .responsive #top .products .product:nth-child(odd) {
        clear: none !important;
      }
    }
    

    2.) What is the aspect ratio of the product image? Most of the items in the grid have a featured image with an aspect ratio of 16:9.

    3.) The “no-products-found” container should not display if there are items in the archive page. Did modify or customize any of the product templates? You can add this css code to temporarily hide the “no-products-found” container.

    .post-type-archive .woocommerce-no-products-found {
       display: none;
    }

    Best regards,
    Ismael

    in reply to: Single Page Anchor Links without reloading the page #1416921

    Hi,

    We used absolute URLs and place another forward slash after the last path and before the hash. The format should be as described above.

    https://your.site/page/#anchor
    

    Best regards,
    Ismael

    in reply to: Social media icon in footer #1416920

    Hey Lene,

    Thank you for the inquiry.

    Are you referring to the following thread? Please make sure that the code from the previous thread is present in the functions.php file before using the [social-bookmarks] shortcode.

    // https://kriesi.at/support/topic/social-media-icons-in-footer-8/#post-1397572

    You can also display social icons in the footer by enabling the Social Icons option in the Enfold > Footer panel.

    Best regards,
    Ismael

    in reply to: Design is not showing anymore #1416919

    Hey wieckhorstpetra,

    Thank you for the inquiry.

    Since I received chatbot-messages every 10 minutes,

    What do you mean by “chatbot-messages”? We may need to access the site or see a screenshot in order to understand the issue better. Please use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    in reply to: Mega Menu only Vertical #1416917

    Hey Michael F,

    Thank you for the inquiry.

    We have noticed that the site is using a very outdated version (4.7.6.5) of the theme, which is probably why the mega menu is not displaying correctly. To fix the issue, please download the latest version (5.6.5) of the theme, then upload it to the site via FTP.

    For more info on how to update the theme via FTP, please check the documentation below.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: Shopping Cart Preview on hover does not work #1416916

    Hi,


    @NonSuch
    We may need to access the site in order to better understand the issue. Please open another thread and post the login details in the private field. In the meantime, try to disable the cache plugin and temporarily turn off the Enfold > Performance > File Compression settings to see if it has any positive effect.

    Best regards,
    Ismael

    in reply to: Background video on color section not working properly? #1416915

    Hi,

    Thank you for the update.

    We tried to access the site, but we were prevented from doing so by the security plugin. Did you block certain countries’ access to the site?

    Your access to this site has been limited by the site owner

    Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    in reply to: Preload fonts #1416914

    Hey zimbo,

    Thank you for the inquiry.

    Which element(s) are you applying the fonts to? You might need to modify the “font-display” property of those elements to “swap” to ensure that the text remains visible while the font sources are loading.

    // https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display

    Best regards,
    Ismael

    in reply to: Justify Text block – Change align defaut setting #1416832

    Hey Pierre-Marie,

    Thank you for the inquiry.

    There is no “justify” alignment option by default. This option has been removed from the WordPress text editor because different browsers render justified text differently, leading to unpredictable results.

    Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    in reply to: Image Link Masonry Galery #1416831

    Hey Diana,

    Thank you for the inquiry.

    We are not able to access the dashboard because a 503 Service Unavailable error occurs when we try to access the login page. Did you install a URL redirection plugin?

    Best regards,
    Ismael

    in reply to: Enfold theme #1416830

    Hey Monica,

    Thank you for the inquiry.

    The latest version of the theme is 5.6.5. Have you tried installing a security plugin such as Wordfence or WP Cerber to mitigate this kind of injections or attacks? It might be a good idea to engage with a developer who specializes in security to gain insights into the issue and strategies for future prevention.

    Best regards,
    Ismael

    in reply to: Add Links / URLs into Text Block #1416829

    Hi,

    Thank you for the update.

    Looks like the dashboard has been modified a bit, which might also be the reason why the text editor behaves a bit differently. Did you install a plugin to change the style and layout of the dashboard?

    Best regards,
    Ismael

    in reply to: Single Page Anchor Links without reloading the page #1416828

    Hi,

    Thank you for the update.

    We adjusted the link of the menu items a bit. The anchors should be working properly now. Please make sure to purge the cache before testing the page again.

    Best regards,
    Ismael

    Hi,

    Great! Glad to know that @Rikard was able to help. Please feel free to open another thread if you have further questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Special Heading – Horizonal Line Color #1416825

    Hey Celeranttechnologycorp,

    Thank you for the inquiry.

    You can manually adjust the colors of Special Heading element by going to the Styling tab. Set the Colors > Heading Color settings to Custom Color, then look for the Custom Seperator Line Color option to adjust the color of the horizontal line.

    Best regards,
    Ismael

    in reply to: filter option on a listing #1416824

    Hey JeSchami,

    Thank you for the inquiry.

    You may need to look for a plugin or a custom script because this kind of feature is not included in the theme by default. Please check the link below for a list of posts filter plugins.

    // https://wordpress.org/plugins/tags/post-filter/

    Best regards,
    Ismael

    in reply to: Videos and Images not showing up all of a sudden? #1416823

    Hey Christy,

    Thank you for the inquiry.

    You may need to adjust the Youtube URL to the following format.

    https://www.youtube.com/watch?v=R8O_Ky2SBJk
    

    Regarding the slider images, they may not be showing properly because of a script error which is possibly related to the “Agent Login” menu item. You may need to replace the URL with a shortened version.

    https://tinyurl.com/8jmxpk4t
    

    Best regards,
    Ismael

    Hey Christy,

    Thank you for the inquiry.

    Did you add any css modifications to the site? It’s possible that one of the modifications is conflicting with the default icon styles. To temporarily fix the issue, you can adjust the line-height property of the icons using the following css code.

    .av_font_icon.av-lll8d99i-2fca3d5f5ccdb6b019f5482b389e3830 .av-icon-char, .av_font_icon.av-lll8ixs5-35fea21e2373ecef7f31aeac373e8523 .av-icon-char, .av_font_icon.av-lll8hdip-cad2ff3195240eff995ec25abf357c9d .av-icon-char {
        line-height: 51px !important;
    }

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect.

    Best regards,
    Ismael

    in reply to: Can’t install demo files #1416821

    Hey AU5985,

    Thank you for the inquiry.

    You may need to import the demo manually using the xml files. Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo

    Best regards,
    Ismael

    in reply to: Masonry gallery is not visible #1416531

    Hi,

    Thank you for the update.

    The masonry items are now displaying on our end, but the issue still occurs randomly. To fix this intermittent issue and make sure that the items are always visible, we edited the script in the functions.php file a bit. However, the changes also disable the animation of the modified masonry element.

    This is the modified script in the functions.php file.

    
    add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script>
    (function($){   
    		$(document).ready(function() {
    			var masonry = $('.av-lkxoac3p-fdb26766bf677dcbcb91121eba03e5ce');
    			masonry.css('opacity', 0);
    			
    			var int = window.setInterval(function(){
                    $(window).trigger('resize debouncedresize');
    			}, 2000);
    
    			$(window).on('load', function () {     
    					setTimeout(function() {
    							clearInterval(int);
    					}, 500);
    			});
    			
    			if ($('body').hasClass('page-id-7579')) {
                   $(window).scroll(function(){
    					if(masonry.css('opacity') == 0) {
    						masonry.css('opacity', 1);
    						// masonry.find('.av-masonry-entry').css('opacity', 1);
    						// masonry.find('.av-masonry-entry').css('visibility', 'visible');
                                                    masonry.find('.av-masonry-entry').addClass('av-masonry-item-loaded');
    						$(window).trigger('resize debouncedresize');
    					}
    			  });
                }
    		});
    })(jQuery);
    </script>
    <?php
    }
    

    Please make sure to purge the cache or switch to incognito mode before checking the page.

    Best regards,
    Ismael

Viewing 30 posts - 7,681 through 7,710 (of 67,463 total)