Viewing 30 results - 1,561 through 1,590 (of 243,989 total)
  • Author
    Search Results
  • #1486546

    Hi,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor, If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the bellow code and save.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    function custom_script() { ?>
      <script>
      document.addEventListener("DOMContentLoaded", function () {
      const termDescription = document.querySelector(".archive .term-description");
      const productsGrid = document.querySelector(".archive .products.columns-3");
    
      if (termDescription && productsGrid && productsGrid.parentNode) {
        productsGrid.parentNode.insertBefore(termDescription, productsGrid.nextSibling);
      }
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Sorry, I don’t read your language in the screenshot, now that I can translate your live page it does make sense. :)

    Best regards,
    Mike

    #1486544

    In reply to: Update from 2.4.1

    Hi,
    Perhaps this will be easier, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor, If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the below code and save.

    function custom_menu_by_page_name($args) {
        // Only modify the main header menu
        if ($args['theme_location'] != 'avia') {
            return $args;
        }
    
        // Get current page object
        if (is_page()) {
            global $post;
            $page_slug = $post->post_name;
    
            // Map of page slugs to custom menu names
            $menu_switches = array(
                'about-us'     => 'rick-sherman',
                'faq'     	   => 'rick-sherman',
                'contact'      => 'sherman-sound',
                'help'         => 'sherman-sound',
                // Add more as needed
            );
    
            // Check if the current page slug is in our list
            if (array_key_exists($page_slug, $menu_switches)) {
                $menu_name = $menu_switches[$page_slug];
                $menu_obj = wp_get_nav_menu_object($menu_name);
    
                if ($menu_obj) {
                    $args['menu'] = $menu_obj->term_id;
                }
            }
        }
    
        return $args;
    }
    add_filter('wp_nav_menu_args', 'custom_menu_by_page_name');
    

    in the code under $menu_switches = array( you see four page names with the menu name, such as:
    'about-us' => 'rick-sherman',
    change the page “slugs” or names to suit and the menu names, whatever pages or posts that you don’t add to the code will use your default menu.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    #1486540
    syberknight-tb
    Participant

    is there any way to add <br/>‘s and <strong>‘s in the email that is generated from the contact form submissions withOUT having to alter theme file(s)???

    would be nice to bold the field labels & colons and also add an extra line break between them in the emails.

    if it can’t be done without modifying any theme files (unless it can be a Child Theme file?), then nevermind. but please put it in a wishlist for future versions. to have something in the Enfold settings interface where we could customize how the emails look (no matter how many form fields or labels it has).
    thanks.

    #1486539

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1486538
    envisageiam
    Participant

    Hi : ) I need to enable parent-child hierarchy for portfolio entries. I tried using plugins like custom post type UI but they seem to be conflicting with the already existing Enfold portfolio entry hierarchy.

    How do I setup the portfolio items entries, so that the entries can have the parent-child hierarchy option, the same as it is for a page to have a parent-child hierarchy with another page?

    #1486532

    Hey Paul,

    Please refer to this: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1486529

    In reply to: Container width

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1486524

    All you need is to get rid of the min-height option – the fullwidth slider is a responsive slider !

    for the caption it might be neccessary to have for very small screens smaller font-sizes – or to set a part (f.e. the avia-caption-content to display:none )

    you got a rule :

    @media only screen and (max-width: 489px) {
      .avia-slideshow li img {
        width: 100%;
        background-size: cover;
        height: 200px;
        object-fit: cover;
        left: 30px !important;
        position: relative;
        overflow: visible;
      }
    }

    Remove the rules given to you by ismael first because …

    remove the left position – and height – otherwise you will have a gray bar on the left ;)

    then there are some min-height properties:

    inline-styles

    @media only screen and (max-width: 489px) {
      .home #full_slider_1, .home #full_slider_1 .avia-slideshow, 
      .home #full_slider_1 .avia-slideshow-inner, .home #full_slider_1 .avia-slide-wrap {
        min-height: 200px;
        height: 200px !important;
      }
    }


    and enfold css:

    @media only screen and (max-width: 479px) {
      .home #full_slider_1, 
      .home #full_slider_1 .avia-slideshow, 
      .home #full_slider_1 .avia-slideshow-inner, 
      .home #full_slider_1 .avia-slide-wrap {
        min-height: 300px;
      }
    }

    don’t know where they come from. But if you like to see the full width of the image – these settings are suboptimal.

    #1486519
    swissfilm
    Participant

    The API connection can be established, but the forms won’t load. Tried it with a new API key but without success.
    Running Enfold 7.1.1
    PHP-Version ist: 8.0.30

    #1486505

    In reply to: Favicon Not Appearing

    Hi Mike,

    Just sticking with your way for the time being, so I have converted the favicon to the .ico and then installed File Manager, uploaded to the root.

    Weirdly when I went to upload it the file was already there so I removed and uploaded again.

    If this doesn’t work I will try that other way, but just don’t understand why some seem to work without problem.

    For future reference, is it best to upload the Favicon through appearance > customise or in the Enfold settings?

    #1486504

    In reply to: Favicon Not Appearing

    if you follow that little link on enfold options:
    (these two cards icon)

    you will see on that wiki page a good overview; and in detail a browser support. Best Format seems to be png.
    a svg has a bad support.

    you can manually add them if you put this to your child-theme functions.php:

    function add_icons_to_head(){
    ?>
      <link rel="icon" type="image/png" href="/wp-content/uploads/icons/your-favicon-image.png">
      <link rel="apple-touch-icon" type="image/png" href="/wp-content/uploads/icons/your-apple-touch-icon.png">
    <?php
    }
    add_action('wp_head', 'add_icons_to_head');

    You are free to select the names and paths of your PNGs.

    #1486499

    Hi MIke
    No no. We use Enfold OR Elementor.
    Most of our websites are with Enfold.
    Newer websites we created with Elementor, because customer want to edit directly on the page.
    Best regards
    Mike

    #1486498
    torture4
    Participant

    I’ve just switched my website to the new design, built under the Enfold Theme. Very happy with the result!

    However, I notice that the Google Site Map for the site (when it comes up in a Google search) is out of date, and still referencing the old site. So some of the links in the old site map are going to 404, because the structure of the new Enfold site has changed.

    Is Google Site Map refresh or config built into the Enfold Theme? If not, do you recommend either (a) a plugin that can update the sitemap file, or (b) a manual way to do it?

    Thanks, Nick

    #1486495

    Hey tonyiatridis,

    Thanks for the inquiry.

    You can use this css code to display the post navigation on mobile view:

    @media only screen and (max-width: 789px) {
    
      /* Add your Mobile Styles here */
      .responsive #top .avia-post-nav {
        display: block;
      }
    }

    Make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings and purge the cache.

    Let us know the result.

    Best regards,
    Ismael

    #1486482

    On the extended Version – shure on free version see – here : https://wordpress.org/plugins/honeypot/

    Automatic anti spam protection for following forms (Available in Free Version) . No setup required.

    WP Comments
    WP Registraton
    BBPress Forum (bbpress.org)
    Contact Form 7 (wordpress.org/plugins/contact-form-7)
    Gravity Forms (For Non Ajax and Single Page/Step Form – gravityforms.com)
    WPForms (wpforms.com)
    Formidable Forms (formidableforms.com)
    Caldera Forms (calderaforms.com)
    Toolset Forms (toolset.com)
    Elementor Forms (elementor.com)
    Fluent Forms (fluentforms.com)
    Divi Theme Contact Form (elegantthemes.com)
    Theme My Login ( https://wordpress.org/plugins/theme-my-login/ )
    WooCommerce Reviews Pro
    GDPR compliant. No tracking, cookie storage or external server calls.

    Sadly the enfold form isn’t supported in the free version – but i think contact form 7 is a better alternative – not only because of the addon: Conditional Fields for Contact Form 7

    #1486480

    Hi,
    I hope you are not using Elementor on a Enfold site, they are not expected to work together.

    Best regards,
    Mike

    #1486470

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    felix_frank
    Participant

    Hi Enfold Support Team,

    I’m using the latest version of the Enfold Theme, including the built-in contact form element and the native cookie consent system.

    Unfortunately, I’ve noticed that Google reCAPTCHA v3 is being loaded immediately on the first page load, even before the visitor has given consent via the cookie banner.
    Using browser dev tools (Network tab → filter for “recaptcha”), I can clearly see multiple requests to Google services being triggered without user interaction.

    As you are aware, GDPR (and the German TTDSG) require an explicit opt-in before any non-essential services like reCAPTCHA are activated.

    My question:
    How can I integrate Google reCAPTCHA into the built-in Enfold contact form so that it only loads after user consent – and remains blocked until then?

    Here’s what I’ve done so far:

    Set cookie behavior to “Essential cookies only – user must opt-in”

    No Borlabs or other cookie plugins used – just Enfold’s native cookie management

    Tried WP Armour as an alternative spam protection, but it’s insufficient

    If this is not currently possible within Enfold:

    Is there a recommended workaround or best practice to achieve GDPR compliance?

    Or is a fix or native support for deferred reCAPTCHA loading planned in your roadmap?

    Thank you very much in advance for your help!

    #1486464
    j0schi
    Participant

    Hey Folks,

    i am desperatly trying to move the category description below the products in enfold but till now i failed misserably as enfold is jsut super stubborn with this topic. I actually need this for 3 different shops…

    The optimum would look like this:
    – Category Image
    – Category Title
    – Products
    – Category description

    and all that without destroying the side bar.

    What i tryed:
    Writing functions (always ends up NOT removing the top description)
    Overwriting the Wootemplate which ends up in double images at the top no title and then the normal stuff from enfold

    https://stackoverflow.com/questions/22105230/move-category-description-to-bottom-of-page-on-wordpress

    Why is Enfold so stubborn with this? It makes 0 sense to show a long description before the products as it it very user unfriendly but one needs the description for seo purposes. I also wanna avoid using css to “hide” it as google does not like this when we display the text again and its a very unclean way to do that. If theres no other way it would also be ok for me do move everything (not jsut the description) below the product loop but without just hiding it at the top part.

    What can we do? Any help is highly appreciated.
    Kind regards
    Patrick

    felix_frank
    Participant

    Problem Description:
    When users reject cookies and only accept essential cookies, Enfold video elements redirect users to the external video platform (Vimeo/YouTube) in a new window. This violates GDPR as it establishes connection to third-party servers without user consent.
    Current Behavior:
    User rejects all cookies (accepts only essential)
    User clicks on video element
    Video opens in new window: https://vimeo.com/[video-id&#93;
    External tracking cookies may be set without consent
    IP address is transmitted to third-party (USA) without permission

    GDPR Compliance Problem:
    Personal data (IP address) transmitted to unsafe third countries (USA)
    Potential tracking cookies set without explicit consent
    Violates Art. 6 GDPR and ePrivacy Directive
    Makes website non-compliant with European data protection laws

    Expected GDPR-Compliant Behavior:
    With cookies rejected: Video should show placeholder/blocked message only
    No connection to external video platform should be established
    No data transmission to third parties without consent
    Only after cookie acceptance should external videos load

    Configuration:
    Privacy Setting: “User must accept and must opt in, only essential cookies selected”
    Video Element: Enfold Video Element (ALB)
    Privacy Controls: [av_privacy_video_embeds] implemented in cookie modal

    How can I fix this?

    Hi,

    Thanks for the update. Enfold does not alter uploaded images in any way, and looking at your site it feels like there is a plugin or third party code which is altering them in some way. Could you try to check your site and find anything that might be doing that?

    Best regards,
    Rikard

    #1486450

    Hey Guenni007

    Thanks very much. Does this also work with Enfold forms?

    Actually we use Contact Form 7 forms, Elementor forms and Enfold forms.

    Best regards
    Mike

    #1486445
    This reply has been marked as private.
    #1486442

    Hey Ivana,

    Thank you for the inquiry.

    Did you modify the H3 heading element in the Enfold > Advanced Styling panel? The blog and portfolio post titles inherit the styles from the advanced styling configuration. If you want to override it, you can try using this css code:

    #top #wrap_all .all_colors h3.grid-entry-title, #top #wrap_all .all_colors h3.slide-entry-title.entry-title {
        font-size: 16px !important;
        line-height: 1.4 !important;
        display: block;
        margin-bottom: 0;
    }

    Make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings to ensure that the changes take effect.

    Best regards,
    Ismael

    #1486435

    In reply to: Update from 2.4.1

    Hi,

    Will the css get overwritten?

    If the custom css is added in the Enfold > General Styling > Quick CSS field or in the child theme’s style.css file, it will be retained during updates, as long as you don’t import another demo or make direct changes in the database.

    Make sure to create a site backup or restore point before proceeding.

    Let us know if you need more info.

    Best regards,
    Ismael

    #1486431

    In reply to: Bluehost Enfold fail

    Hey Lindsay DeShazo,

    Thanks for reaching out.

    The site is no longer using the Enfold theme when we checked. It’s possible that the site was using an older version of the theme that is no longer compatible with the latest release of WordPress. If that’s the case, you’ll need to download the latest version (7.1.1) of the theme from your Themeforest account and manually upload it to your server via S/FTP. Please check the documentation below for more info.

    https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Let us know if you need more info.

    Best regards,
    Ismael

    #1486428

    If you write in the text block element without inserting special tags, your text will be output as a p tag in the front end.
    The p tag is subject to the body font that you set in your settings under: Enfold (Child) > General Styling > Font > Font for Your Body Text.

    Edit: One minute too late. You can’t sleep either?

    #1486427

    Hey Marc,

    Thank you for the inquiry.

    The text font depends on the option selected in the Enfold > General Styling > Fonts tab. You can also set a different font for a specific element in the Enfold > Advanced Styling panel. Please refer to the screenshot below.

    View post on imgur.com

    Let us know if you need more info.

    Best regards,
    Ismael

    Hey ThiloKiefer,

    Thank you for the inquiry.

    The very first Color Section on the page should use a <main> element by default. You can change the tag of the #main <div> element to <main>, but this could potentially conflict with the container used by the first Color Section. If you would like to proceed, you can edit the enfold/header.php file, around line 279.

    
    <div id='main' class='all_colors' data-scroll-offset='<?php echo avia_header_setting( 'header_scroll_offset' ); ?>'>
    

    Best regards,
    Ismael

    #1486423

    Hi,

    It doesn’t look like the css rules are generated by the theme. Try temporarily disabling the cache and compression plugin, then deactivate the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

Viewing 30 results - 1,561 through 1,590 (of 243,989 total)