Forum Replies Created

Viewing 30 posts - 8,281 through 8,310 (of 67,453 total)
  • Author
    Posts
  • in reply to: Advanced Layerslider – Cannot Hide on Desktop #1406494

    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,
    Ismael

    Hey 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,
    Ismael

    in reply to: font color for a portfolio grid #1406407

    Hi,

    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,
    Ismael

    in reply to: Catalouge mobile view #1406406

    Hey 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,
    Ismael

    in reply to: Übersetzungsfehler / Translation mistake #1406405

    Hi!

    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,
    Ismael

    in reply to: Search results showing behind other elements #1406404

    Hi,

    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,
    Ismael

    in reply to: Enfold 5.6 #1406402

    Hi,

    [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,
    Ismael

    in reply to: Italian language #1406401

    Hi,

    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,
    Ismael

    in reply to: Token not working & enfold child theme not working #1406299

    Hi,

    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,
    Ismael

    in reply to: page without scrolling #1406298

    Hi,

    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,
    Ismael

    in reply to: Heater overlays Burger menu #1406297

    Hey 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,
    Ismael

    in reply to: Critical error after updating to Enfold 5.5 #1406296

    Hi,

    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,
    Ismael

    Hey 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,
    Ismael

    Hi,

    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,
    Ismael

    Hey 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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Search results showing behind other elements #1406144

    Hey 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,
    Ismael

    Hey 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,
    Ismael

    in reply to: How to add Icon to Special Heading Title? #1406141

    Hey 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.

    // https://github.com/KriesiMedia/enfold-library/blob/master/integration%20plugins/Enfold/Special%20Character%20Translation/avia-special-characters_1_1_1.zip

    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,
    Ismael

    in reply to: cannot make changes on my webside anymore #1406140

    Hey 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,
    Ismael

    in reply to: boxed layout but using content 1/1 full size #1406139

    Hi,

    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,
    Ismael

    in reply to: page without scrolling #1406137

    Hey 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,
    Ismael

    in reply to: Critical error after updating to Enfold 5.5 #1406136

    Hi,

    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,
    Ismael

    in reply to: Layout template #1406135

    Hi,

    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,
    Ismael

    Hey 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,
    Ismael

    in reply to: change widgets area for multi language site #1406133

    Hey 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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Search question #1405910

    Hey!

    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!
    Ismael

    Hi,

    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

    in reply to: disable sticky header for tablet landscape #1405908

    Hi,

    Great! Glad to know that the solution is working. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

Viewing 30 posts - 8,281 through 8,310 (of 67,453 total)