Forum Replies Created
-
AuthorPosts
-
Hey bbertuzzi7,
Thank you for the inquiry.
We can only see a single layer slider in the test page. Did you remove the other one? Would you mind providing a screenshot of the issue? Please use imgur, savvyify or dropbox for the screenshot.
Best regards,
IsmaelMay 4, 2023 at 5:30 am in reply to: #main background color does not work when moving the design to domain #1406408Hey BenjaminSpeedtsberg,
Thank you for the inquiry.
The live site seems to be on maintenance mode, so we can’t access it. Please provide the login details in the private field and provide a screenshot of the issue using imgur, savvyify or dropbox.
Best regards,
IsmaelHi,
Thank you for the info.
You can add this css code to adjust the color of the blog post element in the “businessfotograf-hamburg” page.
.html_modern-blog .page-id-13565 #wrap_all .main_color .avia-content-slider1 .slide-entry-title, .html_modern-blog .page-id-13565 #wrap_all .main_color .avia-content-slider1 .slide-entry-excerpt, .html_modern-blog .page-id-13565 #wrap_all .main_color .avia-content-slider1 .slide-meta time, .html_modern-blog .page-id-13565 #wrap_all .main_color .avia-content-slider1 .more-link { color: #ffffff !important; }If you need to adjust the style of a specific element, you can apply a custom css class name or ID to it. Please check the documentation below for more info.
// https://kriesi.at/documentation/enfold/add-custom-css/
Best regards,
IsmaelHey Alan,
Thank you for the inquiry.
You can add this css code to create more space for the product price info on mobile view.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .av-catalogue-content { padding: 0; } }And to create more space between the product title and the price info, just insert this css code.
.av-catalogue-title-container .av-catalogue-title { margin-bottom: 10px; }Best regards,
IsmaelHi!
We will consider adding a patch in the next update. For now, you will have to make the suggested modification and add the filter in the functions.php file. Thank you for your patience.
Regards,
IsmaelHi,
Now how do I make the mobile site show two columns?
Glad to know that the modification is working. It looks like the live search bar overlay has been disabled, though. Please enable it back so that we can inspect the elements.
Best regards,
IsmaelHi,
[UPDATE] Solved by deactivate CSS merging and minification in Siteground Optimizer e activate it in Enfold..
Great! Glad to know that this has been resolved. Please do not hesitate to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
@newmediologo,
@jbond82: Are you using WPML? If so, you may need to reselect the default language in the WPML > Languages panel. Look for the Site Languages section and click the “Change default language” button. If this does not resolve the issue, please provide the login details in the private field so that we can investigate further.Best regards,
IsmaelHi,
Should I get rid of the Child theme and just use Enfold,
It is strongly recommended to use a child theme, just in case you need to modify template files for posts or any areas of the site. Even if you don’t think you’ll be making any modifications to the parent theme, it’s still a good idea to keep the child theme activated. This won’t have any negative impact on your site, and will safeguard against any changes being lost during updates to the parent theme.
Best regards,
IsmaelHi,
Thank you for the update.
For mobile view, please try to include this css code.
@media only screen and (min-width: 768px) { /* Add your Desktop Styles here */ html.responsive, .responsive body { overflow: hidden; } }We have disabled the Enfold > Performance > File Compression settings temporarily. You can re-enable it once you’re done with your changes.
Best regards,
IsmaelHey alliansohog,
Thank you for the inquiry.
Adding this css code should make the mobile menu text visible and place it to the right of the mobile menu icon.
#top .avia_hidden_link_text { display: block; position: absolute; top: 2px; left: 60px; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHi,
We’re not entirely sure why the gallery images are being duplicated, but in the meantime, you can use the following CSS code to hide the duplicates:
#top div .avia-gallery .big-prev-fake { display: none; }Please provide the S/FTP login details in the private field, and we’ll let you know as soon as we figure out what’s causing the issue.
Thank you for your patience.
Best regards,
IsmaelMay 3, 2023 at 5:12 am in reply to: Can´t import demo: App Demo throws error when clicking Download and Import #1406295Hey dantearrighi,
Thank you for the inquiry.
We noticed that the site contains an older version of the theme, 4.9. You may need to update the theme to version the latest version 5.6 before attempting to import the demo again. Let us know if this helps.
Best regards,
IsmaelHi,
Excellent! Glad to know that the issue has been resolved. If you have any more questions about the theme, please feel free to create another thread.
Have a nice day!
Best regards,
IsmaelMay 2, 2023 at 4:17 am in reply to: How to reduce the height of color section (av-section) ? #1406146Hey landhausaustria,
Thank you for the inquiry.
Have you tried decreasing the padding around the color section? You can adjust this in the Layout > Margin & Padding > Section Padding settings. Additionally, please keep in mind that the height of the color section will depend on the height and length of its content. Removing some of the content should also decrease the height of the section.
Best regards,
IsmaelMay 2, 2023 at 4:04 am in reply to: Change #main background-color separately for each color_section #1406145Hey BenjaminSpeedtsberg,
Thank you for the inquiry.
You are actually seeing the default background color of the main container. To change this, you have a couple of options:
1.) Disable the border radius in the bottom left and right corners of the color section. This will ensure that the color extends to the full width of the section without being cut off by the rounded corners.
2.) Apply a negative top and bottom margin to the color section to pull or push the element itself and the surrounding elements. This will conceal the main container’s background and allow the color to display as the background for the section.
You can try this css code.
#border-radius-top, #border-radius-full, #border-radius-bottom { z-index: 9999; position: relative; } #border-radius-top { border-radius: 80px 80px 0px 0px; margin-top: -80px; } #border-radius-full { border-radius: 80px; margin-bottom: -80px; margin-top: -80px; } #border-radius-bottom { border-radius: 0px 0px 80px 80px; margin-bottom: -80px; }You may need to adjust the space between the sections after adding the css code, using the horizontal/separator element or with a custom css.
Best regards,
IsmaelHey edgeofcinema,
Thank you for the inquiry.
You can add this css code to adjust the stack order of the column containing the search field and place it in front of the other columns.
.flex_column_table.av-6wpc-40111567c38aae6daa72a4fc72cec859 { z-index: 99999; position: relative; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
IsmaelMay 2, 2023 at 3:42 am in reply to: Overlap Columns for Homepage Banner – Mobile & Laptop Display Issues #1406143Hey Julio,
Thank you for the inquiry.
We adjusted the css code in the Quick CSS field a bit.
/* Overlap Columns - Homepage Banner (Desktop) */ #homepage-banner+#after_section_1.container_wrap { border-top-style: none; } #homepage-banner main.content { padding: 0; } #homepage-banner .entry-content-wrapper { display: flex; align-items: center; } #homepage-banner .green-box { left: -5vw; z-index: 1; } /* Overlap Columns - Homepage Banner (Mobile) */ @media only screen and (max-width: 767px) { #homepage-banner .entry-content-wrapper { flex-direction: column; } #homepage-banner .green-box { left: auto; z-index: 1; } .responsive #top #homepage-banner>.container { max-width: 100%; padding: 0; } #homepage-banner .avia-image-container .avia-image-container-inner img { width: 100%; right: auto; } }Please make sure to purge the cache and do a hard refresh before checking the page on mobile view.
Best regards,
IsmaelHey Julio,
Thank you for the inquiry.
Using the “>” symbol is not allowed by default because it could break the layout of the page, but you can still add the symbol using a placeholder and a custom plugin that is specifically created to translate the placeholders.
Please check the documentation below for more info about the plugin.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#using-special-characters
Best regards,
IsmaelHey rixi,
Thank you for the inquiry.
We may need to access the site in order to further check the issue. Please provide the login details in the private field. Did you install and activate a new plugin or script recently?
Best regards,
IsmaelHi,
Thank you for the info.
We set the Enfold > General Layout > Layout > Stretched Or Boxed Layout settings to the Boxed Layout. This should actually limit the width of the main body container based on the value of the Maximum Container Width.
Best regards,
IsmaelHey schweg33,
Thank you for the inquiry.
We can prevent scrolling for these pages, but please note that the bottom part of the content may be cut off on smaller screens. If this is not a concern, you can add the following CSS code:
.page-id-12438, .page-id-12020 { overflow: hidden; }After adding the CSS modification, please toggle or temporarily disable the Enfold > Performance > File Compression settings to ensure that the changes take effect.
Best regards,
IsmaelHi,
Understood. We will keep this thread open, and we encourage you to reach out if you encounter any further issues or have any additional questions. Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the update.
The suggestion above should work in this case. To add the same image to multiple pages for example, you can create a new post or page, insert the image or any other content using the builder, and then add it to your pages using the Page Content element. If you want to change the image later, you can simply edit the original post or page, and all instances of the Page Content element across the site will be updated.
Alternatively, you can use Content Element Templates (CETs) to create a builder element that can be modified globally. Please check the documentation below for more information about CETs:
// https://kriesi.at/documentation/enfold/custom-element-templates/”
Best regards,
IsmaelMay 2, 2023 at 2:52 am in reply to: move post date from post bottom to top after h1 post title #1406134Hey mischael1,
Thank you for the inquiry.
We may need to inspect the site in order to provide the proper modifications. Please provide the site URL in the private field.
To display the modified date, you have to edit the includes > loop-index.php file around line 447 and use the get_the_modified_date function.
$meta_time .= apply_filters( 'avf_loop_index_meta_time', get_the_time( get_option( 'date_format' ) ), $current_post['the_id'], get_option( 'date_format' ) );Please check the following thread for more info.
// https://kriesi.at/support/topic/enfold-latest-portfolio-widget-publish-time/#post-1302798
Best regards,
IsmaelHey papieren,
Thank you for the inquiry.
Which multi-language plugin are you using? If you are using WPML, the following documentation should help.
// https://wpml.org/documentation/getting-started-guide/translating-widgets/
You can also use a widget conditional plugin to control the visibility of the widget areas based on the active language. Please check the links below.
// https://wordpress.org/plugins/conditional-widgets/
// https://wordpress.org/plugins/widget-logic/
// https://jetpack.com/support/widget-visibility/Best regards,
IsmaelMay 2, 2023 at 2:28 am in reply to: Avia Layout Builder spinning as soon as I add a download button 2.0 #1406131Hey Lilolitaa,
Thank you for the inquiry.
We have been unable to reproduce the issue on our end. Could you confirm whether this issue is occurring on the Downloads page? (Please refer to the private field for more information.)
Best regards,
IsmaelHey!
Glad to know that you’ve found a solution. In case you require an alternative, please try this code in the functions.php file.
// custom script: disable link when AJAX search is open function ava_custom_script_search_disable_links() { ?> <script type="text/javascript"> (function($) { $('a').on('click', function(e) { var search = $('.avia-search-tooltip'); if(search && search.css('display') == 'block') { e.preventDefault(); return; } }); })(jQuery); </script> <?php } add_action( 'wp_footer', 'ava_custom_script_search_disable_links', 9999 );Cheers!
IsmaelApril 28, 2023 at 6:05 am in reply to: ‘Featured’ Images for Posts Not Full Width on Mobile Phone (Responsive) #1405909Hi,
Thank you for following up.
The issue returned because of this css code.
.big-preview.single-big { padding: 0 50px 10px 0; }Did you add some css modifications recently? To override the modification above, just add this css code.
#top .big-preview.single-big { padding: 0; }Best regards,
Ismael -
AuthorPosts
