Forum Replies Created
-
AuthorPosts
-
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,
MikeHey 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,
MikeHey 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,
MikeHey 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,
MikeHey daves1997,
Your page seems to be loading for me, please explain in further detail the issue you are experiencing.Best regards,
MikeHi,
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,
MikeHey 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,
MikeJuly 29, 2023 at 6:48 pm in reply to: bought a new license for help but can't find the new license #1414840Hi,
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,
MikeHi,
Glad Guenni007 could help, thank you Guenni007, shall we close this thread then?Best regards,
MikeJuly 29, 2023 at 5:09 pm in reply to: bought a new license for help but can't find the new license #1414830Hi,
Please try to register for the support forum here, then after login and then create a new thread for any further questions.Best regards,
MikeHey 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,
MikeJuly 29, 2023 at 1:43 pm in reply to: bought a new license for help but can't find the new license #1414813Hi,
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,
MikeHey 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,
MikeJuly 29, 2023 at 12:43 pm in reply to: Pagination for Custom Post Type with Advanced Custom Fields #1414810Hey 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,
MikeJuly 28, 2023 at 6:06 pm in reply to: Breadcrumb is not showing the primary product category #1414766Hi,
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:
Best regards,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeJuly 27, 2023 at 5:27 pm in reply to: Problem with simple changes to text block causing unusual effects #1414696Hi,
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,
MikeHi,
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:
Best regards,
MikeHi,
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,
MikeHey 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,
MikeHi,
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,
MikeJuly 27, 2023 at 12:13 pm in reply to: Anchor link from header link to a Slider Revolution slider #1414659Hi,
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
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 -
AuthorPosts