Forum Replies Created

Viewing 30 posts - 1,561 through 1,590 (of 34,546 total)
  • Author
    Posts
  • 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

    in reply to: Enfold #1467743

    Hi,
    I checked three of your posts and the frontend & backed (ALB) show correctly.

    Pride of Place – Thank You – Schools
    Kinvara Farmers Market – James Egg & Book Stall
    Kinvara Tidy Towns Website

    Please check, and possibly explain your issue further.

    Best regards,
    Mike

    in reply to: Enfold #1467687

    Hey Paddy O’dor,
    If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.
    Please note that using the contact form is not appropriate for support questions.
    If you don’t have a Theme Forest account and don’t have a theme license then you will need to purchase a license which will also give you 6 months of support on our forum to help with any issues.

    Best regards,
    Mike

    Hi,
    For the homepage try this css:

    #top.home #main #av_section_1 {
    	  margin-bottom: 50px;
    }

    Best regards,
    Mike

    in reply to: Category AND does not work in GRID LAYOUT mode #1467685

    Hi,
    OK, unfortunately I’m not able to reproduce, so I’m not sure what to make of your experience, but since you’re not going to use this we will close this thread. If you change your mind in the future, please open a new thread and include a admin login in the Private Content area so we can examine.
    Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Headline Rotator Not Working #1467625

    Hi,
    Sorry, I looked at the wrong shortcode. Your wpform shortcode was wrong, it should be

    [wpforms id="8721" title="false"]

    I fixed this on your homepage and now it works.

    Best regards,
    Mike

    in reply to: Headline Rotator Not Working #1467623

    Hi,
    When I check, it seems to be working:
    Screen Shot 2024 09 22 at 4.01.32 PM
    I also created a test page with the same shortcode and it is also working:
    Screen Shot 2024 09 22 at 4.03.04 PM

    Best regards,
    Mike

    in reply to: Headline Rotator Not Working #1467621

    Hi,
    Please try the “code block” element.

    Best regards,
    Mike

    in reply to: Woocommerce Cart Not clicking through to page in header #1467619

    Hi,
    When I check your site the cart seems to work for me:
    Screen Shot 2024 09 22 at 2.22.52 PM
    What browser do you see the error, is this only for a specific screen size?

    Best regards,
    Mike

    in reply to: Recommended Plugins #1467618

    Hi,
    Many users use Wordfence Security without any issues
    Blackhole for Bad Bots is also good.

    Best regards,
    Mike

    in reply to: responsive icon circle widget #1467617

    Hi,
    When I check your css above you have an error, a number “2” next to the “height”
    Screen Shot 2024 09 22 at 1.42.47 PM
    when I remove this and test on my site everything seems to work fine:
    desktop:
    120px
    Screen Shot 2024 09 22 at 1.45.47 PM
    laptop:
    80px
    Screen Shot 2024 09 22 at 1.47.30 PM
    mobile:
    50px
    Screen Shot 2024 09 22 at 1.49.04 PM
    Please check your css, if you have further trouble, try disabling your other custom css as you may have a conflict. If this doesn’t help then please put your site online and include a admin login in the Private Content area so we can examine

    Best regards,
    Mike

    in reply to: Category AND does not work in GRID LAYOUT mode #1467616

    Hey ibuzaev,
    Please note that when you use “AND” only posts with both categories will show, I tested this on my test show and found no errors.
    If you still have a issue, please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: prevent image large size duplicates #1467615

    Hi,
    I recommend leaving these last 4 sizes, they are needed.
    Removing them will force smaller devices to show the larger images, WordPress automatically shows the correct images.
    If you use Ismael’s filter these images will not take a lot of space.

    Best regards,
    Mike

    Hi,
    Thank you for the link to your site, currently I see screenshot 1 below.
    When I add Ismael’s css I see screenshot 2 below.

    body, #wrap_all, #main {
        background: transparent !important;
    }
    
    #footer {
        margin-top: 50px;
        background-color: white;
    }

    This looks like your example site, screenshot 3 below.
    If the screenshot looks correct but you are not seeing this, try clearing your browser cache following these steps for Safari and note step 4 where you will Clear the History.

    Best regards,
    Mike

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

    Hi,
    Thanks for your patience, when I check your site which is https, I see that your WordPress ▸ Settings ▸ General ▸ Site Address & WordPress ▸ Settings ▸ General ▸ WordPress Address are both http, so you are getting a mixed content error:

     Mixed Content: The page was loaded over HTTPS, but requested an insecure image. This request has been blocked; the content must be served over HTTPS.

    Screen Shot 2024 09 22 at 9.01.58 AM
    On your pages the image is loaded as https:
    Screen Shot 2024 09 22 at 9.03.50 AM
    So to correct, first change WordPress ▸ Settings ▸ General ▸ Site Address & WordPress ▸ Settings ▸ General ▸ WordPress Address to https:
    Screen Shot 2024 09 22 at 9.05.47 AM
    This should correct, if not try following this article to update the image URLs to https: How to Change Image URLs from HTTP to HTTPS in WordPress
    I recommend making a backup of your site before using the “Better Search Replace” WordPress plugin in the article.

    Best regards,
    Mike

Viewing 30 posts - 1,561 through 1,590 (of 34,546 total)