Forum Replies Created

Viewing 30 posts - 22,531 through 22,560 (of 66,046 total)
  • Author
    Posts
  • in reply to: Highlighting active parent menu item on subitem opening #1085762

    Hi,

    PARENT = also ALL. In other words, ALL and PARENT are identical.

    That is not the case for every installation. Some installations are not using sub or child categories from a single parent category, some are using multiple parent categories.

    if you have 2 different portfolio cats, each with subcats, and both have a subcat with the exact same name, say “sour fruits”,

    Yes, both categories will display regardless of their name. The sort script relies on the category slugs, not the actual category names, so the sorting will still work.

    Best regards,
    Ismael

    in reply to: Layout Builder and Events Manager Pro conflict #1085760

    Hey Antonio,

    Thank you for using Enfold.

    Are you referring to the event blocks? Those elements or blocks are not going to be usable on the advance layout builder. They are created and intended for the block editor. Unfortunately, the theme has no native configuration for the plugin and there are no event elements available in the builder, so you need to switch to the block editor if you need to manually control the layout of the page.

    Best regards,
    Ismael

    in reply to: Burger menu dropping 8th item and beyond #1085759

    Hi,

    Alright. We’ll keep the thread open in case anything comes up.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Great! Glad it’s working. Have a nice day.

    Best regards,
    Ismael

    in reply to: Menu – two things #1085756

    Hi,

    Thanks for the update.

    Try to set the initial opacity to 0 and then set it back to 1 on hover.

    .av-hamburger:hover strong {
       opacity: 1
    }
    

    If you want a little animation, use this css code.

    // https://www.w3schools.com/css/css3_animations.asp

    Best regards,
    Ismael

    in reply to: Header on site marked with "noindex" #1085755

    Hi!

    Sorry about that. The forum automatically converts the “woocommerce” string to links. We also corrected the function name. Please try it again.

    Best regards,
    Ismael

    in reply to: footer mobil phone #1085754

    Hi,

    Thanks for the update.

    The remaining white space or gap is created by this css code.

    .page-id-399 .avia-builder-el-6 {
        height: 400px !important;
        min-height: 400px !important;
    }

    You have to adjust height value.

    Best regards,
    Ismael

    in reply to: Mobile menu color #1085752

    Hi,

    You have to remove that code, not add it. And don’t forget to toggle the Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    in reply to: Exclude category in blog posts #1085751

    Hi,

    Thanks for the update.

    Is “home” the actual slug or name of your home/front page? Try is_home instead of is_page or use the actual name or id of your home page.

    Best regards,
    Ismael

    in reply to: WooCommerce 'Return to Cart' button to link to new page #1085749

    Hi,

    Awesome. Glad it’s fixed. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold 4.5.5 – Icon List Element Issue #1085748

    Hi!

    UPDATE: The solution in the following thread might help.

    // https://kriesi.at/support/topic/possible-css-rendering-bug-in-4-5-5/#post-1083761

    Regards,
    Ismael

    in reply to: Enfold 4.5.5 – Icon List Element Issue #1085743

    Hi,

    Thanks for the update.

    We’ll forward the issue to our developers. Please use the css code temporarily until the issue is fixed.

    Best regards,
    Ismael

    in reply to: Empty html tag #1085742

    Hi,

    Can you give us a direct link to the tool so that we can run the test? We can’t find it on the home page of the site.

    Best regards,
    Ismael

    in reply to: Main Menu Overlapping Page Content While Scrolling #1085741

    Hi,

    I see. Please remove the top padding and then use this css code instead.

    .avia-menu-text {
        top: 40%;
        position: relative;
    }

    The menu items’ position will be calculated based on the header height preventing them from going outside the header container.

    Best regards,
    Ismael

    in reply to: CSS file merging and compression breaking CSS-links #1085740

    Hi,

    Try to do a manual update of the theme for now.

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

    Best regards,
    Ismael

    in reply to: Parallax BUG nach Klicken auf Ankerpunkt-Navigation #1085738

    Hi,

    Thank you for understanding. We hope that we would be able help you properly next time.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Is that from a plugin? Looks like the plugin is using the same hook to render those add ons. Please ask the plugin authors for the exact hook and callback name so that we can remove them if necessary.

    Best regards,
    Ismael

    in reply to: Horizontal Mail chimp form #1085736

    Hi,

    You can’t use that particular css code because the html or structure of the theme’s mailchimp signup element is different from the embedded ones. You have to use the embed version of the form because that is where the css code is intended for. Would you mind providing a screenshot of the layout that you want to have? You can upload the screenshot to imgur or dropbox.

    Best regards,
    Ismael

    Hi,

    Sorry about that. We didn’t notice the listed pages. Anyway, we edited those pages and they seem to update properly without errors or redirects. How can we reproduce the issue? (see private field)

    Best regards,
    Ismael

    in reply to: PageSpeed cast #1085734

    Hi,

    Are you following the tool’s recommendations? Most of the recommendations are not directly related to the videos. Let’s try to tackle them one at a time.

    1-2.) Eliminate render-blocking resources & Defer unused CSS- Enable the theme’s Performance > File Compression settings to merge the scripts and stylesheets, allowing the site to render faster by combining the files into a single request.

    3.) Reduce server response times (TTFB) – Is the site running on a shared server or hosting plan? You may need to consider upgrading that plan or move to a faster server.

    4.) Minify CSS & Minify – The file compression should take care of this.

    5.) Avoid an excessive DOM size – This occurs when there’s a lot of content in the page than is necessary. You should consider removing some of the content in the home page and distributing them to other areas or pages in the site.

    There are other recommendations from the tool that you can take advantage of to improve the site speed. Unfortunately, this is beyond the scope of support. We recommend that you read the whole article or research more about site optimization.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Ismael

    in reply to: Issue with anchor ID and navigation overlapping content #1085727

    Hi,

    Thanks for the update.

    It seems to be an issue with the parallax container. The container is not resizing properly or as expected. We added the following script in the functions.php file to force the window to trigger a resize event until the page is fully loaded, leading the parallax container to resize correctly.

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	var int = window.setInterval(function(){
    		console.log('tick');
    		$(window).trigger('resize');
    		$(window).trigger('av-content-el-height-changed');
    	}, 1000);
    	
    	$(window).on('load', function() {
    		clearInterval(int);
    	});
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    Hi,


    @millertimesites
    : Did you set jQuery to load in the footer? This is the error in the console.

    (index):64 Uncaught ReferenceError: jQuery is not defined
    at (index):64

    Looks like an issue with html minification. Please disable the plugins temporarily.

    Best regards,
    Ismael

    Hi,

    Are you referring to the debug mode — the actual shortcodes below the builder? Did you happen to add this snippet before?

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/

    That snippet sets the builder to debug mode, allowing users to see the actual shortcodes.

    Best regards,
    Ismael

    in reply to: Burger menu dropping 8th item and beyond #1085451

    Hi,

    Thanks for the update. We hope that you had a good night sleep. Anyway, we found the culprit. It’s this css code added inside the Quick CSS field or the style.css file.

    #av-burger-menu-ul > li:nth-child(n+8) {
        display: none;
    }

    Please remove that code and then toggle the Performance > File Compression settings.

    Best regards,
    Ismael

    in reply to: Videos Break Ongoingly #1085446

    Hi,

    Have you tried disabling the “Remove HTTP” plugin? We can’t reproduce the issue on our end, so the problem in your installation is probably related to a plugin or a custom script. Let us know if disabling that plugin works.

    Best regards,
    Ismael

    in reply to: WC Mix and Match does not count #1085445

    Hi,

    Sorry about that. The theme doesn’t use that function in its template overrides and we don’t think it’s actually related to the issue unless you’re having problem with the cart. What is the template hook used by the plugin to render the mm products? You may need to ask that question from the plugin developers.

    Best regards,
    Ismael

    Hi,

    We are really not that familiar with server configs and we usually deal with users using standard or preconfigured hosting plans, not custom ones like yours, so we may not be able to help you with this one. Only thing we noticed that is worth noting is the PHP version. Have you tried enabling the WP debug mode?

    // https://codex.wordpress.org/Debugging_in_WordPress#WP_DEBUG_LOG

    Best regards,
    Ismael

    in reply to: set height of Fullscreen slider #1085302

    Hi,

    Thank you for using Enfold.

    This css code should limit the height of the slider.

    .home #full_slider_1 .avia-slideshow-inner {
        max-height: 75vh;
    }

    The height of the slider is going to be 75% of the browser or view port height.

    Best regards,
    Ismael

    in reply to: SMART SLIDER 3 #1085300

    Hi,

    That icon or symbol just represents the shortcode used by the sliders. If you’re using the smart slider, the shortcode can be added inside a text or code block and they’ll work the same. You can’t however edit the sliders directly from the advance layout builder. You will have to edit them in their own slider editor.

    Best regards,
    Ismael

    in reply to: Java script error #1085299

    Hey Aquanaut40,

    Thank you for using Enfold.

    We don’t see any javascript errors in the console. Which area or element of the site is not displaying properly? Please provide a screenshot using imgur or dropbox.

    Best regards,
    Ismael

Viewing 30 posts - 22,531 through 22,560 (of 66,046 total)