Forum Replies Created
-
AuthorPosts
-
Hey zimbo,
Thank you for the inquiry.
Instead of creating a new thumbnail, you can use the avf_modify_thumb_size filter to modify the size of existing thumbnails. This way, you will be able to select the desired thumbnail and make adjustments accordingly. For instance, to resize the “portfolio” thumbnail, you can add the following code:
add_filter( 'avf_modify_thumb_size', 'avf_modify_thumb_size_mod', 10, 1 ); function avf_modify_thumb_size_mod( $size ) { $size['portfolio'] = array('width'=> 600, 'height'=>450); return $size; }You may need to regenerate the thumbnails after adding the filter.
// https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelHi,
Thank you for the update.
Did you install a compression or cache plugin? Please disable the plugins temporarily, then toggle or temporarily disable the Enfold > Performance > File Compression settings to regenerate the scripts and stylesheets. Let us know if this helps.
Best regards,
IsmaelJuly 27, 2023 at 9:14 am in reply to: Wp Rocket broke my hamburger menu, tags and accordion #1414626Hi,
Thank you for the info.
The option “removed unused css” is enabled for the home page and the elements (accordion, mobile menu) are still working correctly. Please make sure to purge the cache before testing the page or switch to incognito mode.
Best regards,
IsmaelHi,
Thank you for the update.
An internal server error occurs whenever we try to send the contact form. Please try to temporarily disable the Enfold > Performance > File Compression settings to regenerate the scripts, then purge the cache. If the issue persists, please provide the login details in the private field.
Best regards,
IsmaelJuly 26, 2023 at 4:40 am in reply to: REcaptcha Error: Token to validate form already expired. #1414474Hey betaphase,
Thank you for the inquiry.
How did you insert the “checkboxHolder” container in the contact form? We may need to access the site in order to check the issue further. Please provide the login details in the private field.
Best regards,
IsmaelHi,
Thank you for sharing the clip.
In the short clip, it looks like you’ve disabled the Portfolio AJAX option, which is why the lightbox opens instead of displaying a preview of the portfolio item. However, when we checked the site, the AJAX option is enabled, and the featured images are no longer grouped in a lightbox, which is what you are trying to prevent. Is this solution enough?
Best regards,
IsmaelHey kbortis,
Thank you for the inquiry.
Do you get any errors when the reCAPTCHA option is enabled? Google reCAPTCHA is disabled when we checked the site above. Please create a test page with the reCAPTCHA option enabled so that we can check the issue further.
Best regards,
IsmaelJuly 26, 2023 at 3:52 am in reply to: Advanced Layerslider Button “Loads” forever when linking to Youtube #1414470Hey A,
Thank you for the inquiry.
The format of the youtube URL that you are currently using is not valid. You have to use the following format instead.
https://www.youtube.com/watch?v=G0k3kHtyoqcLet us know if this helps.
Best regards,
IsmaelHi,
Thank you for the inquiry.
or auto accept upon scrolling ?
This option is not available by default, but we can add a script to hide the consent bar on scroll and auto accept the cookies. Please add the following code in the functions.php file.
function ava_custom_script_c() { ?> <script> (function($) { $(window).scroll(function (event) { var scroll = $(window).scrollTop(); if(scroll > 1500) { $('.avia-cookie-consent-wrap').fadeOut( "slow", function() { console.log('consent bar hidden'); }); $('.avia-cookie-consent-button-1').trigger('click'); } }); }(jQuery)); </script> <?php } add_action('wp_footer', 'ava_custom_script_c', 9999);Best regards,
IsmaelHey enfold-nick,
Thank you for the inquiry.
You may need to upgrade to version 5.6.4 in order to fix the issue with the slider. After the upgrade, please make sure to temporarily disable the file compression, then purge the cache. Let us know if this helps.
Best regards,
IsmaelHey lfs360,
Thank you for the inquiry.
You can add the following css code to adjust the space between the header elements and reduce the size of the logo a bit. Adjust the values as necessary.
@media only screen and (max-width: 767px) { /* Add your Desktop Styles here */ .responsive .logo img, .responsive .logo svg { height: 70px !important; max-height: 70px; } .responsive #top #wrap_all .main_menu { height: 60px; } .responsive #top #menu-item-shop.cart_dropdown { line-height: 60px; margin-left: -60px; } .responsive.html_cart_at_menu #top .main_menu .menu>li:last-child { margin-right: 30px; } .responsive #top #wrap_all .main_menu { margin-top: -15px; right: -40px; } }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the modification.
Best regards,
IsmaelHey Advantage09,
Thank you for the inquiry.
The items in the list contain text, so this warning could potentially be a false positive. However, the texts are hidden by default, which could be the reason why the tool considered the items in the list as empty. You might be able to get rid of this warning by adding this css code.
#top .avia_hidden_link_text { display: block; opacity: 0; }Best regards,
IsmaelHey rnzrr,
Thank you for the inquiry.
Have you tried to temporarily disable SiteGround’s compression options? Doing so will regenerate the scripts and stylesheets, which should address the issues listed above. Additionally, you might need to temporarily disable the Enfold > Performance > File Compression settings and clear the cache afterwards.
Best regards,
IsmaelHi,
Glad to know that the changes are working. To remove the “white stripes” on mobile view, please include this code in the css media query.
.page-id-1208 #wrap_all .container { width: 100%; max-width: 100%; }Best regards,
IsmaelJuly 25, 2023 at 4:10 am in reply to: Wp Rocket broke my hamburger menu, tags and accordion #1414302Hi,
The mobile menu and accordion element seems to be working correctly when we rechecked the site. Did you disable the option again? Please provide the login details in the private field so that we toggle the option while checking the site.
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the update.
We tried logging in to the site, but the password for the user above is invalid. Please check the account details or provide another admin account.
To add your own custom menu, you have to modify the parameters of the wp_nav_menu function around line 214, or add your own custom menu wrapped in conditional functions for forum pages.
$args = array( 'theme_location' => $avia_theme_location, 'menu_id' => $avia_menu_class, 'menu_class' => 'menu av-main-nav', 'container_class' => $avia_menu_class.' av-main-nav-wrap'.$icon_beside, 'items_wrap' => ' <ul role="menu" class="%2$s" id="%1$s">%3$s</ul> ', 'fallback_cb' => 'avia_fallback_menu', 'echo' => false, 'walker' => new avia_responsive_mega_menu() ); $wp_main_nav = wp_nav_menu( $args );Please check the documentation below for more info.
// https://developer.wordpress.org/reference/functions/wp_nav_menu/
// https://codex.bbpress.org/bbpress-conditional-tags/Best regards,
IsmaelHey iishaq,
Thank you for the inquiry.
Did you insert an Image with Hotspots element anywhere in the site? Please try to upgrade the theme to version 5.6.4, reconfigure the element, then update the page. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings afterward.
Best regards,
IsmaelJuly 25, 2023 at 3:55 am in reply to: Masonry – tag “portrait” does not work in mulitlingual pages #1414298Hi,
For some reason, the temp password is not working on my end. Would you mind creating another login account instead of using a temp password?
Thank you for your patience.
Best regards,
IsmaelHey Susanne,
Thank you for the inquiry.
To adjust the sorting of the posts in the magazine element, you can add the following filter in the functions.php file.
/** adjust the magazine element query **/ function avf_magazine_entries_query_mod($query, $params) { $query['order'] = 'ASC'; $query['orderby'] = 'title'; return $query; } add_filter('avf_magazine_entries_query','avf_magazine_entries_query_mod', 10, 2);Please note that this filter will affect all magazine elements in the site. You may need to add conditions if you need to apply the changes to a specific element.
Best regards,
IsmaelHey steveorrmedia,
Thank you for the inquiry.
The Iconbox element does not have this option by default. However, you may achieve a similar effect by using the Content > Fold/Unfold option in the Text Block element. Simply add a Text Block element, set the Content > Fold/Unfold > Fold Behaviour settings to the second option and customize the options as needed.
Best regards,
IsmaelJuly 25, 2023 at 3:20 am in reply to: WPML language flags (ESP – ENG) are not visible in the header #1414295Hi,
Thank you for the update.
To enable the default language switcher, you can follow the instructions in the following documentation.
// https://wpml.org/documentation/getting-started-guide/language-setup/language-switcher-options/
Or go to the Enfold Theme Options ▸ Header ▸ Extra Elements ▸ Enfold WPML Language Flags (Global Setting) to enable the theme’s language flags as mentioned above.
If you want to add a custom language switcher, please check the link below.
Best regards,
IsmaelHey vantagepointmg,
Thank you for the inquiry.
The scripts and stylesheets listed above are already minimized and compressed. However, if you prefer to use a different compression plugin (such as Autoptimize, WP Rocket, WP Super Cache, etc.), you can disable this option by going to the Enfold > Performance > File Compression section of the theme options.
Best regards,
IsmaelHi,
Thank you for the update.
The portfolio items seem to be displaying as expected on our end. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur 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, Imgur 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,
IsmaelHey CharlieTh,
Thank you for the inquiry.
The current setup looks fine, but it might require some css adjustments. Please add the following css code to adjust the position of the last column containing the image.
#top .av-bs38t-ba24cd12277f26a24231226326f8c3e9 { position: absolute; right: 0; top: -100px; }Best regards,
IsmaelHey CharlieTh,
Thank you for the inquiry.
We are not able to reproduce the issue on our end. Would you mind providing a screenshot or a short clip of the issue? You can use platforms like Savvyify, Imgur 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, Imgur 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,
IsmaelHey acscreativenew,
Thank you for the inquiry.
The theme automatically limits the width of the section container to 85% when the screen width is less than 768px, causing the appearance of black bars. To override this behavior, you can use a custom CSS code.
@media only screen and (max-width: 989px) { /* Add your Desktop Styles here */ .responsive .page-id-23 #wrap_all #av_section_1 .container { width: 100%; max-width: 100%; } }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect.
Best regards,
IsmaelHi,
Have you removed the CSS code? If so, please add it back. Before checking the page on mobile view, ensure you purge the cache or clear the browser history. Additionally, consider viewing it in incognito mode to avoid any cached data.
Best regards,
IsmaelHi,
It appears to be functioning correctly on Firefox as well. Please refer to the screenshot below.
Screenshot: https://1drv.ms/i/s!AjjTfXSRbKTvgcNeB5S1Y7v_xduiTw?e=RmD5rs
Have you tried it on a different machine or computer?
Best regards,
IsmaelHi,
Thank you for the info.
Try to set the initial height of the link to zero, then set it back to default on focus.
.jsf-skip-link { opacity: 0; font-size: 0; height: 0; } .jsf-skip-link:focus { opacity: 1; font-size: inherit; height: 20px; }If that didn’t work, try to pull the body element 20px upwards initially then bring it back to default when the skip link has been focused.
.jsf-skip-link + body { margin-top: -20px; } .jsf-skip-link:focus + body { margin-top: 0; }Best regards,
IsmaelJuly 21, 2023 at 9:41 am in reply to: Masonry – tag “portrait” does not work in mulitlingual pages #1413921Hi,
Thank you for the info.
Where can we check the issue? Please provide the site URL and the login details in the private field. In the meantime, please try to add this code in the functions.php file and see if it helps.
add_filter('avf_ratio_check_by_tag_values', 'avf_ratio_check_by_tag_values_mod', 10, 1); function avf_ratio_check_by_tag_values_mod($tags) { $lang = pll_current_language(); if($lang == 'hu') $tags = array('portrait' => 'portrait', 'landscape' => 'landscape'); if($lang == 'en') $tags = array('portrait' => 'portrait', 'landscape' => 'landscape'); if($lang == 'de') $tags = array('portrait' => 'portrait', 'landscape' => 'landscape'); return $tags; }Best regards,
Ismael -
AuthorPosts
