Forum Replies Created

Viewing 30 posts - 5,791 through 5,820 (of 67,591 total)
  • Author
    Posts
  • in reply to: Kundenempfehlungen werden nicht korrekt dargestellt #1437264

    Hi,

    Thank you for the update.

    I hope I found the reason, I added “<3” to the text. After removing that, the problem didn’t show again.

    Adding the greater than or less than signs, or angle brackets, could break the layout of the page, so it’s advisable to avoid using them. If you really need to include these symbols, consider installing this special character plugin:

    https://github.com/KriesiMedia/enfold-library/tree/master/codesnippets%2C%20tricks%2C%20plugins/Enfold/integration%20plugins/Enfold/Special%20Character%20Translation
    

    Best regards,
    Ismael

    in reply to: Kontaktformular – Checkbox -Link einbauen #1437263

    Hey nadinedomnink,

    Thank you for the inquiry.

    You can manually insert the link by adding a new Form Element and setting its Form Element Type to Custom HTML. In the editor, you can add the following code snippet:

    For detailed guidelines on GDPR compliance, please refer to <a href="https://site.com/gdpr/guidelines" target="_blank">this resource</a>.
    

    Make sure to update the URL in the href attribute.

    Best regards,
    Ismael

    Hey xela,

    Thank you for the inquiry.

    You may need to consider using an alternative plugin for now, as there’s no ETA for implementing Google Consent Mode v2 in the privacy options, yet. Please review the following links:

    // https://wordpress.org/plugins/cookiebot/
    // https://www.cookiebot.com/en/cookiebot-cmp-and-google-consent-mode/

    Thank you for your understanding.

    Best regards,
    Ismael

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

    Hi,

    May I ask where you exactly have found the error message cause I haven’t found it

    We’ve found the error in the browser console or developer tools. To fix the issue temporarily, you can add this css code. This should disable the animation and make the container visible on load.

    .js_active .av-minimum-height .container {
        z-index: 1;
        opacity: 1 !important;
        transition: none;
    }
    

    Best regards,
    Ismael

    in reply to: Demo Installation #1437260

    Hi,

    We tried to manually import the XML files, but the process failed to complete. We also tried importing XML files directly from the dashboard but it times out. We could manually import the database but there’s a risk of breaking the site in the process. Is there an option in your server that allows you to restore the site in case of any database-related issues? If there is, then we’ll proceed with the database import.

    Best regards,
    Ismael

    in reply to: Blog page questions #1437258

    Hi,

    Thank you for the info.

    On my page the blog shows a list of article excerpts, and in the right column the latest posts etc.

    That is the Latest Posts widget, which can be adjusted in the Appearance > Widgets panel. You can remove the widget if you want or move it to another sidebar. Regarding the style of the widget links, please go to the Enfold > Advanced Styling panel and edit the Misc > Widget Links element.

    Best regards,
    Ismael

    in reply to: Demo Installation #1437216

    Hi,

    Thank you for the update.

    We tried to manually import the demo using the xml files, but it didn’t push through. You may need to contact your hosting provider to inspect your server or request their assistance in importing the demo on their end. You can find the xml files for the demo at the following link.

    // https://github.com/KriesiMedia/enfold-library/tree/master/demos/one-page-agency

    Best regards,
    Ismael

    in reply to: Kundenempfehlungen werden nicht korrekt dargestellt #1437213

    Hey evag1502,

    Thank you for the inquiry.

    We cannot find the section you described above. Did you use a shortcode to display the recommendations? Kindly provide a screenshot of the issue using Savvyify, Imgur, or Dropbox.

    Best regards,
    Ismael

    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

Viewing 30 posts - 5,791 through 5,820 (of 67,591 total)