Forum Replies Created
-
AuthorPosts
-
Hi,
Thanks for your feedback, I see that you have limited the number of items to show to 16, so what happens is that the masonry gets the first 16 items based on date (newest) and shows them, the sort term links above the masonry only sorts based on the 16 items showing, so they are all 2022.
When you use the “Load More” button below the masonry (Cargar más) then more items are shown with older dates.
This is the intended behavior, perhaps you would want to show more than 16 items at a time?

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,
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 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,
Thank you for your patience, perhaps this solution will help in your case, you can try this by adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_offset_script() { ?> <script> (function($) { $('a[href*=#]:not([href=#])').click(function() { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); if (target.length) { $('html,body').animate({ scrollTop: target.offset().top - 125 //offsets for fixed header }, 1000); return false; } } }); //Executed on page load with URL containing an anchor tag. if($(location.href.split("#")[1])) { var target = $('#'+location.href.split("#")[1]); if (target.length) { $('html,body').animate({ scrollTop: target.offset().top - 125 //offset height of header here too. }, 1000); return false; } } }(jQuery)); </script> <?php } add_action('wp_footer', 'custom_offset_script');I tested this on your page by injecting the code in my browser and it seemed to work well, instead of trying to land on the anchor while the page is still loading and adjusting it’s height, this script waits for the page to load and then scrolls to the anchor.
Best regards,
MikeHi,
Thanks for the feedback, please try this css:@media only screen and (min-width: 1250px) and (max-width: 1450px) { #main > .container_wrap > .container.template-single-blog > .av-content-small.units { width: 73%; } }After applying the css, please clear your browser cache and check.
Please note that testing with Safari can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.Best regards,
MikeHi,
You can add these:remove_image_size('shop_thumbnail'); remove_image_size('shop_catalog'); remove_image_size('shop_single');but remove_image_size(‘shop_gallery_thumbnail’); is not correct, try:
remove_image_size('woocommerce_gallery_thumbnail'); remove_image_size('woocommerce_single'); remove_image_size('woocommerce_thumbnail');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 MarkvanderVeer,
Thank you for the link to your site but your homepage header looks the same as the /cijfers-en-trends/ page both have a transparent header and the logo is white before scroll and black after scroll, and after scroll the header menu text is black on both and the font looks the same. I also checked both in English.
Try clearing your browser cache and if you still see a difference please include screenshots so we can ensure we are looking at the same elements.Best regards,
MikeHey Mike,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:#main .main_color .avia-content-slider .slide-image { background: transparent; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey spacerocket,
The bundled LayerSlider is only updated with theme updates, you can purchase and use the standalone version if you wish. Please read more about this in our documentation.Best regards,
MikeHi,
Do you mean this in the sidebar?

What screen resolution do you see this at?Best regards,
MikeHi,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:#main .avia-widget-container.avia_auto_toc, #main .avia-widget-container.newsbox{ padding: 5px; border: 1px solid #f6971a; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Thank you for your question, your code looks correct and the Regenerate Thumbnails is still recommended, many basic plugins only need to be updated when the WordPress core changes for the specific function, which typically is seldom for this function.
The last number is the priority that it has.Best regards,
MikeHey StuWeTueHo,
Thank you for your question, I’m not sure if there is a nesting issue with adding the code block element to the “Text Block” shortcode wand options, as in your screenshot, but I have asked the team for feedback and will reply when I hear back. Thank you for your patienceBest regards,
MikeHi,
Thank you for the screencast, I would describe this as your page loading rather than a “flicker”, to reduce this I would recommend using a caching plugin, WP Fastest Cache typically works well.
Another option would be to activate the Enfold Theme Options > Page Preloading option.Best regards,
MikeHey interfacemedia,
Thank you for the link to your site and video, but I looks like the page in question was built with the page builder Elementor, Enfold has it’s own built-in page builder, the Advanced Layout Builder which can not be removed from the theme or replaced by another page builder, we do not support Elementor and do not expect all of it’s features to work correctly.
We recommend that you remove Elementor and use the Advanced Layout Builder.Best regards,
MikeHey Magdalena,
Thank you for your patience and the link to your site, I see that you have the masonry options set to show 10 items at a time with pagination and showing 3 categories, when I check page 3 I see 2021 items, page 5 shows 2020 items, and page 75 shows 2011 items. So this seems to be working correctly.
I also tested with only one category and it showed many different dates also.
Am I understanding correctly? Please check again.Best regards,
MikeMay 14, 2022 at 9:15 pm in reply to: Woocommerce webhooks stopped by Enfold – still not resolved #1351804Hey Silvio,
We see this is a duplicate thread, I have replied to your original thread, please check.Best regards,
MikeHi,
Thank you for your patience, to move the price and add to cart button below the tabs on a single product page I tested this function on my demo site:add_action('woocommerce_before_single_product', 'avia_woocommerce_new_hooks_mod'); function avia_woocommerce_new_hooks_mod() { remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10); add_action( 'woocommerce_after_single_product_summary', 'woocommerce_template_single_price', 2); remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30); add_action( 'woocommerce_after_single_product_summary', 'woocommerce_template_single_add_to_cart', 3); }this was the result:

I believe this is what you were asking for, I also tested this on your single product page with similar results, please see the screenshot in the Private Content area.
I didn’t leave this function in your child theme functions.php, so please add it and check.Best regards,
MikeHi,
Thanks for the link to your page, but the menu has changed to a burger style, if you would still like some help with the other menu please change back so we can be of more assistance.Best regards,
MikeHey sebzh22,
Thank you for your patience, I tried to find the page in question but couldn’t, please link to it so we can examine and try to assist.Best regards,
MikeHey Jens-abroad,
Thank you for your patience and for the login to your site, for the grid layout on your archive page and tag page I added this code to the end of your functions.php file in Appearance ▸ Editor:add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2); function avia_change_archive_blog_layout($layout, $context){ if($context == 'archive') $layout = 'blog-grid'; return $layout; } add_filter('avf_blog_style','avia_change_tag_blog_layout', 10, 2); function avia_change_tag_blog_layout($layout, $context){ if($context == 'tag') $layout = 'blog-grid'; return $layout; }so now the layout is grid with the images showing, but the css doesn’t match because the blog grid on your landing page is created by the plugin Gutenberg Blocks by Kadence Blocks
To have all of the grid styles match try building your landing page with the theme’s Advanced Layout Builder and use the blog element to show the posts.
Also, I recommend using a Child Theme and moving the functions.php code to the child theme so it will not be lost on your next theme update.Best regards,
MikeHi,
Thanks for your patience, the slider on the site that you are copying is the REVOLUTION SLIDER with a Contact Form 7 form, so you will need these for exactly the same design, as you posted above, but if you wish you could probably get very close to this with the built-in Layerslider. This is the css for the form, you will need to adjust the element classes for the contact form that you use on the new site as these are not default classes:.banner form { background: rgba(0,0,0,0.5); padding: 50px; border-radius: 0 } #top input[type="text"]-webkit-appearance:none;border:1px solid #e1e1e1;padding:8px 6px;outline:none;font:1em "HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;color:#777;margin:0;width:100%;display:block;margin-bottom:20px;background:#fff;border-radius:0px} .banner input { padding: 6px 12px !important; font-size: 14px !important; font-family: arial !important; border-color: rgb(225,225,225) !important; border-radius: 5px !important; margin-bottom: 0px !important } .banner form { background: rgba(0,0,0,0.5); padding: 50px; border-radius: 0 } .banner form { margin-bottom: 0px !important } .new-form p:last-child { margin: 0 !important } .banner textarea,.banner select,.banner input { padding: 6px 12px !important; font-size: 14px !important; font-family: arial !important; border-color: rgb(225,225,225) !important; border-radius: 5px !important; margin-bottom: 0px !important } .banner label { color: #000 !important; font-size: 16px !important } .banner textarea { height: 70px !important } @media only screen and (max-width: 425px) { .banner_slid .flex_column_table { margin:50px 0 !important } } @media only screen and (min-width: 1025px) { .banner_slid .ban_imag { display:none !important } } @media only screen and (max-width: 1100px) { .banner_slid { background-position:right center !important } }Best regards,
Mike -
AuthorPosts







