Forum Replies Created
-
AuthorPosts
-
October 4, 2025 at 2:40 pm in reply to: events calendar add to calendar dropdown getting cut off #1489855
Hi,
Glad that Ismael could help you on the path to sorting this out.Best regards,
MikeOctober 4, 2025 at 2:36 pm in reply to: WooCommerce – Entfernen der Dropdown-Sortierung auf der WooCommerce Shop-Seite #1489854October 4, 2025 at 2:29 pm in reply to: Top Color Section on home page, is just white space #1489853Hi,
This looks like a caching issue, when logged in the homepage hero image shows, and the theme css is served, when logged out the cache css is served: /wp-content/cache/wpfc-minified/q6rb0fb4/hwyv4.css without the css for the hero image.
Your test page is not cached by the plugin and serves the theme css when logged out, thus the image shows.
Your cache plugin is probably set to not show a cache to mobile devices, because the theme css is also showing, along with the image.Best regards,
MikeOctober 4, 2025 at 1:31 pm in reply to: WooCommerce – Entfernen der Dropdown-Sortierung auf der WooCommerce Shop-Seite #1489851Hi,
If you are looking to remove the shop sort-by & products per page drop downs:

add this function to your child theme functions.php file:function remove_avia_woocommerce_frontend_search_params() { remove_action( 'woocommerce_before_shop_loop', 'avia_woocommerce_frontend_search_params', 20 ); } add_action( 'wp_loaded', 'remove_avia_woocommerce_frontend_search_params' );Best regards,
MikeHi,
Your “example page” is set as the front page, and your front page is set as the “blog page”:

I adjusted your theme settings for you:

I also see that your front page also is:
Inactive Maintenance Mode Page
Inactive Custom 404 Page
Inactive Custom Footer Page:

I did not think that you want these messages, so I adjusted them.
Please clear your cache and check your site.Best regards,
MikeHi,
Try looking in your child theme functions.php file, I believe that you are using this custom script to add it.Best regards,
MikeOctober 2, 2025 at 8:45 pm in reply to: How to replace H3 with P (or span) in related articles titles #1489781October 2, 2025 at 11:15 am in reply to: How to replace H3 with P (or span) in related articles titles #1489752Hi,
@Guenni007 I also believe that carmentvaalba is using the post slider.
@carmentvaalba you may get an error if you add two filters with my_avf_customize_heading_settings, so try this for the masonry:function masonry_customize_heading_settings( array $args, $context, array $extra_args = array() ){ if( $context == 'avia_masonry' ){ $args['heading'] = 'h4'; } return $args; } add_filter( 'avf_customize_heading_settings', 'masonry_customize_heading_settings', 10, 3 );and this for the post slider:
function post_slider_customize_heading_settings( array $args, $context, array $extra_args = array() ) { if( $context == 'avia_post_slider' ) { $args['heading'] = 'h4'; } return $args; } add_filter( 'avf_customize_heading_settings', 'post_slider_customize_heading_settings', 10, 3 );and if you do ever need one for the content slider, you could try:
function content_slider_customize_heading_settings( array $args, $context, array $extra_args = array() ) { if( $context == 'avia_content_slider' ) { $args['heading'] = 'h4'; } return $args; } add_filter( 'avf_customize_heading_settings', 'content_slider_customize_heading_settings', 10, 3 );and for the icon box:
function icon_box_customize_heading_settings( array $args, $context, array $extra_args = array() ) { if( $context == 'avia_sc_icon_box' ) { $args['heading'] = 'h4'; } return $args; } add_filter( 'avf_customize_heading_settings', 'icon_box_customize_heading_settings', 10, 3 );Best regards,
MikeOctober 2, 2025 at 4:13 am in reply to: How to replace H3 with P (or span) in related articles titles #1489736Hey carmen,
Try this filter:function my_avf_customize_heading_settings( array $args, $context, array $extra_args = array() ) { if( $context == 'avia_post_slider' ) { $args['heading'] = 'h4'; } return $args; } add_filter( 'avf_customize_heading_settings', 'my_avf_customize_heading_settings', 10, 3 );Best regards,
MikeHey Diana,
Try this css:#top .social_bookmarks li { border-right-style: none; }After applying it please clear your browser cache and check.
Best regards,
MikeHey Tina,
Try this css:@media only screen and (max-width: 767.5px) { .responsive #top #header_main .logo img { height: 80px !important; max-height: 80px !important; } }After applying please clear your browser cache and check.
Best regards,
MikeHey jaimemerz,
For mobile, this css will make your buger menu white before scroll and black when the menu opens, then gray after scroll and gray when open. It will also show your white logo befor scroll, and the black one after scroll. It will also change the special heading line height so it is not behind the burger menu & logo.@media only screen and (max-width: 479px) { #top #wrap_all .av-special-heading.av-mayes0t2-0bf965b2b1bd5112e17bb591eb31930e .av-special-heading-tag { line-height: 35px; } #top .av_header_transparency .av-hamburger-inner,#top .av_header_transparency .av-hamburger-inner::before, #top .av_header_transparency .av-hamburger-inner::after { background-color: #fff !important; } #top .av_header_transparency .is-active .av-hamburger-inner,#top .av_header_transparency .is-active .av-hamburger-inner::before, #top .av_header_transparency .is-active .av-hamburger-inner::after { background-color: #000 !important; } .responsive.html_mobile_menu_tablet #top .av_header_transparency .logo img.alternate { display: block !important; } .responsive.html_mobile_menu_tablet #top .av_header_transparency.av_alternate_logo_active .logo a > img { opacity: 0 !important; } }After applying the css, clear your browser cache & check.
Best regards,
MikeHi,
Please note that the “av_textblock_section” is a section that wraps the “avia_textblock” div that holds the actual text content. Several other elements also wrap the content div in a section, I’m not sure what effect changing this text section into a div would have, but you could try this javascript in your child theme function.phpfunction custom_script() { ?> <script> document.addEventListener("DOMContentLoaded", function () { document.querySelectorAll('section.av_textblock_section').forEach(function (section) { const textblock = section.querySelector('.avia_textblock'); if (textblock && textblock.parentElement === section) { const newDiv = document.createElement('div'); for (let attr of section.attributes) { newDiv.setAttribute(attr.name, attr.value); } while (section.firstChild) { newDiv.appendChild(section.firstChild); } section.parentNode.replaceChild(newDiv, section); } }); }); </script> <?php } add_action( 'wp_footer', 'custom_script', 99 );If you would like to request this feature the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.
Best regards,
MikeHi,
Please note that your page is in maintenance mode so we can not see it without logging in, but based on the photography demo, the two buttons “view portfolio and get in touch” are in the slider:

To edit the button text, first click the slider in the backend to edit, and then click the slide to edit:

then go to the Advanced tab Link Settings and edit the Button Label:

Please note that while you have a valid license for the theme, which is for life, support on the forum is different, when you purchase the theme, you also get six months of support with your purchase code, but your support expired 2016-03-02 so for further support please try going to your Theme Forest account and renew your support and then register your new support purchase code and log in to the support forum and open a new thread. Please note that using the contact form is not appropriate for support questions.Best regards,
MikeHi,
The Read More tag will only work in the WP editor, not in the ALB, the ALB was intended for pages.
To add a slider to the top of a WP editor post, in the Block Editor, click on the “Classic” block above your post:

then click on the Shortcode Wand Tool to show the elements and choose the slider:

you will be prompted with the element builder, when you save you will see the shortcode:

Then save the post, on the frontend the slider will show below the featured image:

and on the blog page with the Blog Posts element:
Best regards,
MikeSeptember 27, 2025 at 12:40 pm in reply to: menu not linked child pages should be marked in the menu #1489613September 26, 2025 at 3:20 pm in reply to: Elements not loadng on page load – mobile devices #1489601Hi,
Glad to hear that you have isolated the behavior, we will leave this thread open until you let us know.Best regards,
MikeHi,
Yes, I used the mailchimp API in the theme settings under newsletter and then used the mailchimp element in the ALB.
In the mailchimp account I used the date field.Best regards,
MikeHi,
Thanks for shairing your site @dondela, it looks good, did you use Guenni007’s snippet, or is this the plugin out-of-the-box?Best regards,
MikeHey Valerie,
Try this CSS in your Enfold > Quick CSS:.inner_sidebar .widget_media_image { text-align: center; }After adding, clear your browser cache and check.
Best regards,
Mike -
AuthorPosts






