Forum Replies Created
-
AuthorPosts
-
Hey northorie,
Thank you for the inquiry.
You can add mew buttons for cookie bar in the Enfold > Privacy & Cookies > Cookie Handling > Buttons section. Simply click the green plus icon (+) to add a new button.
Best regards,
IsmaelHey schweg33,
Thank you for the inquiry.
You can use this css code to adjust the height of the sub menu container and the menu items.
#top .av-submenu-container.av-5hgbq7-277231f29348cd34006a580016280e02, #top .av-submenu-container.av-5hgbq7-277231f29348cd34006a580016280e02 li { min-height: 2em; line-height: 2em; }Default min-height value is 52px.
Best regards,
IsmaelHi,
Thank you for the update.
was added after
with id ‘header_main’ and classes ‘container_wrap’ and ‘container_wrap_logo’.Try to replace the hook with “ava_main_header”.
add_action('ava_main_header', function() { echo "<div class='av-bottom-header'></div>"; }, 10);Best regards,
IsmaelMay 8, 2024 at 8:42 am in reply to: Fullscreen Slider: Different Button Position on Dekstop and mobile? #1442640Hi,
You can use this css code to move the button to the left:
.home #wrap_all .slideshow_inner_caption .avia-slideshow-button.avia-button { margin-right: 100px; }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.
Thank you for your understanding.
Best regards,
IsmaelHi,
Thank you for the inquiry.
You can adjust the style of the Cookie Consent Message Bar in the Enfold > Advanced Styling panel. Look for the elements under the Cookie Consent Bar section.
Best regards,
IsmaelHi,
Thank you for the update.
You can manually override the color of the timeline indicator with this css code:
.av-lvuuqm3x-450fca468668ba14ba421a03c92fd7a9 .av-milestone-date span:before, .av-lvuuqm3x-450fca468668ba14ba421a03c92fd7a9 .av-milestone-indicator { color: #d4af37 !important; border-color: #d4af37 !important; background-color: #d4af37 !important; }Best regards,
IsmaelHey!
Have you tried purging the cache or clearing the browser history? You should also try checking it in incognito mode. Let us know of the result.
Best regards,
IsmaelHi,
The arrows seem to be clickable on our end, but you can try using this css code to create more space below the testimonial slider.
#top .avia-slider-testimonials.avia-testimonial-wrapper .avia-testimonial .avia-testimonial_inner { padding-bottom: 50px; }Best regards,
IsmaelHi,
Thank you for the inquiry.
Are you trying to import the demo? Please try manually importing the demo using the XML files. Refer to the link below for more info:
// https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo
Best regards,
IsmaelHi,
Thank you for the inquiry.
The site seems to be rendering correctly on emulation. Which browser are you using on your Android phone? Please try using major browsers like Chrome or Firefox.
Best regards,
IsmaelHey peterolle,
Thank you for the inquiry.
Have you tried using the Custom Element Templates? They function similarly to builder elements but can be updated globally. Please refer to the documentation below for more info:
// https://kriesi.at/documentation/enfold/custom-element-templates/
Best regards,
IsmaelHi,
Thank you for the update.
i recently found is about pagination and “next” and “prev” rel for better SEO
We’ve found a thread related to this issue that might be helpful. Please check the links below:
// https://support.rankmath.com/ticket/canonical-url-setting-for-paginated-blog-pages/#post-729041
// https://support.rankmath.com/ticket/canonical-url-setting-for-paginated-blog-pages/#post-729924Best regards,
IsmaelHey peterolle,
Thank you for the inquiry.
The widget will only display if the following conditions are not true.
if ( ! is_shop() && ! is_product_taxonomy() ) { return; }The condition above restricts the display of the filters on the default shop page and the product category pages. The widgets will not display if the Advance Layout Builder is active or if the custom shop page is enabled.
Best regards,
IsmaelMay 7, 2024 at 3:36 am in reply to: Translate “Search” text in dropdown field in main header #1442498Hey Kauch_01,
Thank you for the inquiry.
To translate the placeholder text of the search bar, please add this filter to the functions.php file.
add_filter('avf_frontend_search_form_param', 'avf_frontend_search_form_param_mod', 10, 1 ); function avf_frontend_search_form_param_mod( array $params ) { $params['placeholder'] = __('Iskanje...','avia_framework'); return $params; }Best regards,
IsmaelHi,
Thank you for the screenshots.
For the search bar or AJAX search, please add this filter in the functions.php file:
add_filter('avf_ajax_search_query', 'avf_ajax_search_query_mod', 10, 1); function avf_ajax_search_query_mod( $search_parameters ) { $defaults = array('numberposts' => 5, 'post_type' => array( 'product' ), 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false); $_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']); $search_parameters = array_merge( $defaults, $_REQUEST ); return $search_parameters; }Best regards,
IsmaelHey andred57,
Thank you for the inquiry.
Did you adjust the Styling > Colors > Milestone Colors settings of the first item? Please check the color settings of the timeline items.
Best regards,
IsmaelHey maxcoppeta,
Thank you for the inquiry.
We found an error in the merged scripts, so we temporarily disabled the Performance > File Compression settings. This resolved the issue with the lightbox and the product information tab. Did you add any custom scripts?
Best regards,
IsmaelHey mirr,
Thank you for the inquiry.
Have you tried adjusting the top padding of the #footer container? Please try to add this css code:
#footer { padding-top: 100px; }If this modification did not work, please provide the site URL in the private field.
Best regards,
IsmaelHey jbcomcleaning23,
Thank you for the inquiry.
An error is being generated from the merged scripts. Please try to temporarily disable the Enfold > Performance > File Compression settings, then purge the cache. Let us know if this helps.
avia-footer-scripts-…663947cab5080.js:26 Uncaught SyntaxError: Unexpected string
Best regards,
IsmaelHi,
We also encountered this issue on another thread. Unfortunately, we’re not sure why the elements are getting moved outside when using a p tag. Please stick to using the div container for now.
Best regards,
IsmaelHey Bryan,
Thank you for the inquiry.
Please try to add the following script in the functions.php file. The script should resize the tab section after loading the masonry items.
function ava_custom_script_masonry_load_more() { ?> <script> (function ($) { function g() { $(window).on('debouncedresize', function() { if ($('.av-masonry-load-more').length) { $(window).trigger('resize'); } }); } $(document).ready(function () { g(); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script_masonry_load_more');Best regards,
IsmaelMay 6, 2024 at 6:53 am in reply to: CSS File Merging And Compression and Javascript File Merging And Compression #1442402Hi,
Glad to know that the issue has been resolved. To optimize page loading by only including elements that are actually used, you can adjust the Enfold > Performance > Disable Template Builder Elements > Disabling Of Template Builder Elements settings. If you have more questions, please don’t hesitate to open a new thread.
Have a nice day.
Best regards,
IsmaelHey peterolle,
Thank you for the inquiry.
You can add extra items to the default product tabs by using the woocommerce_product_tabs filter. Usage examples are available in the documentation below:
// https://woocommerce.com/document/editing-product-data-tabs/#section-5
In the woo_new_product_tab_content function, you can add custom fields, display another product, or insert custom content.
Best regards,
IsmaelHey webmonnik,
Thank you for the inquiry.
Is there an option to load the video immediately, so that it is visible right when the page opens?
This is not possible but you can control the background video of the color section by adjusting the options in the Styling > Background Color toggle. You can set it to black or #000000.
Best regards,
IsmaelHi,
Thank you for the video.
The video isn’t buffering or loading on our end. Please try uploading it to a file or video sharing site like Dropbox, YouTube, or Vimeo.
Are you certain you haven’t zoomed in or out on your browser? The mobile or burger menu icon should only display in the top header, not in the sidebar.
Best regards,
IsmaelHi,
Thank you for the info.
The site is not loading on our end for some reason. Did you install a security plugin? Please disable the security plugin temporarily, upgrade the theme to version 5.7, then temporarily disable the Enfold > Performance > File Compression settings. We’ll try to check the site again afterwards.
Best regards,
IsmaelMay 3, 2024 at 4:38 am in reply to: Video fallback image causing enormous performance issues on mobile devices. #1442030Hi,
Are any of your support folks in the Philippines?
Yes, I might have been checking the site that time. I tried to copy the content on a test page and chose a smaller version of the background image for the video, but it didn’t improve the LCP significantly. I found myself locked out of the dashboard after that. I will ask the rest of the team to check the issue.
Best regards,
IsmaelHey fanlokbun,
Thank you for the inquiry.
Yes, it’s possible, but there is no option for this by default, so you will have to specify the css modification manually. Add a custom css class name to the image element, such as “av-custom-image-shadow”, then add this css code.
.av-custom-image-shadow .avia_image { box-shadow: 10px 10px 10px 0; }Best regards,
Ismael -
AuthorPosts
