Forum Replies Created
-
AuthorPosts
-
Hi,
Great! Glad it’s fixed. Let us know if you have more questions.
Have a nice day.
Best regards,
IsmaelHi,
Sorry for the confusion. I thought you’re working on an Accordion element. For the Tab Section element, please override the enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.js file, look for the get_init_open function and replace it with:
get_init_open = function() { var hash = window.location.hash ? window.location.hash : '', deepHash = hash.toLowerCase().replace('#', ''), open = null; if ('undefined' != typeof(deepLinksToTabs[deepHash]) && '' != deepLinksToTabs[deepHash]) { var hashID = deepLinksToTabs[deepHash]; open = tabs.filter('[data-av-tab-section-title="' + hashID + '"]'); } else { open = tabs.filter('[href="' + hash + '"]'); } if (open.length) { if (!open.is('.active_tab')) { open.trigger('click'); var tabOffset = open.offset().top; var currentScroll = $(window).scrollTop(); $(window).scrollTop(currentScroll); } } else { // set correct color container.find('.av-active-tab-title').trigger('click', true); } };
You will also have to replace the filter in the functions.php file:
function av_override_avia_scripts() { wp_dequeue_script('avia-module-tabsection'); wp_deregister_script('avia-module-tabsection'); $child_tab_section_js = get_stylesheet_directory_uri() . '/js/tab_section.js'; wp_enqueue_script( 'avia-module-tabsection', $child_tab_section_js, array('avia-shortcodes'), false, true ); } add_action('wp_enqueue_scripts', 'av_override_avia_scripts', 100);
Best regards,
IsmaelJanuary 31, 2025 at 7:06 am in reply to: Categories column, read more, and images of other blogs #1476058Hey MysticMimi,
Thank you for the inquiry.
The sidebar gets pushed to the bottom of the page because there is a Grid Row element in the builder. To prevent this, you should avoid using full-width elements like Sliders, Color Sections, Grid Rows, or Tab Sections, and stick to child elements like Columns.
We adjusted the Blog Posts element’s > Define Blog Grid Layout settings to display the “Read More” link. If you want to increase the number of posts, check the Styling > Pagination > Post Number settings.
For more info about the theme, please check the documentation: https://kriesi.at/documentation/enfold/quick-setup/
Best regards,
IsmaelHey!
Thank you for the inquiry.
As mentioned above, the code will look for the first Text Block in the page builder and save it as the post excerpt. I assumed your very first Text Block on the page will contain your most important content, but if that’s not the case, you will need to edit the page and adjust the position of the elements, making sure that the very first Text Block contains the content you want to retrieve.
Let us know if you need more info.
Cheers!
IsmaelHey nulrick,
Thank you for the inquiry.
You can add this code in the Enfold > General Styling > Quick CSS field to adjust the width of the masonry images.
.av-masonry-image-container img { margin: 0; width: 100%; }
Let us know the result.
Best regards,
IsmaelHi,
They did not translate the following word :
You have to add the translations in the Say What? plugin. Please check the link we provided above. We didn’t use the Loco Translate plugin because the translations are already there but are not applying for some reason.
Best regards,
IsmaelHey!
You may need to edit the posts and update them. The excerpt will not be visible in the Excerpt field, but it will be saved as post_excerpt in the database.
Best regards,
IsmaelHey finchkelsey,
Thank you for the inquiry.
We are not aware of any plugin that has this option, but you can try the following hook in the functions.php file. It retrieves the content of the first Text Block element on the page and sets it as the excerpt.
function av_set_excerpt_alb($post_id) { if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return; if (wp_is_post_revision($post_id)) return; $post = get_post($post_id); if (!$post || empty($post->post_content)) return; if (preg_match('/\[av_textblock.*?\](.*?)\[\/av_textblock\]/s', $post->post_content, $matches)) { $text_content = wp_strip_all_tags($matches[1]); $excerpt = wp_trim_words($text_content, 55, '...'); remove_action('save_post', 'av_set_excerpt_alb'); wp_update_post([ 'ID' => $post_id, 'post_excerpt' => $excerpt, ]); add_action('save_post', 'av_set_excerpt_alb'); } } add_action('save_post', 'av_set_excerpt_alb');
Best regards,
IsmaelHi,
No problem! Let us know if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
We installed the Say What? plugin and added a translation for the “Add to cart” button (Ajouter au panier). To add more translations, please check the link in the private field.
Best regards,
IsmaelHi,
Thank you for creating the staging site.
The related product images are displaying correctly when we checked. Did you disable the plugins or change anything in the staging site?
Best regards,
IsmaelJanuary 30, 2025 at 6:47 am in reply to: Issue with bottom of being cut off in Advanced Layerslider #1475997Hi,
Great! Glad to know the issue has been resolved. Let us know if you have more questions.
Have a nice day.
Best regards,
IsmaelHey Andreas Indicatii,
Thank you for the inquiry.
What is the current version of the theme, and where is the site hosted? You may need to update the theme manually via FTP this time. Please check this documentation for more info. https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelJanuary 30, 2025 at 6:37 am in reply to: Club website – inbox purchaser theme not accessible #1475994Hey Marieke Braamskamp,
Thank you for the inquiry.
If you don’t have access to the account that was used to purchase the theme, you will need to create another Themeforest account and purchase a new license. After that, download the latest version of the theme and upload it to the server manually via FTP. Please check this documentation for more info: https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Once the theme is updated to the latest version, you can generate a private token, which can be used to update the theme in the future: https://kriesi.at/documentation/enfold/theme-registration/
Let us know if you need more info.
Best regards,
IsmaelHi,
Thank you for the update.
Have you tried to temporarily disable the Enfold > Performance > File Compression settings? Make sure to purge the cache afterward. If it’s still not working, provide the login details in the private field so that can further check the issue.
Best regards,
IsmaelHi,
Thank you for the info.
Have you tried adjusting the Styling > Caption Title Font Size and Caption Content Font Size values for mobile view or smaller screens? Please check the screenshot below:
Best regards,
IsmaelHey Sudhir,
Thank you for the inquiry.
If you don’t have access to the account that was used to purchase the theme, you will need to create another account on Themeforest and purchase a new license. You can then download the latest version 6.0.9 and update the theme manually via FTP. Please check this link: https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Let us know if you need more info.
Best regards,
IsmaelHi,
Thank you for the info.
We reset the Settings > Reading panel to default, set the Enfold > Blog Layout > Blog Layout to the last option (Use the advance layout builder…), and adjusted the Blog Posts element’s Blog Style to Grid Layout. Please make sure to purge the cache before checking the page.
Best regards,
IsmaelHi,
@Guenni007: Could you provide a direct link to the folder? I can’t find it in the KriesiMedia/enfold-library.Best regards,
IsmaelHey Allen,
Thank you for the update.
There are no recent videos for the latest versions, but you can check this comprehensive tutorial to help you get started with the theme, including the Advanced Layout Builder: https://www.youtube.com/watch?v=Gr4GV8NKMek.
Again, you can check out the documentation and reach us in the forum if you need more info.
Best regards,
IsmaelHi,
Thank you for the update.
To fix the issue temporarily, we added this script using the Code Snippet plugin:
function ava_custom_translate_fold_unfold() { ?> <script type="text/javascript"> (function ($) { $(document).ready(function () { $('.avia-fold-unfold-section').each(function () { var $this = $(this); var data = $this.data('fold_unfold'); if (data) { var currentLang = '<?php echo apply_filters("wpml_current_language", NULL); ?>'; var translations = { 'nl': { 'more': 'Lees meer', 'less': 'Lees minder' }, 'en': { 'more': 'Read more', 'less': 'Read less' }, 'fr': { 'more': 'Lire plus', 'less': 'Lire moins' } }; if (translations[currentLang]) { data.more = translations[currentLang].more; data.less = translations[currentLang].less; $this.attr('data-fold_unfold', JSON.stringify(data)); } } }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_translate_fold_unfold', 9999);
Please make sure to purge the cache before checking the page.
Best regards,
IsmaelHi,
Thank you for the update.
We can’t be entirely sure what’s causing the issue. It could be a server configuration or a plugin conflict. Did you install a security plugin? Try disabling it temporarily, then update the theme. If that doesn’t work, you may need to proceed with the manual update. Let us know how it goes.
Best regards,
IsmaelHey jmoriart,
Thank you for the inquiry.
This is possible, but you will need to override the default toggle script. Add this code to the functions.php file:
function av_override_avia_scripts() { wp_dequeue_script('avia-module-toggles'); wp_deregister_script('avia-module-toggles'); $child_toggles_js = get_stylesheet_directory_uri() . '/js/toggles.js'; wp_enqueue_script( 'avia-module-toggles', $child_toggles_js, array('avia-shortcodes'), false, true ); } add_action('wp_enqueue_scripts', 'av_override_avia_scripts', 100);
After that, create a copy of the enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.js file and place it in the child theme > js folder. Edit the file, then remove all instances of the scroll_to_viewport function.
Let us know of the result.
Best regards,
IsmaelJanuary 29, 2025 at 4:42 am in reply to: Enfold and The Events Calendar with Event Tickets plugin #1475948Hi,
Thank you for the info.
The error is related to the PHP memory limit or WP_MEMORY_LIMIT. You may need to ask your hosting provider to increase the WP_MEMORY_LIMIT to at least 256M. For more info, please refer to this documentation: https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#increasing-memory-allocated-to-php
Best regards,
IsmaelJanuary 29, 2025 at 4:37 am in reply to: Masonry Filter not available after updating from v4 to v6 #1475947Hey amym99,
Thank you for the inquiry.
There is no element called av_masonry_entries_filter by default. It’s possible that this is a custom element created by the previous developer. Please contact the developer for more info.
Best regards,
IsmaelHey yifatcohen,
Thank you for the inquiry.
You can try the ava_after_main_menu hook or any template hooks available in the includes > a/enfold/includes/helper-main-menu.php file.
Please add this code in the functions.php file:
function av_healcode_script_after_menu() { ?> <script src="https://widgets.mindbodyonline.com/javascripts/healcode.js" type="text/javascript"></script> <healcode-widget data-version="0.2" data-link-class="loginRegister" data-site-id="123698" data-mb-site-id="5741852" data-bw-identity-site="false" data-type="account-link" data-inner-html="Login | Register"> </healcode-widget> <?php } add_action('ava_after_main_menu', 'av_healcode_script_after_menu');
Best regards,
IsmaelHey Allen,
Thank you for your interest in the theme.
Yes, the theme is updated. In fact, we’ve just released a new patch last week for version 6.0.9. If you want to learn more about the theme and how to get started, you can check out our documentation: https://kriesi.at/documentation/enfold/.
If you need more info, you can always reach out in the forum.
Best regards,
IsmaelJanuary 28, 2025 at 7:37 am in reply to: Breadcrumbs not linking to the Category listed on link (Error 404) #1475908Hi,
You have to manually adjust the Styling > Button Bar Style settings of the Social Buttons element. We set it to Circle to test. Please note that the Enfold Child Theme Options > Blog Layout > Share Button Bar Style settings are intended for the social sharing icons in the posts.
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,
Ismael -
AuthorPosts