Forum Replies Created

Viewing 30 posts - 5,671 through 5,700 (of 67,463 total)
  • Author
    Posts
  • in reply to: Blog Layout does not include featured image #1437212

    Hi,

    Thank you for the info.

    We inserted a Blog Posts element onto the page and verified that no images are being displayed in the list. We then edited the posts and discovered that the posts listed in the grid don’t have featured images. Please check the links below and set the featured images.

    Best regards,
    Ismael

    in reply to: Category page do not showing the right categories #1437210

    Hi,

    We’ve forwarded the issue to our channel so that the rest of the team can check it. However, they are not able to determine the cause of the issue either. Did you import the posts from another database?

    Best regards,
    Ismael

    in reply to: Hidden menu and logo like desktio #1437207

    Hi,

    That is the default behavior in mobile view. The header will revert to its default state on smartphones. Unfortunately, we cannot re-enable it without directly editing the scripts.

    If it is crucial for you to have this functionality implemented, you have the option to hire a freelancer who can assist you with the customization. You can find freelancers who specialize in theme customization by visiting our customization page.

    If you have any other questions or require further assistance, please feel free to let us know.

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Portfolio Raster Font Too Big #1437206

    Hey MiaShia,

    Thank you for the inquiry.

    We encountered an error when we tried to access the site. The password for the specified username is incorrect.

    Fehler: Das eingegebene Passwort für die E-Mail-Adresse REDACTED@gmail.com ist nicht korrekt. Passwort vergessen?
    

    Please check the info provided or post an alternative account. In the meantime, please provide a screenshot of the element that you’d like to adjust.

    If you want to adjust the font size of the portfolio gird title, please use this css code.

    #top #wrap_all .all_colors h3.grid-entry-title {
        font-size: 30px;
        font-weight: normal;
    }
    

    Or edit the h3 element in the Enfold > Advanced Styling panel.

    Best regards,
    Ismael

    in reply to: Google Ads Conversion Tracking auf Kontaktformular #1437202

    Hey felixl,

    Thank you for the inquiry.

    You can add apply custom ID or class name to the Contact Form element and adjust your script accordingly in order to target the element.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-custom-classes-to-your-elements

    Example:

    Edit the contact form element, go to the Advanced > Developer Settings toggle, add “av-custom-analytics-form” in the Custom CSS Class field and “av-custom-analytics-form-id-1” in the Custom ID Attribute field, then adjust the script to target the element:

    <script>
    document.addEventListener('DOMContentLoaded', function() {
        var forms = document.querySelectorAll('.av-custom-analytics-form');
    
        forms.forEach(function(form) {
            form.addEventListener('submit', function(event) {
                event.preventDefault(); 
                
                var formId = form.getAttribute('id');
                var pageUrl = window.location.href;
    
                window.dataLayer = window.dataLayer || [];
                window.dataLayer.push({
                    'event': 'customFormSubmission',
                    'formId': formId,
                    'pageUrl': pageUrl
                });
                
                // form.submit();
            });
        });
    });
    </script>
    
    

    This should work as long as you’ve followed the installation properly: https://developers.google.com/tag-platform/tag-manager/datalayer#installation and created an event: https://support.google.com/analytics/answer/12844695

    Best regards,
    Ismael

    Hey Tim,

    Thank you for the inquiry.

    You can apply the box shadow to the button by editing the options in the Styling > Box Shadow toggle. You may need to scroll down a bit to see the toggle. Unfortunately, there is no automatic way to convert the content of the Advanced Layout Builder to the default editor. You’ll need to manually copy and paste the text from the builder to the default editor, and manually embed any images if the page contains them.

    Best regards,
    Ismael

    Hey Oriano,

    Thank you for the inquiry.

    Did you enable analytics by embedding the tracking script in the Enfold > Google Services > Google Analytics Tracking Code field? If you did, you can then enable the default options in the Privacy and Cookies settings to allow users to toggle the tracker cookies as they wish. You will only need to install third-party plugins if the analytics were embedded in other ways, such as through a third-party plugin or by directly embedding the tracking script in a template file.

    Best regards,
    Ismael

    in reply to: Minify kills PHP service #1437199

    Hey El,

    Thank you for the inquiry.

    Do you get error when the Enfold > Performance > File Compression settings are disabled? The error seems to be generated when the theme attempts to generate the dynamic css for posts.

    You can also add this code in the functions.php file to temporarily disable the dynamic css files for posts.

    /**
     * Filter to skip css file generation.
     * You can add logic to skip for certain pages/posts only.
     * 
     * @since 4.8.6.1
     * @param boolean $create
     * @return boolean					true | false or anything else to skip generation of css file
     */
    function custom_avf_post_css_create_file( $create )
    {
    	return false;
    }
    
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );

    Best regards,
    Ismael

    in reply to: Header and slider not responsive #1437197

    Hey maisonutopies,

    Thank you for the inquiry.

    If you need the background image of the header to be fully visible, you can add this css code:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .header_color .header_bg {
        background-size: contain;
      }
    }

    And if you want the background image to cover the header container, you can use the following css code but this will slightly distort the image.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .header_color .header_bg {
        background-size: 100% 100%;
      }
    }
    

    For the slider, you can try the Full Width Easy Slider if you need the slider image to be fully visible.

    Best regards,
    Ismael

    in reply to: Wrong color display of buttons after theme update #1437195

    Hi,

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

    in reply to: Text Box #1437193

    Hi,

    Thank you for the update.

    We tried to log in to the site, but the username provided above does not exist. Could you please provide the email address you used to register the account?

    Best regards,
    Ismael

    in reply to: Blog page questions #1437192

    Hi,

    Thank you for the update.

    You can actually use the Advanced Layout Builder to edit the content of the Blog page. However, before doing so, you need to set the Enfold > Blog Layout > Blog Layout to the last option (Use the Advanced Layout Builder…). And in case you need to adjust the style of the category or archives pages, please check this documentation.

    // https://kriesi.at/documentation/enfold/blog-post/#change-archive-categorytag-blog-style

    Best regards,
    Ismael

    in reply to: Updating Enfold #1437191

    Hi,

    Thank you for your patience! Please let us know in a different thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: How can I do “anchor link”? #1437190

    Hi,

    Thank you for the update.

    We may need to inspect the site to properly check the issue. Have you added an element with an ID corresponding to the anchor link or button? If you have a Color Section, you can apply the ID in the Advanced > Developer Settings > Custom ID Attribute field. Once the slider button is clicked, the page should scroll to this section or element.

    Best regards,
    Ismael

    in reply to: styles and items have gone a few days ago… #1437189

    Hi,

    Thank you for the update.

    The container inside the color section is not animating as expected, so the content stays hidden because of this css code.

    .js_active .av-minimum-height .container {
        z-index: 1;
        opacity: 0;
        transition: opacity 0.6s ease-in;
    }

    This might be due to this script error generated by the “duracelltomi-google-tag-manager” plugin.

    nalytics-talk-content-tracking.js?ver=1.20:1 Uncaught TypeError: Cannot read properties of null (reading 'scrollTop')
        at n (analytics-talk-content-tracking.js?ver=1.20:1:593)
    

    Please contact the plugin author for more info about the script error.

    Best regards,
    Ismael

    in reply to: Blog Styling has changed from last post to current one #1437188

    Hey A-Wise,

    Thank you for the inquiry.

    Looks like you’re using the Advanced Layout Builder for the new post, while the older post is made using the default editor. Have you tried switching to the default editor?

    Best regards,
    Ismael

    Hey Tanja,

    Thank you for the inquiry.

    You can adjust the hover color of the links in the Enfold > General Styling > Main Content tab. Look for the Highlight Color field and adjust the value.

    Best regards,
    Ismael

    in reply to: Change caption font color #1437186

    Hi,

    No problem! Please let us know if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Deactivate from date for contributions #1437022

    Hey Lin84,

    Thank you for the inquiry.

    Which blog layout did you select? Did you toggle the Blog Post Date in the Enfold > Blog Layout > Blog Meta Elements section? If you’re using the Grid Layout, please try this css code:

    .responsive #top.archive .slide-meta time, .responsive #top.archive .slide-meta time  + .slide-meta-del {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Header #1437018

    Hi,

    Thank you for the update.

    Are you referring to the first section on every page? You can replicate this layout by adding a Color Section element at the very top of the pages and applying a different background image for each page. Please check the documentation below for more info:

    // https://kriesi.at/documentation/enfold/color-section/

    Best regards,
    Ismael

    in reply to: Horizontal 4 Column View On Mobile #1437015

    Hey kristiankeegan,

    Thank you for the inquiry.

    You can replace the columns with a content slider on mobile view by toggling the visibility of the elements on different screen sizes. You can find these options in the elements’ Advanced > Responsive > Element Visibility section. So you’ll have the columns on desktop view and the content slider for smaller screens.

    Best regards,
    Ismael

    Hey Bruno,

    Thank you for the inquiry.

    We may need to reset the database before attempting to import the demo. Would that be alright? Have you tried importing the XML files?

    // https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo

    Best regards,
    Ismael

    in reply to: Demo Installation #1437012

    Hey hector1069,

    Thank you for the inquiry.

    The site already has content and installed plugins when we checked. Is it alright if we reset the database and remove the existing content? We have to do this before manually importing the demo.

    If you want to try it yourself, please check this documentation: https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo

    Best regards,
    Ismael

    in reply to: how add to enfold theme #1437011

    Hi,

    Thank you for the update.

    That will probably break the site because the closing tags for the elements are already included in template files. Why do you have to add the closing tags?

    Best regards,
    Ismael

    in reply to: ALL subpages are just a white page and text/blue links #1437010

    Hi!

    Thank you for the inquiry.

    The subpages seem to be rendering correctly on our end (screenshot in the private field). 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.

    Cheers!
    Ismael

    in reply to: Dropdown alignment #1436927

    Hi,

    Thank you for the update.

    You can use this css code to adjust the style of the button.

    #top .hr.hr-invisible.av-2d6n9il-41fb061c500273b2b0ba4e2d011be596 + .avia_codeblock_section .avia_codeblock .dropdown {
        display: flex;
        min-height: 48px;
        justify-content: center;
    }
    
    #top .hr.hr-invisible.av-2d6n9il-41fb061c500273b2b0ba4e2d011be596 + .avia_codeblock_section .avia_codeblock .dropdown .avia_button_icon {
        padding-left: 0;
        margin-right: 10px;
    }

    If you want to target the text block element directly, try to apply a unique css class name to it. Please check the link below for more info:

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We tried to login to the site but the account above doesn’t exist. Please check the info carefully or provide another admin account.

    Best regards,
    Ismael

    Hi,

    You can add this css code to adjust the width of the color section container on mobile view.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #section-container-width .container {
        width: 80% !important;
        min-width: 80% !important;
      }
    }

    You may need to adjust the styles of the following elements on mobile view. Instead of adding the styles inline, assign a unique class name to the < span > tag and define the css rules separately. This should allow you to adjust the style of the element for different screen sizes.

    <span style="color: #ffffff; font-size: 34px; font-weight: 600; padding-left: 20%;">Online translation services</span>
    

    Best regards,
    Ismael

    in reply to: Maintenance mode cannot be switched off #1436924

    Hey igaade,

    Thank you for the inquiry.

    Have you tried purging the cache? You should also check if the Maintenance Mode option is disabled in the Enfold > Theme Options panel. Please provide the site URL in the private field so that we can check the site further.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Where can we check the issue? Please post the site URL in the private field and provide a screenshot of the error.

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

Viewing 30 posts - 5,671 through 5,700 (of 67,463 total)