Forum Replies Created

Viewing 30 posts - 6,211 through 6,240 (of 34,721 total)
  • Author
    Posts
  • in reply to: Blog Post Using External Links #1414861

    Hi,
    Yes that is an option
    Enfold_Support_2712.jpeg

    Best regards,
    Mike

    in reply to: Mike , Cannot get my home page to resolve properly #1414860

    Hi,
    Glad to hear this one is sorted out, we will close it then.

    Best regards,
    Mike

    in reply to: Saved table keeps disappearing! URGENT #1414859

    Hi,
    Are you referring to the template item a new 2023 Miromar? When I check it works correctly and the tabe looks just like your /miromar-lakes/ page.
    Your /fort-myers-55-plus/ page was missing closing dvi tags, I fixed for you.

    Best regards,
    Mike

    in reply to: Blog Post Using External Links #1414855

    Hey steveorrmedia,
    Try using the a column element with a image element and text element under it for your excerpt,
    Enfold_Support_2708.jpeg
    then use the column link option to link to your other sites:
    Enfold_Support_2710.jpeg

    Best regards,
    Mike

    in reply to: Pagination with products problem #1414851

    Hey Antrikos,
    Thanks for the link to your page. The product grid and the blog posts both use the same pagination function, so using the pagination in one or the other effects both.
    The best solution is to not use these two on the same page.

    Best regards,
    Mike

    in reply to: Parallax Overlay #1414848

    Hey amanda-mdllc,
    The slider is a Revolution Slider, so you could install that slider, or create a similar one using the LayerSlider that is included with Enfold.

    Best regards,
    Mike

    in reply to: Too many 301 forwards to privacy page #1414845

    Hey Sebastian,
    Why do you think that the 301 redirects are caused by this cookie banner? The pages seem to product pages, is this correct?

    Best regards,
    Mike

    in reply to: Mike , Cannot get my home page to resolve properly #1414844

    Hey daves1997,
    Your page seems to be loading for me, please explain in further detail the issue you are experiencing.

    Best regards,
    Mike

    in reply to: alphabetical sorting of posts #1414843

    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: Table of contents disabled #1414842

    Hey alfredni,
    Unfortunately the AIOSEO Table of Content seems to available only as a WordPress Block Editor element, these elements are not the same as ALB elements and will not show in the Advanced Layout Builder (ALB).
    I looked at the AIOSEO Table of Content documentation to see if there is a shortcode for it, but I didn’t find one, you could try asking AIOSEO if there is one.

    Best regards,
    Mike

    Hi,
    I deleted the message, shall we close this then?

    Best regards,
    Mike

    in reply to: About social icon #1414832

    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: Image in top right corner of color block #1414831

    Hi,
    Glad Guenni007 could help, thank you Guenni007, shall we close this thread then?

    Best regards,
    Mike

    Hi,
    Please try to register for the support forum here, then after login and then create a new thread for any further questions.

    Best regards,
    Mike

    in reply to: About social icon #1414815

    Hey tulin88,
    To show the social icons in their colors always please remove the css above and add this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #wrap_all .social_bookmarks .social_bookmarks_facebook  a{color:#fff; background-color:#37589b; }
    #top #wrap_all .social_bookmarks .social_bookmarks_twitter   a{color:#fff; background-color:#46d4fe; }
    #top #wrap_all .social_bookmarks .social_bookmarks_linkedin  a{color:#fff; background-color:#419cca; }
    #top #wrap_all .social_bookmarks .social_bookmarks_youtube   a{color:#fff; background-color:#a72b1d; }
    #top #wrap_all .social_bookmarks .social_bookmarks_instagram a{color:#fff; background-color:#a67658; }

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

    Best regards,
    Mike

    Hi,
    Thanks for the login, in your theme seting you had the “webshop” set as the 404 page with “redirect” that adds the /?avia_forced_reroute=1 I changed your option to “without redirect”
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Enfold Section remove video completely from mobile #1414812

    Hey emilconsor,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_removesliderVideo_script() { ?>
      <script>
    const sliderVideo = document.querySelector("#top.home #youtube .avia-slideshow");
    const viewportWidth = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0)
    function removesliderVideo(width){
    	if(sliderVideo) {
        if(width <= 768){
            sliderVideo.parentNode.removeChild(sliderVideo);
        }
    	}
    return
    }
    removesliderVideo(viewportWidth);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_removesliderVideo_script');

    This will remove the slider element in the #youtube color section below 768px, this uses pure javascript so it should occur fast enough for the page speed test to not see the element in the DOM.

    Best regards,
    Mike

    Hey bb,
    Thanks for your patience, since you are using a plugin to display your custom post type grid, you will need to find out if the plugin supports pagination, when I check the plugin website it is in maintenance mode and I can’t find anything about the plugin, I recommend using the email form on the plugin web site and ask your question.
    Since you ar not using Enfold to create or display the post grid, there is not anyway for us to help since our support is limited the theme.

    Best regards,
    Mike

    Hi,
    Thanks for the login, you were right that the function I linked to was for blog posts instead of woo products, I adjusted the script so now the Yoast breadcrumbs show on the single product pages instead of the theme breadcrumbs:

    function add_yoast_breadcrumbs_shortcode_to_single_product_title_container() { ?>
      <script>
    (function($){	
    	var wpseo_breadcrumb = '<span id="breadcrumbs" class="breadcrumb"><?php echo do_shortcode("[wpseo_breadcrumb]"); ?></span>';
    	$('#top.single-product').each(function () {
    		$(wpseo_breadcrumb).appendTo('.title_container .container');
    		$(this).find('.avia-breadcrumbs').css('display','none');
    	});	
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'add_yoast_breadcrumbs_shortcode_to_single_product_title_container');

    unfortunately the breadcrumbs are not showing as you wish, try adjusting the Yoast breadcrumb options to show the order that you wanted.

    Also I found a javascript function in your child theme stylesheet that should be in your child theme functions.php so I moved it for you:
    Enfold_Support_2706.jpeg
    Best regards,
    Mike

    in reply to: Pagination #1414763

    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: Text for logo vertical placement #1414744

    Hi,
    Thanks for the feedback, your logo is 100% of the height and centered of the #header_main, as you can see in my screenshot above, and the menu is now centered on the logo.
    This would be the height of the #header but you have two empty divs in the header:
    #advanced_menu_toggle
    #advanced_menu_hide

    I don’t recognize these and don’t know their purpose, but I see that you have hidden them in your stylesheet:

    #advanced_menu_toggle, #advanced_menu_hide {
        visibility: hidden;
    }

    but with this css they still are a block element that have a height, so I recommend this css instead:

    #advanced_menu_toggle,#advanced_menu_hide {
    	display: none;
    }

    so that your logo and menu will be centered in your header.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Masonry showing pages from other categories #1414740

    Hi,
    Glad to hear that you have this sorted out, and please ask us to assist whenever you have a concern, we are happy to investigate. 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: Text for logo vertical placement #1414700

    Hi,
    Thanks for the login, I found that it was the menu that was not centered verticaly, so I added this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .av_main_nav_header.av_menu_right #header_main .main_menu-uber {
    	display: flex;
        align-items: center;
    }

    Please see the screenshot in the Private Content area of what I saw before the css, and clear your browser cache and check now.

    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: Pagination #1414695

    Hi,
    I don’t see the css added to your site, try adding it to your WordPress ▸ Customize ▸ Additional CSS

    #top .av-masonry-entry .av-inner-masonry-content {
        padding: 2px;
    }

    and clear your browser cache, or include an admin login so we can check.
    This is the result I see when I test:
    Enfold_Support_2701.jpeg

    Best regards,
    Mike

    in reply to: anchor link menu text color #1414694

    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: Split Menu and Burger Layout issue #1414662

    Hey jamesbarrell,
    Thank you for the link to your site, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (min-width: 780px) and (max-width: 1366px) {
    #header #header_main .main_menu {
    	width: unset;
        left: unset;
        transform: unset;
    }
    }

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

    Best regards,
    Mike

    in reply to: Making a widget content change and cannot save #1414660

    Hi,
    I assume it was a cache issue for you, but I found no issues and it worked on my first try, but I’m glad we could help, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    Hi,
    OK, we will wait to hear back from you.

    Best regards,
    Mike

    in reply to: Cannot save options. #1414658

    Hi,
    Thanks for the login, I see that you are using v5.4 that uses the Token.
    I tried setting your homepage in the theme options and found that you have “mixed content” errors because your
    WordPress ▸ Settings ▸ General ▸ Site Address
    WordPress ▸ Settings ▸ General ▸ WordPress Address

    are both using http instead of https
    Enfold_Support_2699.jpeg
    I tried to correct but now I’m getting the error ERR_TOO_MANY_REDIRECTS please try clearing your server cache and your browser cache and then check again. If you are using a CDN please clear that cache also.

    Best regards,
    Mike

Viewing 30 posts - 6,211 through 6,240 (of 34,721 total)