Viewing 30 results - 61 through 90 (of 243,929 total)
  • Author
    Search Results
  • #1493952

    Topic: UPDATE php Version

    in forum Enfold
    kreativeseite
    Participant

    Hi. I would like to change the PHP version of my website to 8.4, as this is the recommendation of the host. Is this possible with my Enfold installation (wordpress 6.9), or will it cause problems? Thank you for your help! Best regards, Andreas

    #1493938

    Hi,

    WooCommerce filter to our home page.

    Please note that the default Woocommerce filters or widgets will only display on standard product pages or templates, such as product category pages or the base shop page. They will not display on custom pages, such as your homepage. This behavior is determined by the widget function, which we don’t have control over. You may need to look for a custom solution if you want to display filters on the homepage.

    For the single product page, please try to follow these steps: https://kriesi.at/support/topic/enfold-sidebar-on-single-product-pages/#post-1162484

    Best regards,
    Ismael

    #1493936

    Hey Andrew,

    Thank you for the inquiry.

    Have you tried setting a From address or activating an SMTP plugin? You should also try using a different email address to test whether the issue is related to the email provider. Please check the link below for more information on how to troubleshoot contact form issues:

    We would like to check this further, but it looks like you may have forgotten to include the site URL in the private field. Please provide this information so we can investigate the issue further.

    Best regards,
    Ismael

    #1493933

    Hey Sonno,

    Thank you for the inquiry.

    Add a Fullscreen Slider, then add a Color Section below it with a unique ID or Custom CSS Class. You can then apply some css modifications to move the Color Section over the slider and set its background to transparent. If you can create a test page, we’ll try to check it further.

    https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    (removing the custom code and using only the Enfold Theme Options field with a 512x512px PNG)

    Have you tried using an actual favicon or .ico file instead of a png? Again, we checked the site on a favicon validator and it can properly detect the icon. It’s also visible in the browser tabs.

    We found these markups, which might be conflicting with the default favicon. These are not generated by the theme.

    fSKy1Cg.md.png

    Best regards,
    Ismael

    #1493927
    Andrew
    Participant

    Hi guys,

    I hope you’re well.

    I’m having an issue with the Enfold contact form across several websites I own. The forms were working fine previously, but have recently stopped sending emails without any changes on my side.

    A few details:

    * All sites are running the **latest version of WordPress**
    * The **Enfold theme is updated** to the latest version
    * I’ve double-checked the **admin email addresses** and settings
    * The contact forms **used to work**, and then suddenly stopped
    * I installed **Contact Form 7** as a test and its emails are sending and being received in my Gmail inbox without any issues

    I’ve gone through the documentation you recommend regarding email delivery and contact forms, but I still haven’t been able to get the built-in Enfold contact form working again.

    Could you please advise

    Many thanks in advance for your help.

    Kind regards,
    Andrew

    #1493925

    if this works – here is the extended Way trying to have that for pagination or “load more” Masonry:

    
    /**
     * ENFOLD MASONRY: Show Sticky Posts first, support Custom Post Types, 
     * and fix Pagination/Load More functionality.
     */
    
    // 1. REORDER LOGIC
    function avia_masonry_entries_query_mod($query, $params) {
        if (is_admin()) return $query;
    
        $sticky = get_option('sticky_posts');
        if (empty($sticky)) return $query;
    
        // 1. Get the limit from the element settings (instead of hardcoding 6)
        $per_page = isset($query['posts_per_page']) ? $query['posts_per_page'] : 6;
    
        // 2. Fetch ALL matching IDs in the correct order (Stickies first)
        $args = array(
            'post_type'      => $params['post_type'],
            'post__not_in'   => $sticky,
            'posts_per_page' => -1, 
            'fields'         => 'ids',
            'tax_query'      => !empty($query['tax_query']) ? $query['tax_query'] : array(),
        );
    
        $other_posts = get_posts($args);
        $all_ids = array_merge($sticky, $other_posts);
    
        // 3. Instead of slicing, we give ALL IDs to post__in
        // and tell WP to handle the pagination based on these IDs
        $query['post__in'] = wp_parse_id_list($all_ids);
        $query['orderby']  = 'post__in';
        $query['order']    = 'ASC';
        
        // Ensure the per_page limit stays active for WP's internal calculation
        $query['posts_per_page'] = $per_page;
    
        // IMPORTANT: Disable ignore_sticky_posts so WP doesn't try to be smart
        $query['ignore_sticky_posts'] = true;
    
        return $query;
    }
    add_filter('avia_masonry_entries_query', 'avia_masonry_entries_query_mod', 10, 2);
    #1493924

    can you test this instead ( and remove your solution temporarly ) :

    /**
     * Enfold Masonry Filter: Show sticky posts first, followed by other entries (including CPTs)
     * This filter captures selected post types dynamically from the element settings.
     */
    function avia_masonry_entries_query_mod($query, $params) {
        // Prevent the filter from running in the WordPress admin backend
        if (is_admin()) {
            return $query;
        }
    
        // 1. Get the IDs of all sticky posts
        $sticky = get_option('sticky_posts');
        
        // If no sticky posts exist, return the original query without modifications
        if (empty($sticky)) {
            return $query;
        }
    
        // 2. Fetch IDs for the remaining posts (including Custom Post Types)
        // We use $params['post_type'] to dynamically support whatever is selected in the Masonry element
        $args = array(
            'post_type'      => $params['post_type'], 
            'post__not_in'   => $sticky,         // Exclude stickies so they aren't duplicated
            'posts_per_page' => -1,              // Fetch all IDs to ensure we have enough for the merge
            'fields'         => 'ids',           // Performance optimization: only fetch IDs
        );
    
        // If a specific taxonomy/category is selected in the element, apply it to our helper query
        if (!empty($params['taxonomy'])) {
            $args['tax_query'] = array(
                array(
                    'taxonomy' => $params['taxonomy'],
                    'field'    => 'id',
                    'terms'    => explode(',', $params['categories']),
                ),
            );
        }
    
        $other_posts = get_posts($args);
    
        // 3. Merge the arrays: Stickies first, then the remaining posts
        $combined_ids = array_merge($sticky, $other_posts);
    
        // 4. Sanitize the IDs (ensure they are integers)
        $query['post__in'] = wp_parse_id_list($combined_ids);
        
        // 5. Force the Masonry to respect the exact order of our merged array
        $query['orderby'] = 'post__in'; 
        $query['order']   = 'ASC'; 
        
        // Set the final limit of items to display
        $query['posts_per_page'] = 6; 
    
        // Disable default sticky handling to prevent WP from interfering with our custom order
        $query['ignore_sticky_posts'] = true;
    
        return $query;
    }
    add_filter('avia_masonry_entries_query', 'avia_masonry_entries_query_mod', 10, 2);
    
    #1493916
    Karen Butler-Purry
    Guest

    Expired key number:
    b7ac163e-cf03-4000-aa4d-a6dc4a6bfc00

    We need to renew our expired key and purchase an Enfold theme update. The login credentials for our Themeforest account are associated with a former employee’s email address. Therefore we cannot login or reset our login on the Themeforest website.

    #1493915
    bemodesign
    Participant

    Can you please look at my site and see why both forms are not working now. When you hit Submit, they dont’ do anything. I have many websites that use Enfold and have form issues a lot. Hopefully you can find a solution here so I don’t lose any clients because this is how people contact them. And if it doesn’t work, there’s no point of the website. Please help.

    #1493912
    Philipp Kellerhals
    Guest

    Guten Tag

    Heute habe ich einen neue 6-monatige Support Lizenz erworben:

    Item ID Qty Description Amount
    4519990 1 Enfold – Responsive Multi-Purpose Theme – 6 months renewed
    support
    $41.13
    Invoice Total: USD $41.13
    Paid via PayPal

    Unter meinem Profil https://kriesi.at/support/profile/philippkellerhals/ kann ich jedoch kein neues Support Ticket aufgeben.

    Wie kann ich meine neue Lizenz nutzen, um ein Support-Ticket für die Webseite https://kellerhalsconsulting.com/ zu eröffnen?

    Vielen Dank!

    Freundliche Grüsse
    Philipp Kellerhals

    #1493909

    Hi Ismael,

    I am writing to update you on the situation. Unfortunately, even after following your last suggestion (removing the custom code and using only the Enfold Theme Options field with a 512x512px PNG), the favicon is still not appearing in the Google SERP.

    It has been two weeks since the last change, and I have also requested a fresh indexing via Google Search Console, but the default globe icon remains.

    Since I have already:

    Used the Enfold built-in favicon field.

    Verified that the file is accessible in the root directory.

    Cleared all caches (Litespeed and server-side).

    Checked that the site is correctly validated by external favicon checkers.

    Is there anything else we can check? Could there be a specific meta tag generated by the theme that might be conflicting, or perhaps a suggestion on how to make the favicon “more attractive” specifically for the Google Bot crawler?

    I would really appreciate any further technical insight you might have.

    Best regards, Stefano

    #1493901

    Hey pikkuapuri,

    Please try the following in Quick CSS under Enfold->General Styling:

    .grid-sort-container .av_one_third {
      width: 33%;
    }

    Best regards,
    Rikard

    #1493900

    In reply to: Installation failure

    Hey krafzik,

    Are you sure that you are using the correct file? Note that you might have to extract the files that you download from Themeforest, then use the file enfold.zip located in the extracted folder.

    Best regards,
    Rikard

    Hey Mark,

    Thanks for reaching out to us. Classic or Modern are only demos, all demos are included in the purchase and can be imported in the theme options.

    The update to 7.1.3 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
    You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
    If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
    Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1493896
    Sonno
    Participant

    Hi, how can i realize something like this in Enfold?

    I tried iz withe the Fullscreen Slider but there ist no possibility to place text over the slider element.
    Thanks in advance.

    Mark
    Guest

    Hello

    I have adopted a website and it currently runs enfold 4.0.7 and when updated wordpress it crashed. Therefore I understand I need to purchase updated version. However I have a few questions so I can chose the right one (modern vs classic).

    1. How do i know if the current version of enfold I currently have is classic or modern (does not say in theme details)?
    2. As I am a not a professional web designer, is it seamless to go from the 4.0.7 version to the latest version (7.0+)?
    3. What is the difference between enfold classic and modern?
    4. Considering I am wanting to go from my version 4.0.7 to latest version, which do you recommend classic or modern?
    5. If I purchase modern, does it still support classic (if that is what my current website is)?
    6. Will I need to create a new child theme after buying updated enfold theme?

    For reference, if you need to see my website to determine classic or modern – it is http://www.jaunaviltis.lt

    thank you for your time to answer these questions

    Mark

    #1493894
    krafzik
    Participant

    Hi,
    I´ve downloaded the installable file enfold.zip as well as the “installable WordPress file only”. Both of them can´t be installed.
    This is the message:

    Das Theme wird von der hochgeladenen Datei enfold.zip installiert
    Entpacken des Pakets …
    Die Datei konnte nicht kopiert werden. enfold/config-layerslider/LayerSlider/assets/static/codemirror/addon/dialog/dialog.css

    #1493890

    In reply to: Portfolio Navigation

    Hi,

    Thank you for the inquiry.

    We understand you’re having issues working with the theme, specifically with the post navigation along with a slider’s default arrow navigation. To get around this issue, we recommend to adjust the position of the post navigation by adding this code in the Enfold > General Styling > Quick CSS field.

    #top .avia-post-nav {
        top: 80%;
    }

    This should move the post navigation lower on the page or within the viewport. Where can we see the portfolio grid element?

    Best regards,
    Ismael

    #1493882

    Hello,
    I’m so sorry for the late reply. I was away for a few days ….

    The user has been created using the Temporary Login Plugin.
    Please let me know if it works.

    https://snipboard.io/e2vdx9.jpg

    So ….
    Despite all those limitations, I managed to use the AWS plugin, and it’s working fine on all pages except the homepage (it’s not even showing) and the single product pages (it’s showing after the product, not in the left sidebar).

    I really need to make it work properly for all product pages.
    Also, understand how to use the ALB feature (add sidebar) inside an Enfold block.

    Please keep in mind that this website is live but not yet announced.
    So I can’t lose everything inside or proceed with major changes, as we have a multisite environment for all the company websites.
    Let me know what changes or tests you’re thinking about. I dont know if any of the quick CSSs inside this Child Theme are affecting what we’re discussing.

    Thanks for your help.
    Leo

    #1493867

    Topic: Portfolio Navigation

    in forum Enfold
    Sonno
    Participant

    Hello!
    How can I extract the next/previous portfolio navigation from the slider in Enfold’s portfolio items and position it separately at a custom location on the single portfolio entry page?
    Right now I have two arrows in the Slider, one for the Slider itself, and one for the Portfolios.

    Thanks for helping.

    • This topic was modified 1 week, 3 days ago by Sonno.
    #1493866

    Topic: enfold

    Yarno van de Tonnekreek
    Guest

    Good morning!

    Over a period of time i have bought 3 licenses enfold theme for different sites i manage. Now i want them to update automaticly in wordpress so they are save. I have made a token and i can use this is one of my sites.

    Question, can i use this one token for the other two licenses also?

    #1493860

    In reply to: Footer

    Hey daninap,

    Thank you for the inquiry.

    Did you set the footer display in Enfold > Footer > Default Footer & Socket Settings? Please provide the login details in the private field so we can further investigate the issue.

    Best regards,
    Ismael

    Hey jessij87,

    Thank you for the inquiry.

    Where is the site hosted? The demo import is known to have issues with certain hosting providers, such as OVH, so that might be the cause of the problem. If that’s the case, please try to import the demo manually using the XML files. For more information, please refer to this documentation.

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

    Let us know if you need additional info.

    Best regards,
    Ismael

    #1493852
    woogie07
    Participant

    Hi,

    I’m currently creating a number of pages that require tables, with variations across roughly 80 pages. I’ve been using the Enfold Table element, which looks good, but each entry needs to be added manually.

    I have all of the table data in a PDF document, and it would be much quicker if I could copy the whole table content (with tabs) and paste it into Enfold so it formats everything automatically.

    Is there a way to do this to speed up content population, or do I need to copy each individual value from the source PDF and paste it into the Enfold table fields separately?

    Any advice on the most efficient approach would be much appreciated.

    Thanks,

    ichmusshierweg
    Participant

    Really strange:
    Whereever I write “Kontakt” in a textblock, it appears in frontend as “Kontakt1”.
    I’ve no clue where the “1” comes from.

    It’s on this page https://www.buergerforum-rol.de/themen-koepfe/gesellschaft-burgernaehe/ besides one of the pictures “Hannes Moser”, for example.

    Hi,

    I believe I have found a plugin ticks all the boxes.

    Product Gallery Slider

    Their support have advised that this will work in Enfold Layout Builder by implementing a shortcode for their Product Gallery Slider.

    Which is the best way to include shortcode via layout builder?
    eg. Using Code Block element Or Text Block Element then adding the shortcode in Code tab?

    Thanks

    #1493839

    Hi Ismael,
    thanks for your reply.

    YES enfold updated to 7.1.3
    No modification in the child theme
    Already downgraded to older PHP version… same problem.

    Giacomo

    #1493835

    Hey bdfuel,

    Thank you for the inquiry.

    Is the theme updated to version 7.1.3? If not, please make sure to download the latest version or update the theme via the Enfold > Theme Update panel. If there are modified files in the child theme, make sure those are updated as well. Please let us know if the issue persists.

    Best regards,
    Ismael

Viewing 30 results - 61 through 90 (of 243,929 total)