Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
You may need to remove this conditional function:
if ( is_singular( ‘post’ ) ) {
or replace it with:
if ( is_page() ) {
Best regards,
IsmaelHey Zaccc,
Thank you for the inquiry.
You can add the numbers as images using the Image element or as text using the Special Heading element. The text below can be added using the Text or Code Block element. Another option is the Iconbox element, but you may need to upload the numbers as icons because they are not available by default on Fontello or Flaticon. Please check the documentation below for more info on how to upload your own font icons.
// https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
Best regards,
IsmaelHey amyncuih,
Thank you for the inquiry.
The dynamic_avia folder contains most of the files that are generated on-the-fly when you update posts, change the style options, or download video thumbnails, etc. If you want to decrease the number of files in the folder, you can start by enabling the Enfold > Performance > Delete Old CSS and JS Files? option. This option is located at the very bottom of the panel. You can also disable the generation of the posts css file by adding this filter in the functions.php file:
function avf_mod_post_css_create_file( $create ){ return false; } add_filter( 'avf_post_css_create_file', 'avf_mod_post_css_create_file', 10, 1 );
Another approach is to manually delete old or orphaned stylesheets and script files in the folder. These files are prefixed with names such as avia-footer-scripts, avia-gutenberg-dynamic-enfold, and avia-merged-styles. However, be sure to create a site backup before proceeding.
Best regards,
IsmaelHi,
Thank you for the update.
We checked a post in the “Aktuelles” category and noticed that it was built using the Advanced Layout Builder (ALB). Please be aware that the related posts section will not automatically display when ALB is active. You will need to manually insert a posts element, such as Blog Posts, Magazine, or Masonry, to show related posts, or you have to switch to the default editor.
Best regards,
IsmaelHey ampersart,
Thank you for the inquiry.
1.) To display a grid layout on the category or archive pages, set the Enfold > Blog Layout > Blog Layout settings to Grid Layout. By default, this setting displays 3 columns, but you can add the following filter to the functions.php file to reduce it to 2 columns.
add_filter("avf_post_slider_args", function($atts, $context) { if ($context == "archive") { $atts['type'] = 'grid'; $atts['columns'] = 2; } return $atts; }, 10, 2);
2.) You can set the Styling > Appearance > Preview Image Size settings to the second option to choose a different thumbnail size.
3.) The site is currently in maintenance mode, so we are unable to check the LayerSlider.
4.)The theme should be responsive by default. Just make sure that the Enfold > General Layout > Dimensions > Responsive Layout option is enabled.
In the future, we recommend opening a separate thread for each question or request, rather than grouping all questions in a single thread. This approach will make it easier for us to manage and will allow us to provide more immediate responses.
Best regards,
IsmaelHi,
Great! Glad to know that you managed to figure this out. Please let us know if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelAugust 6, 2024 at 6:38 am in reply to: Content wird im Frontend nicht ausgespielt / Content is not displayed in the fro #1463909Hey Alex,
Thank you for the inquiry.
The content of the home page seems to be displaying correctly 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,
IsmaelHi,
Thank you for the info.
We noticed that the theme on the site is quite outdated, at version 4.8.7.1. The latest version is now 6.0.2. Please update the theme to the latest version, add the following css code, and then temporarily disable the Enfold > Performance > File Compression settings. Let us know the result.
.body.woocommerce-checkout { max-width: 100vw; }
Best regards,
IsmaelHi,
Great! Glad to know that this has been resolved. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
Please note that the filter widgets will only display on the default product pages, such as the base shop page and the archive or category pages. The widgets will not display or work on custom pages built with the Advanced Layout Builder.
Related thread: https://kriesi.at/support/topic/woocommerce-filters-widget-not-showing-in-builder/#post-1442499
Best regards,
IsmaelHi,
Thank you for the info.
The issue doesn’t occur when we deactivate the “Speed Optimizer” plugin. It might be related to a plugin option that disables jQuery or changes its location because the script errors don’t occur when the plugin is disabled. Please review the plugin options or check with the plugin developers.
Best regards,
IsmaelHey Qgrafica_7,
Thank you for the inquiry.
You can manually sort the tags using the avf_toggle_sorted_tags filter. For example, if you have three tags: a, b, and c, you can use the filter as follows:
add_filter('avf_toggle_sorted_tags', function ($tags, $atts) { // default sorting // $tags = array( // 'a' => true, // 'b' => true, // 'c' => true, // ); $reorderedTags = array( 'c' => true, 'b' => true, 'a' => true, ); return $reorderedTags; }, 10, 2);
Best regards,
IsmaelHey Bernd,
Thank you for the inquiry.
Only posts that belong to the same category will be displayed in the related articles section. Have you tried applying categories to the posts?
Best regards,
IsmaelHey Mariarita,
Thank you for the inquiry.
1.) To create a megamenu, please go to the Appearance > Menus panel, add a new link, then toggle the “Use as a Mega Menu” option. Please check the link below for more info.
// https://kriesi.at/documentation/enfold/mega-menu/#how-to-use-the-mega-menu
2.) In order to lower the logo, add this css code:
.logo img, .logo svg { top: 20px; }
3.) And to remove the description from the menu, please edit the menu item in the Appearance > Menus panel, then look for the description field.
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 annevoelkel,
Thank you for the inquiry.
How do these pages relate to each other? If you just need to add custom links to the breadcrumb trail, please try adding this filter to the functions.php file.
function avia_breadcrumbs_trail_mod($trail) { global $post; if ( is_singular( 'post' ) ) { $end = $trail['trail_end']; unset($trail['trail_end']); unset($trail[2]); $trail[] = '<a href="' . home_url('/lander/') . '" title="Länder" rel="">Länder</a>'; $trail[] = '<a href="' . home_url('/lander/deutschland/') . '" title="Deutschland" rel="">Deutschland</a>'; $trail[] = '<a href="' . home_url('/lander/deutschland/munchen/') . '" title="München" rel="">München</a>'; $trail[] = $end; } return $trail; } add_filter('avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 1);
Best regards,
IsmaelHi,
Thank you for the update.
Looks like the post css file is not being generated for the other language. To fix this issue temporarily, please add this filter in the functions.php file:
function avf_mod_post_css_create_file( $create ){ return false; } add_filter( 'avf_post_css_create_file', 'avf_mod_post_css_create_file', 10, 1 );
Best regards,
IsmaelHey kerrya4446,
Thank you for the inquiry.
The latest version of the theme is now 6.0.2. Please download the theme package manually from your Themeforest account, then upload it to your server manually. For more info, check the documentation below.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
// https://kriesi.at/archives/the-complete-guide-to-updating-enfoldBest regards,
IsmaelHey ajlandi33,
Thank you for the inquiry.
Did you install a maintenance or “coming soon” plugin? Please try to temporarily deactivate this plugin, then let us know of the result.
Best regards,
IsmaelAugust 2, 2024 at 6:58 am in reply to: Contact Form Submissions Google Analytics & Google Tag Manager #1463595Hey ballindigital,
Thank you for the inquiry.
Did you create an analytics event or follow the steps in these threads?
// https://developers.google.com/tag-platform/tag-manager/datalayer#installation
// https://support.google.com/analytics/answer/12844695Please check this thread: https://kriesi.at/support/topic/google-ads-conversion-tracking-auf-kontaktformular/#post-1437202
Best regards,
IsmaelHey Qgrafica_7,
Thank you for the inquiry.
Instead of adding the image using css, you can directly create a Custom Link in the Appearance > Menus panel and add the img tag in the Link Text field.
<img src="http://site.com/link-to-image.jpg" />
You may need to control the size and style of the custom link with css.
Best regards,
IsmaelHey envisageiam,
Thank you for the inquiry.
Try to apply a unique ID to the grid row element containing the columns in the Advanced > Developer Settings > Custom ID Attribute field. Use “av-custom-grid-temp”, for example, then add this css code:
#av-custom-grid-temp .av_one_fifth .av_textblock_section { min-height: 100px; }
You may also need to upload images with the same size and aspect ratio, or apply a minimum height to the images as we did with the text blocks.
Best regards,
IsmaelHey pamk21,
Thank you for the inquiry.
To add a calendar icon beside the email, you can use the av_font_icon shortcode in the Enfold > Header > Extra Element > Phone Number Or Small Info Text field. Example:
[av_font_icon icon='ue85b' font='entypo-fontello' style='' caption='' size='14px' position='left' color='' link='' link_dynamic='' linktarget='' title_attr='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' animation='' id='' custom_class='' template_class='' element_template='' one_element_template='' av_uid='av-lzc7ui7m' sc_version='1.0' admin_preview_bg=''][/av_font_icon]
Best regards,
IsmaelHi,
No problem! Let us know if you have any more questions.
Have a nice day.
Best regards,
IsmaelAugust 2, 2024 at 6:36 am in reply to: updated to Enfold 6.0.1, do not show Avia Builder on page, menu,layer slider #1463590Hey archana,
Thank you for the opening a new thread.
The account above is not an admin, so we’re not able to check anything in the dashboard. Please set the user role to administrator or provide another admin account. In the meantime, please provide screenshots of the issue using platforms like Savvyify, Imgur, or Dropbox.
Best regards,
IsmaelHi,
Thank you for the update.
The home page is also set to use the same custom template. We set it back to the standard or default template. Please check all your pages and make sure that the Seite > Template settings are set to default.
Best regards,
IsmaelHi,
Please open a new thread here: https://kriesi.at/support/forum/enfold/#new-post
To make the submenu transparent, add this css code:
.header_color .main_menu ul ul, .header_color .main_menu ul ul li, .header_color .main_menu ul ul li a { background: transparent !important; border: 0 !important; box-shadow: none !important; }
Best regards,
IsmaelHey pete,
Thank you for the inquiry.
Did you extract the actual enfold.zip file from the downloaded package before uploading it to the site? Please provide a screenshot of the issue or error using platforms like Savvyify, Imgur or Dropbox. Or post the login details in the private field so that we can check the site properly.
Best regards,
IsmaelHey maryenvato,
Thank you for the inquiry.
If the privacy option is still enabled and you need the videos to load without user consent, you can set the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior settings to the first or second option. Let us know if this helps.
Best regards,
IsmaelHi,
Great! Glad to know that this has been resolved. Please feel free to open another if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelAugust 2, 2024 at 6:20 am in reply to: ADVANCED AVIA BUILDER NOT SHOWING ON NEW PAGE CREATION IN WORDPRESS #1463583Hi,
@danielswaim87: Good to know! Let us know in a different thread if you have more questions.Best regards,
Ismael -
AuthorPosts