Forum Replies Created

Viewing 30 posts - 1,861 through 1,890 (of 34,860 total)
  • Author
    Posts
  • Hi,
    I don’t think that I see this, please see the screenshot in the Private Content area below.

    Best regards,
    Mike

    Hi,
    When I check your page it looks correct, I don’t see that “the page remains completely white”

    Best regards,
    Mike

    in reply to: Trouble with Firefox and Safari #1468007

    Hi,
    Some browsers have a built-in AD blocker that also blocks the cookie banner, please check your browser setting. Typically if you can see your edits when you are logged in but not when you are logged out, this is due to your caching plugin, try clearing it or disable it completely. You may need to clear your webhost or CDN cache also.

    Best regards,
    Mike

    Hi,
    Glad that this helped, I created it for you. Unless you have any other questions, shall we close this thread?

    Best regards,
    Mike

    in reply to: About Enfold sidebar #1468000

    Hi,
    This page seems to built with the “block editor” and is a product page, typically the sidebar doesn’t show on product pages: https://tokoumbrella.com/23-inch-105-cm-o-shaped-bi-fold-automatic-black-umbrella/
    If a sidebar is added it will show under the product image, but you have no product elements showing, did you add the product info?
    Screen Shot 2024 09 28 at 6.18.28 AM
    This page has a sidebar area, perhaps you don’t have a widget assigned for the area: https://tokoumbrella.com/new-produts/
    Please include a admin login in the Private Content area so we can examine.

    Best regards,
    Mike

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

    .home .comment-entry {
    	display: none;
    }

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

    Best regards,
    Mike

    in reply to: Enfold demo on localhost #1467974

    Hi,
    Ok, since it’s your localhost we can not check, I have not experienced this with a localhost, but there are many different ones with many different settings so we would not be able to advice without access.
    Try creating a subdomain as a test site on your webhost and install the demo there.

    Best regards,
    Mike

    Hi,
    In your video the “Unternehmen” was the only item that would not open, when I check with the “delay JavaScript execution” disabled the “Unternehmen” still will not open.
    When I check the backend you have a empty column under this item, once removed it will then open on mobile with “delay JavaScript execution” enabled or disabled.
    I left this setting for you to check.
    I assume that you want the desktop mega menu for “Unternehmen” to show for desktop, so for this I would recommend creating a second menu to show on mobile menu only.
    See this thread.

    Best regards,
    Mike

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

    #menu-test-menu-with-logo {
    	margin-left: 0;
    }

    I believe this corrects:
    Enfold Support 6489

    Best regards,
    Mike

    in reply to: Enfold demo on localhost #1467966

    Hey dmansouri1981,
    Your localhost will need to download the online items, please ensure that it can, the demos are not a single file, they are multiple files online.
    Also ensure that your localhost has PHP ZipArchive Extension enabled so the files can be opened.
    Otherwise try creating a subdomain as a test site and install the demo there.

    Best regards,
    Mike

    in reply to: Change Blog – Latest News Title #1467965

    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,

    /jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js
    /jquery-migrate(.min)?.js
    /dynamic_avia/avia-footer-scripts-(.*).js
    var avia_is_mobile
    /enfold/js/avia.js
    /enfold/js/shortcodes.js
    /enfold/config-templatebuilder/avia-shortcodes/
    /enfold/js/avia-compat.js

    If you are also using the Wp Rocket REMOVE UNUSED CSS option you will also need to add this list to it:

    .main_menu
    .menu-item-avia-special
    .av-hamburger
    .av-hamburger-box
    .av-hamburger-inner
    .av-burger-overlay
    .av-burger-overlay-scroll
    .av-burger-overlay-inner
    .av-active-burger-items
    .av-burger-overlay-active
    .av-burger-overlay-active-delayed
    .av-hamburger--spin
    .av-js-hamburger
    .avia_hidden_link_text
    .av-burger-menu-main
    #av-burger-menu-ul
    #avia-menu
    .av-width-submenu 
    .av-active-burger-items
    .current_page_item 
    .current-menu-item
    .av-active-burger-items
    .avia-menu 
    .av-main-nav-wrap

    I’m not able to login to your site, I get an error that the user name is not valid, I also can not reproduce the error on your site.

    Best regards,
    Mike

    in reply to: Widget Area after Portfolio Content don’t work?! #1467961

    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: Using folded color-section with visible cursor #1467960

    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: Change Blog – Latest News Title #1467959

    Hi,
    Unfortunately I’m not able to login, I get an error that the user name is not valid.
    You misunderstand the function, where you edited it looks for Blog – Latest News and then changes it to the title of the post.
    The title of your post is Portuguese Pork and Garlic – Rick Rodgers, not recipies so recipies will not show.
    To show recipies try this instead:

    add_filter('avf_title_args', 'change_single_post_title', 10, 2);
    function change_single_post_title($args, $id) {
        if ( $args['title'] == 'Blog - Latest News' ) {
            $args['title'] = 'Recipes';
            $args['link'] = get_permalink($id);
            $args['heading'] = 'h1';
        }
        return $args;
    }

    Best regards,
    Mike

    in reply to: Widget Area after Portfolio Content don’t work?! #1467957

    Hi,
    Try this instead

    function enfold_widget_before_footer_for_single_portfolio() {
    if(is_singular('post') || is_singular('portfolio')){
    
    dynamic_sidebar( 'portfoliocontact' );
    }
    }
    add_action('ava_before_footer', 'enfold_widget_before_footer_for_single_portfolio' );

    Best regards,
    Mike

    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: Widget Area after Portfolio Content don’t work?! #1467947

    Hey Mike61,
    Your snippet is using the hook ava_after_content, so it will show after the content, if you want the widget to show before the header you will need to use ava_main_header
    Like this:

    function enfold_widget_before_header_for_single_portfolio() {
    if(is_singular('post') || is_singular('portfolio')){
    
    dynamic_sidebar( 'portfoliocontact' );
    }
    }
    add_action('ava_main_header', 'enfold_widget_before_header_for_single_portfolio' );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Change Blog – Latest News Title #1467939

    Hi,
    When I test this snippet on my test site it seems to work correctly:

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if ( $args['title'] == 'Blog - Latest News' )
    {
    $args['title'] = get_the_title($id);
    $args['link'] = get_permalink($id);
    $args['heading'] = 'h1';
    }
    
    return $args;
    }

    Please include an admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: navigation column width #1467937

    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: Using folded color-section with visible cursor #1467936

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

    #sec-schule01,#sec-zdf01,#sec-nix01,#sec-foo01 {
    	cursor: pointer;
    }

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

    Best regards,
    Mike

    Hi,
    I’m not able to login to your site, I get an error that the user name is not valid.
    Did you try the exceptions from the WP Rocket documentation? Then clear your site and browser cache.

    Best regards,
    Mike

    in reply to: Mobile Bildgröße Vollbildslider #1467887

    Hey verenaperkmann,
    The full screen slider will be full screen for any device size, if you want it smaller for mobile, please use a different slider for mobile, such as the easy slider and use a smaller image size, then add the second slider to the page and use the visibility options to only show one slider at a time.

    Best regards,
    Mike

    in reply to: Using folded color-section with visible cursor #1467886

    Hey Grobi,
    Thank you for the link to your site, when I test I see the cursor while moving over the closed & open color sections and after they are closed again, so I’m not sure when you are not seeing the cursor. Please explain further.

    Best regards,
    Mike

    in reply to: Mega Menu (1) #1467820

    Hi,
    Sorry I thought that you wrote that you wanted to not use the mega menu, to add a image to the mega menu see our documentation for Add Images to mega menu

    Best regards,
    Mike

    in reply to: Mega Menu (1) #1467752

    Hi,
    Please see this thread, or this thread.

    Best regards,
    Mike

    Hi,
    Thank you for the link to your site, I tried to review your video but it is no longer available, I checked your site and the mobile menu seems to work correctly, by clicking a menu item with two submenus, and direct menu items. But since you write that the WP Rocket options seem to cause the issue, I believe that you need to add exceptions to the plugin, it has a field for this script blocking conflict.
    Please see this WP Rocket documentation
    And possibly the Wp Rocket REMOVE UNUSED CSS option, with this list of classes
    If this doesn’t help, I see that there is an unsolved WP Rocket issue with Delay JS for mobile devices on IOS, if this is your issue you may need to disable this issue until WP Rocket corrects.

    Best regards,
    Mike

    in reply to: No responsive #1467746

    Hey Mariarita,
    To adjust the logo and remove the mobile menu borders try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    	.logo img, .logo svg {
        top: -1px;
    }
    .html_av-overlay-side-classic #top .av-burger-overlay li a {
        border-bottom-style: none;
    }
    }

    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.
    Unfortunately the mega menu will not show for mobile devices, as there is not enough room for it to show.

    Best regards,
    Mike

    in reply to: How to use ALB’s “custom layout” in single.php #1467745

    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: Enfold #1467744

    Hi,
    Sorry my error, I see that the ALB elements bar was not showing, you had Lock Advanced Layout Builder For Admins As Well enabled at Enfold Theme Options ▸ Layout Builder, I disabled it for you, now it shows.

    Best regards,
    Mike

Viewing 30 posts - 1,861 through 1,890 (of 34,860 total)