Forum Replies Created
-
AuthorPosts
-
Hi,
Great! Glad to know this has been resolved. Let us know if you have more questions. Have a nice day.
Best regards,
IsmaelSeptember 30, 2025 at 7:08 am in reply to: Margins for masonry grid loading delay on mobile #1489675Hi,
Thank you for the update.
What happens when you add this script in the functions.php file?
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize() { if (!is_page(703)) { return; } ?> <script> (function($) { var resizeInterval = setInterval(function() { $(window).trigger('resize'); }, 1500); $(window).on('load', function() { clearInterval(resizeInterval); }); })(jQuery); </script> <?php }Please make sure to purge the cache before checking the page.
Best regards,
IsmaelSeptember 30, 2025 at 6:58 am in reply to: menu not linked child pages should be marked in the menu #1489674Hi,
Thank you for the login info.
Try using this css code to adjust the color of the line on initial load, then change it on scroll or when the header transparency is disabled.
.page-id-516 li#menu-item-508 .avia-menu-text::after, .page-id-536 li#menu-item-508 .avia-menu-text::after, .page-id-553 li#menu-item-508 .avia-menu-text::after, .page-id-555 li#menu-item-508 .avia-menu-text::after { background: #000000 !important; } .page-id-516 .av_header_transparency li#menu-item-508 .avia-menu-text::after, .page-id-536 .av_header_transparency li#menu-item-508 .avia-menu-text::after, .page-id-553 .av_header_transparency li#menu-item-508 .avia-menu-text::after, .page-id-555 .av_header_transparency li#menu-item-508 .avia-menu-text::after { background: #f8f8f8 !important; }Best regards,
IsmaelHi,
Glad we could be of help. Please let us know if you have more questions. Have a nice day.
Best regards,
IsmaelSeptember 30, 2025 at 6:40 am in reply to: Address 2 field leaves a blank on email order conformation #1489671Hi,
Please provide the admin account you’re currently logged in with. Make sure to place the information in the private field.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Unfortunately, videos in sliders or full-width sections are disabled on mobile devices by default, which is why a fallback image option is available. This fallback image will display on smaller screens in place of the video. If you really need to show the video on mobile view, try using the Layer Slider element. You can add a Video layer and set it as the background. Let us know the result.
Best regards,
IsmaelHey Jody,
Thank you for the inquiry.
The issue occurs because of the following defer filter in the functions.php file — we disabled it temporarily.
/** * Defer parsing of javascript. */ if (!(is_admin() )) { function defer_parsing_of_js ( $url ) { if ( FALSE === strpos( $url, '.js' ) ) return $url; if ( strpos( $url, 'jquery.js' ) ) return $url; // return "$url' defer "; return "$url' defer onload='"; } // add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 ); }Best regards,
IsmaelHey philippe gigon,
Thank you for the inquiry.
Unfortunately, you can’t use the Themeforest username and purchase code to create a login account for the site. You’ll need to contact the previous site administrator or developer to request the site credentials. Let us know if you need more info.
Best regards,
IsmaelHi,
Glad to know that this has been resolved. Please don’t hesitate to open another thread if you have more questions. Have a nice day.
Best regards,
IsmaelSeptember 30, 2025 at 6:04 am in reply to: Address 2 field leaves a blank on email order conformation #1489665Hi,
Thank you for the update.
We may need to log in to view the order details. Please provide the login details in the private field so we can check further.
Best regards,
IsmaelHey Diana,
Thank you for the inquiry.
We tried logging in, but the credentials above are incorrect. Please try adding this script to the functions.php file to adjust the scroll position on hash change.
add_action('wp_footer', function () { ?> <script> window.addEventListener('hashchange', function () { setTimeout(function () { const hash = window.location.hash; if (!hash) return; const target = document.querySelector(hash); if (!target) return; const elementPosition = target.getBoundingClientRect().top + window.pageYOffset; const offset = 100; window.scrollTo({ top: elementPosition - offset, behavior: 'smooth' }); }, 300); }); </script> <?php , 9999);Best regards,
IsmaelSeptember 29, 2025 at 6:51 am in reply to: Address 2 field leaves a blank on email order conformation #1489636Hi,
Is this information under the “Customer Details” heading? Please provide a screenshot or a test page so we can properly check the issue.
Best regards,
IsmaelHi,
Thank you for the update.
Looks like you have successfully removed the category from the sidebar filter. For the banner, you can duplicate the ava_custom_add_shipping_text_script function in your functions.php file and customize it for each category as needed.
function ava_custom_add_shipping_text_script_category() { if ( is_product_category( array( 'apparel', 'bong' ) ) ) { ?> <script> (function ($) { $(document).ready(function () { var newContainer = $('<div class="av-custom-shipping-container"><p>Free Shipping (USA) - Orders $35+<br><p><font size="6px">International Shipping Available - All Pieces Dab Compatible</font></p></div>'); $('#av_product_description .container').after(newContainer); }); }(jQuery)); </script> <?php } } add_action('wp_footer', 'ava_custom_add_shipping_text_script_category', 99);If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHey Gregory Beylerian,
Please continue here: https://kriesi.at/support/topic/to-purchase-support/
Best regards,
IsmaelHey Gregory Beylerian,
Thank you for the inquiry.
Try to add this css code to hide the default featured image.
.responsive .single .big-preview.single-big { display: none; }Let us know the result.
Best regards,
IsmaelHey Patrick,
Thank you for the inquiry.
Are you using the Color Section element? By default, its main wrapper is a <div> element, not a <section>. Please create a test page and provide the URL in the private field.
Best regards,
IsmaelSeptember 26, 2025 at 6:27 am in reply to: menu not linked child pages should be marked in the menu #1489586Hey walhai,
Thank you for the inquiry.
By default, the items should be organized in a hierarchy (parent-child menu items) so that the theme or WordPress can determine their relationships. If this is not the case, some customization may be required.
Would you mind providing a screenshot of the issue or a link to a test page so we can check? You can use platforms like Savvyify, ImgBB, PostImages or Dropbox to upload and share the screenshot. Here are the steps to follow:
1.) Visit the website of your chosen platform, such as Savvyify, ImgBB, PostImages or Dropbox.
2.) Locate the option to upload a file or an image.
3.) Select the screenshot file from your computer or device and upload it to the platform.
4.) After the upload is complete, you will be provided with a shareable link or an embed code.
5.) Copy the link or code and include it in your message or response to provide us with the screenshot.Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.
Best regards,
IsmaelHi,
The style.css files you’re seeing are the following:
— https://site.it/wp-content/themes/enfold/wp-blocks/src/textblock/style.css
— https://site.it/wp-content/themes/enfold-child/style.css
— https://site.it/wp-content/themes/enfold/style.cssHowever, the required cached style.css file from the child theme is not loading when the query parameters are not set, meaning the cache is active:
— https://site.it/wp-content/cache/min/1/wp-content/themes/enfold-child/style.css?ver=1756284923
In your screenshot, the search field looks correct because you’ve added a query parameter. This is definitely an issue with a caching mechanism on your server. We recommend reaching out to your hosting provider for further assistance and ask them if Kinsta Cache can be disabled.
Best regards,
IsmaelHey Antonio,
Thank you for the inquiry.
You can try setting the map’s height for different screen sizes using css media queries.
Example:
@media only screen and (max-width: 1366px) { /* Add your Mobile Styles here */ #top .av-2x5yv-2e4c878dbdd4546c1985e0573793e047 .av_gmaps_sc_main_wrap .avia-google-map-container { height: 700px !important; } } @media only screen and (max-width: 989px) { /* Add your Mobile Styles here */ #top .av-2x5yv-2e4c878dbdd4546c1985e0573793e047 .av_gmaps_sc_main_wrap .avia-google-map-container { height: 655px !important; } } @media only screen and (max-width: 480px) { /* Add your Mobile Styles here */ #top .av-2x5yv-2e4c878dbdd4546c1985e0573793e047 .av_gmaps_sc_main_wrap .avia-google-map-container { height: 455px !important; } }Best regards,
IsmaelHi,
We are only able to reproduce this issue when the screen width is around 782px, which is not a standard resolution for mobile devices, so it’s not something to be overly concerned about. If you’d still like to address it, consider reducing the font size of the button, then set the max-width to 100%.
@media only screen and (max-width: 989px) { .responsive #top #custom_html-2 button { font-size: 13px; word-break: keep-all; max-width: 100%; text-align: center; } }Best regards,
IsmaelHey!
We adjusted the css selector a bit. It should be working correctly now. Please make sure to purge the cache or remove browser history before checking.
Regards,
IsmaelHey koomo,
Thank you for the inquiry.
Try to add this css code to adjust the width of the mega menu container under the Destinations menu item:
@media only screen and (min-width: 768px) { /* Add your Desktop Styles here */ #top #wrap_all #menu-item-35451 .avia_mega_div > .sub-menu { width: 750px !important; } #top #wrap_all #menu-item-35451 .avia_mega_div { width: 750px !important; overflow: visible; max-width: 750px !important; } #top #wrap_all #menu-item-35451 .avia_mega_div > .sub-menu > li { width: 250px; } }Best regards,
IsmaelHi,
Add this css code to adjust the background color on smaller screens:
@media only screen and (max-width: 989px) { /* Add your Mobile Styles here */ .responsive #top .av-submenu-container { position: absolute !important; background-color: #4f5b33a3; } .responsive #top .socket_color .mobile_menu_toggle { color: #ffffff; background: transparent; border: 0; } .responsive #top .socket_color .mobile_menu_toggle:hover { color: #f3ab29; } }Best regards,
IsmaelHi,
Glad to know this has been resolved! Let us know if you have more questions. Have a nice day.
Best regards,
IsmaelHi,
Thanks for following up.
We are not seeing the alignment issue on our end, and the screenshot you posted is not loading for some reason. Please try using platforms like Savvyify, ImgBB, PostImages, or Dropbox to share the screenshot.
Best regards,
IsmaelHi,
Thank you for the update.
You can try setting the png image as the background of the scroll-down link:
#top .scroll-down-link.avia-svg-icon { background-image: url('image.png'); } #top .scroll-down-link.avia-svg-icon svg { display: none; }Let us know if you need more info.
Best regards,
Ismael -
AuthorPosts





