Viewing 30 results - 1,951 through 1,980 (of 243,837 total)
  • Author
    Search Results
  • #1484415

    In reply to: Burger sub-menu

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1484414

    Hey envis,
    You should upload only the webp images and add them to the galleries and other elements. I tested this on the different galleries, masonry, featured images, color section background image, blog post element, ect. There is no need to upload two versions of each image, just use the webp format directly.
    Assuming that you are only uploading jpg images and then using a plugin to convert them to webp copies, you could add this code to the end of your child theme functions.php file in Appearance ▸ Editor to show the webp version if the file name and location is exactly the same, the draw back to this approach is that you have twice as many images on your server with only half being used. This also won’t rewrite CSS background images in external CSS files — only inline styles and HTML output, so if you are using CSS File Compression And Merging, or another caching plugin and have background images such as a background image in a color section or a masonry element it may not work. In my tests once I cleared the css and cache it worked for me except the gallery short code like [gallery link="file" columns="5" ids="4350,870,868,864,862"] the gallery and other elements did work.

    add_filter('wp_get_attachment_image_src', function($image, $attachment_id, $size) {
        $webp_path = preg_replace('/\.(jpe?g|png)$/i', '.webp', get_attached_file($attachment_id));
        $webp_url = preg_replace('/\.(jpe?g|png)$/i', '.webp', $image[0]);
    
        if (file_exists($webp_path)) {
            $image[0] = $webp_url;
        }
    
        return $image;
    }, 10, 3);
    //for background images
    // Replace image URLs with .webp if the .webp version exists
    function enfold_replace_with_webp($buffer) {
        // Replace src="...jpg|png" and url('...jpg|png') with .webp if available
        return preg_replace_callback(
            '/(?:src|url)\s*=\s*["\']([^"\']+\.(?:jpe?g|png))["\']|url\(\s*["\']?([^"\')]+\.(?:jpe?g|png))["\']?\s*\)/i',
            function($matches) {
                $original_url = $matches[1] ?: $matches[2];
                if (!$original_url) return $matches[0];
    
                $parsed_url = wp_parse_url($original_url);
                if (empty($parsed_url['path'])) return $matches[0];
    
                $img_path = $_SERVER['DOCUMENT_ROOT'] . $parsed_url['path'];
                $webp_path = preg_replace('/\.(jpe?g|png)$/i', '.webp', $img_path);
                $webp_url = preg_replace('/\.(jpe?g|png)$/i', '.webp', $original_url);
    
                if (file_exists($webp_path)) {
                    // Return updated string (preserving whether it was src= or url())
                    if ($matches[1]) {
                        return str_replace($original_url, $webp_url, $matches[0]);
                    } else {
                        return 'url("' . $webp_url . '")';
                    }
                }
    
                return $matches[0];
            },
            $buffer
        );
    }
    
    // Start output buffering early
    function enfold_start_webp_buffering() {
        ob_start('enfold_replace_with_webp');
    }
    add_action('template_redirect', 'enfold_start_webp_buffering');
    

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Also note that your server media handling editor needs to also support webp files, mine is WP_Image_Editor_GD, which is default for WordPress:
    Screen Shot 2025 05 18 at 5.02.43 PM
    If you are not able to directly use the webp images in your elements, this could be the cause.

    Best regards,
    Mike

    #1484408

    Hi,
    Please see our documentation here and note: Step 4: Import parent theme options and note all steps, especially step 3: Go to Enfold Theme Options > Import/Export > Import Settings From Your Parent Theme and import
    Screen Shot 2025 05 18 at 2.18.48 PM

    Best regards,
    Mike

    #1484406
    FFAlan
    Participant

    I often use Paypal to generate a code and then paste it into my website on the code tab. However, recently somehting has been scrambling the code such that it no longer produces the desired result. I’ve copy and pasted the code into Word and it copies as it should. However when I paste it into my Enfold themed page it adds extra code which I then have to manually delete. What’s going on here?:
    Here’s the relevant part of the code as generated by Paypal:
    <table>
    <tr>
    <td>
    <input type=”hidden” name=”on0″ value=”Options for Brondanw & Nantclwyd only”/>
    Options for Brondanw & Nantclwyd only
    </td>
    </tr>
    <tr>
    <td>
    <select name=”os0″>
    <option value=”Member”>
    Member £17.00 GBP
    </option>
    <option value=”Guest”>
    Guest £19.00 GBP
    </option>
    <option value=”2 Members”>
    2 Members £34.00 GBP
    </option>
    <option value=”1 Member + 1 Guest”>
    1 Member + 1 Guest £36.00 GBP
    </option>
    <option value=”Child under 16″>
    Child under 16 £10.00 GBP
    </option>
    </select>
    </td>
    </tr>
    </table>

    And after pasting it into my website:
     
    <table>
    <tbody>
    <tr>
    <td><input name=”on0″ type=”hidden” value=”Options for Brondanw & Nantclwyd only” />
    Options for Brondanw & Nantclwyd only</td>
    </tr>
    <tr>
    <td>
    <select name=”os0″>
    <option value=”Member”>Member £17.00 GBP</option>
    </select>

    <select name=”os0″>
    <option value=”Guest”>Guest £19.00 GBP</option>
    </select>

    <select name=”os0″>
    <option value=”2 Members”>2 Members £34.00 GBP</option>
    </select>

    <select name=”os0″>
    <option value=”1 Member + 1 Guest”>1 Member + 1 Guest £36.00 GBP</option>
    </select>

    <select name=”os0″>
    <option value=”Child under 16″>Child under 16 £10.00 GBP</option>
    </select></td>
    </tr>
    </tbody>
    </table>

    See all those <select name = “os0”> lines before each button choice? How did they get there and how can I prevent them from being added?

    • This topic was modified 7 months, 4 weeks ago by FFAlan.
    #1484404

    So I installed the child’s theme on one of my much smaller websites that doesn’t get traffic.

    It did not save the theme settings. The Enfold logo showed up, the pages have a sidebar, the type size is different, etc.

    Can you explain this? Do I need export them and reimport?

    I see the EXPORT THEME SETTINGS FILE. Do I just export the settings, add the child’s theme, upload them, and voila, I am done?

    Is there anything else I should know?>
    reminder I do not know code.

    THANK YOU!!

    PAM

    • This reply was modified 7 months, 4 weeks ago by extraeyes.
    #1484403
    envis
    Participant

    My enfold gallery is not serving .webp images, even though all .jpeg files have .webp equivalents.
    How can I make sure the enfold gallery serves the .webp image?

    #1484400

    Hi,
    Ok, I’m not sure what else the issue could be, when I check your site your Google cookie is being set for me in incognito, and if this is working for your other sites with the same target URL then I don’t know why it would not work for this one. It looks like your other sites are also using Enfold.
    I’m not a tracking expert, I was just pointing out what I have seen in the past with affiliates tring to track their clicks.
    Are you using the Google Tag Manager? For that I believe that you need to add a script into your header:

    <!-- Google Tag Manager -->
    <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
    new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
    j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
    'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
    })(window,document,'script','dataLayer','GTM-WCML7X4');</script>
    <!-- End Google Tag Manager -->

    but perhaps this is something else, I don’t use it.

    Best regards,
    Mike

    #1484398

    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

    #1484392

    Hey madmanbean,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #header.header_color:not(.av_header_transparency) .phone-info a {
    	color: #666666;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hey David,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia-section .av-extra-border-element .av-extra-border-inner {
        border-top: solid 1px red;
    }

    adjust to suit.

    Best regards,
    Mike

    #1484379

    Hi,
    I see that you found this thread and wrote that it answered your questions
    If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    I see that we can tab though the flip box links, but since the flip boxes only flip on mouse-over I don’t see a way to flip them via tabing.
    If you would like to request this feature please post in our Github Feature Request page for the Dev Team to review.

    Best regards,
    Mike

    Hey a_edemirci,

    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

    #1484363

    In reply to: cURL error 28

    Hello, while working on the page, I realized that it lacks a lot of parameters that I would have liked to know about the SPA demo. It’s not the images that interest me well-of course:) but the settings of the page. How can I install the demo on another site not hosted by OVH? On this other site, does it imply that I have to buy an Enfold license? Thank you.

    #1484354
    Sonia
    Guest

    I have been an Enfold customer for years, and lately I’ve been experiencing significant website slowdown issues. The programmer mentions problems with the theme. On a page where, for example, the main uploaded photo weighs 150 kb, Enfold publishes one of 500 kb. All photo weights have increased. The hosting provider confirms that there are issues and that I’m using the maximum CPU abnormally. All plugins have been deactivated for testing, and there is no conflict. I need someone to explain why this latest version is creating major problems. My business is practically blocked, causing significant damage. I look forward to your feedback as soon as possible. Thank you.

    #1484334

    Hey swurban,

    Could you try updating the theme to the latest version (7.1) to see if that helps please? https://kriesi.at/documentation/enfold/theme-update/. If the updates are not coming through via the theme backend, then please try using this plugin: https://envato.com/market-plugin/

    Best regards,
    Rikard

    #1484329

    Hi,

    After fifteen years no one ever explained this to me?

    Using a child theme is a common practice in WordPress, so we assumed you might already be familiar with it. If not, please make sure to create a site backup or restore point, then check out the following links for more info on how to activate a child theme in Enfold:

    https://kriesi.at/documentation/enfold/child-theme/
    https://developer.wordpress.org/themes/advanced-topics/child-themes/

    If you need more help with the activation, please contact Codeable or any WordPress developer platform.

    https://kriesi.at/contact/customization

    Thank you for your understanding.

    Best regards,
    Ismael

    #1484323

    Hey gururamdascenter,

    Thank you for the inquiry.

    Looks like the site is still using an older version of the theme (6.0.4). Please update to the latest version (7.1), then try temporarily disabling the Enfold > Performance > File Compression settings. Let us know if the issue persists.

    Best regards,
    Ismael

    #1484322

    Hey danielle,

    Thanks for reaching out.

    Please make sure you’re registered on the forum using your purchase code:

    https://kriesi.at/support/register

    Once registered, you can open a new support ticket by filling out the form on this page:

    https://kriesi.at/support/forum/enfold/#new-post

    Let us know if you need more info.

    Best regards,
    Ismael

    Hi,

    What needs to be done to ensure that Entypo-fontello works with a custom Media Library path?

    Great! Glad to know that you figured out the issue. Unfortunately, changing the path will require modifications to the theme that is outside the scope of support. You can check the themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php or the enfold/config-templatebuilder/avia-template-builder/php/class-font-manager.php files. You can also try the avf_default_iconfont filter.

    If you need more help with this customization, you can reach out to Codeable.

    https://kriesi.at/contact

    Best regards,
    Ismael

    #1484310
    swurban
    Participant

    Hello, hope I’m posting in the right area for paid support! Here it goes:

    I have 3 websites using the enfold theme. I recently switched to managed WordPress hosting on Go Daddy. Once it transitioned over, I went to the dashboard of each site, and none of them would allow me to add pages or portfolio items using the Advanced Layout Builder but only allowed use of the old-style editor. Yet the existing pages and portfolios items opened to the Advanced Layout Builder, but I did not try any changes because of the problem as noted.

    I called Go-Daddy and bought their WP premium support, where the agent gave me the link to how-to on tokens. I was successful on one of my sites but need help on the other 2 websites with this issue. Once this is done, they say they’ll handle the rest, unless you recommend something else.

    I’m posting the remainder of the info in the private content area for the moderators only. Thanks.

    #1484306
    gururamdascenter
    Participant

    Hi, I’m using Enfold Theme and have created an FAQ page. When I get about half way down the page, when opening the toggles, they start to jump up the page, at first a little and then so much that you have to scroll down quite a ways to find the item you’ve opened.

    Thanks in advance for helping to resolve this!

    Hi,

    Which dropdown?

    I’m talking about the Icon dropdown in, for example, button configuration. As soon as you have .svg files in the Media Library, regardless of using an ML-plugin or not, they will be loaded. I tested it on Xampp, a fresh install – only WP & Enfold, no plugins at all. I tried erasing it in Enfold settings, but it keeps reappearing. See the screenshot below.

    icon_dropdown

    I will go on from this fresh install and implement step by step to check when it breaks & let you know.

    Have you tried creating a clone of the site on a different host or platform?

    I could test on 2 environments: local & our hosting provider. Is it really necessary to rent a second environment to test this?

    #1484295

    I solved my problem
    In Enfold – Main menu – General
    I set Seperator between menu items to small seperator

    #1484294
    Tobias Jurgelucks
    Guest

    To the Kriesi Team,

    I tried reaching out to you via envato.com in April but have so far not been able to hear from you. My original message was:

    I had a web designer created my page around 2019/2020. He installed Enfold, but not the license key. The cooperation soon ended.
    I now wanted to open a Woo Shop and get the website up-to-date. To be able to do anything I needed to buy another Enfold license, so before starting everything was updated. Unfortunately, I’m having severe problems using it.
    Although you say, “easy to use for beginners” I find it rather difficult. Starting with the styling I can only do in the backend instead of the customizer on frontend to see the live results. WPML keeps causing problems with styles not reflecting, and with Woocommerce there are hardly any setting in Enfold to adjust for example the responsive catalogue page. Without much IT knowledge and being forced to add many custom css and php to make it look half decent, I realised Enfold is not for me at all. I just cannot work with it. I’m sorry.
    Therefore, I’d like to kindly ask you for a refund. I’ve already deleted the token and license key and will delete the Enfold theme after Easter once the new theme is set up.
    Much appreciate your help.
    Best regards,
    Tobias Jurgelucks

    #1484291

    Hello,

    Is there already a solution for the problem? The burger is visible, but clicking it on any device doesn’t open the menu.
    I alos tried various changes in settings but nothing helps.

    Versions:
    Enfold 7.1
    Wordpress 6.8.1
    PHP 8.3.19 (ea-php83)

    Kind Regards,

    Teun van Wijck

    #1484289

    Hi Ismael,

    please invest some more support-motivation. I’ll post you a link in the private area from another project where it works perfectly, with the same style-setting! So it must be some kind of bug in the newest enfold-theme or something else.

    Thanks for your help.
    Tim

    #1484279

    Hi,

    Thank you for the update. We get this error when we try to validate the map.

    main.js:154 Geocoding Service: This API project is not authorized to use this API. For more information on authentication and Google Maps JavaScript API services please see:

    Please make sure that the Geocoding API is enabled in your Google Console. For more info, please check the links below:

    https://kriesi.at/documentation/enfold/google-map/#enable-services-for-google-api
    https://developers.google.com/maps/documentation/javascript/get-api-key?utm_source=devtools&utm_campaign=stable

    Best regards,
    Ismael

    #1484273

    Hi,

    It’s possible to create custom builder elements or shortcodes in the child theme, but you’ll need to implement them on your own because this is beyond the scope of support. You can find more information in the documentation below:

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

    You can use the enfold/config-templatebuilder/avia-shortcodes/blog element as a reference or starting point.

    Best regards,
    Ismael

    #1484255

    Hey cpirih,

    You can find your purchase codes in your Themeforest account. To keep track of your licenses, I would suggest that you generate separate tokens for each of them: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

Viewing 30 results - 1,951 through 1,980 (of 243,837 total)