Viewing 30 results - 421 through 450 (of 243,533 total)
  • Author
    Search Results
  • #1489357
    This reply has been marked as private.
    #1489348

    Hi,

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

    #socket .copyright p {
      display: inline; 
    }
    
    #socket .copyright {
      width: 100%;
    }

    Best regards,
    Rikard

    #1489347

    Right-aligned to what? At the moment, it looks as if they are right-aligned to the line above. Or should it be right-aligned with the page content again, as is actually standard with Enfold?
    (See here on the blog on the bottom)

    #1489342
    bemodesign
    Participant

    Hello, right now the Footer links are below the Copyright. Can we right justify or something that looks better, with CSS code?

    thanks!

    Hey Angelo,

    Thank you for the inquiry.

    Yes, you can safely move the code from the Quick CSS field to the child theme’s style.css file, just make sure all css rules are valid. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure the changes take effect.

    Best regards,
    Ismael

    #1489330

    `<a href=”http://[18-Sep-2025 01:04:06 UTC] EXCEPTION: Unclosed ‘{‘ on line 1367 in /home/calvarybaptistdu/public_html/wp-content/themes/enfold-child/functions.php on line 1393″>Toggle a section when a button is clicked</a>

    #1489329
    CharlieTh
    Participant

    I am very evidently not good with javascript, but was hoping to follow “recipe” on

    to Show/Hide a section.

    I was trying to create what’s entitled

      Toggle a Section when a button is clicked.

    At end of functioning functions.php, I inserted the following code and got the error indicated in the subject line above.

    The debug indicates an [18-Sep-2025 01:04:06 UTC] EXCEPTION: Unclosed ‘{‘ on line 1367 in functions.php on line 1393 — that appears to be right on the line prior to the add_action. If I put in } (to close it?), I still get the error.

    Please, could somebody steer me right on this thing? I’m befuddled!

    Thanks for any help from an expert!
    ======================================================================================

    //——————————-
    // Toggle section
    //——————————-

    function toggle_on_click(){
    ?>
    <script>
    jQuery(window).on(‘load’, function(){

    // Button onClick event

    jQuery(“.toggle-button a”).on(“click”, function(e) {

    // Add your button events here

    console.log(” toggle section”);

    jQuery(“#toggle-section”).toggleClass(“hide-me”);

    console.log(” Prevent default “);

    e.preventDefault();

    });

    });
    </script>
    <!–?php<br /–> }

    add_action(‘wp_footer’, ‘toggle_on_click’);

    #1489327
    Jason
    Participant

    I am using Enfold 7.1.2 with PHP 8.4 with WooCommerce as a shop.

    When a customer order the “processing email” it leaves a blank space between address 1 and the city, ST ZIP, such as the following:

    Joe Bloe
    1 Street Address

    Los Angeles, CA 90029

    It should be:
    Joe Bloe
    1 Street Address
    Los Angeles, CA 90029

    How do I update the PHP code to remove the blank space on the email if there is no copy in Address 2 field?

    I see this in WooCommerce:

    To override and edit this email template copy woocommerce/templates/emails/customer-processing-order.php to your theme folder: enfold-child/woocommerce/emails/customer-processing-order.php.

    I could use some help how and waht to change from the following:

    <?php
    /**
    * Customer processing order email
    *
    * This template can be overridden by copying it to yourtheme/woocommerce/emails/customer-processing-order.php.
    *
    * HOWEVER, on occasion WooCommerce will need to update template files and you
    * (the theme developer) will need to copy the new files to your theme to
    * maintain compatibility. We try to do this as little as possible, but it does
    * happen. When this occurs the version of the template file will be bumped and
    * the readme will list any important changes.
    *
    * @see https://woocommerce.com/document/template-structure/
    * @package WooCommerce\Templates\Emails
    * @version 9.9.0
    */

    use Automattic\WooCommerce\Utilities\FeaturesUtil;

    if ( ! defined( ‘ABSPATH’ ) ) {
    exit;
    }

    $email_improvements_enabled = FeaturesUtil::feature_is_enabled( ’email_improvements’ );

    /*
    * @hooked WC_Emails::email_header() Output the email header
    */
    do_action( ‘woocommerce_email_header’, $email_heading, $email ); ?>

    <?php echo $email_improvements_enabled ? ‘<div class=”email-introduction”>’ : ”; ?>
    <p>
    <?php
    if ( ! empty( $order->get_billing_first_name() ) ) {
    /* translators: %s: Customer first name */
    printf( esc_html__( ‘Hi %s,’, ‘woocommerce’ ), esc_html( $order->get_billing_first_name() ) );
    } else {
    printf( esc_html__( ‘Hi,’, ‘woocommerce’ ) );
    }
    ?>
    </p>
    <?php if ( $email_improvements_enabled ) : ?>
    <p><?php esc_html_e( ‘Just to let you know — we’ve received your order, and it is now being processed.’, ‘woocommerce’ ); ?></p>
    <p><?php esc_html_e( ‘Here’s a reminder of what you’ve ordered:’, ‘woocommerce’ ); ?></p>
    <?php else : ?>
    <?php /* translators: %s: Order number */ ?>
    <p><?php printf( esc_html__( ‘Just to let you know — we\’ve received your order #%s, and it is now being processed:’, ‘woocommerce’ ), esc_html( $order->get_order_number() ) ); ?></p>
    <?php endif; ?>
    <?php echo $email_improvements_enabled ? ‘</div>’ : ”; ?>

    <?php

    /*
    * @hooked WC_Emails::order_details() Shows the order details table.
    * @hooked WC_Structured_Data::generate_order_data() Generates structured data.
    * @hooked WC_Structured_Data::output_structured_data() Outputs structured data.
    * @since 2.5.0
    */
    do_action( ‘woocommerce_email_order_details’, $order, $sent_to_admin, $plain_text, $email );

    /*
    * @hooked WC_Emails::order_meta() Shows order meta data.
    */
    do_action( ‘woocommerce_email_order_meta’, $order, $sent_to_admin, $plain_text, $email );

    /*
    * @hooked WC_Emails::customer_details() Shows customer details
    * @hooked WC_Emails::email_address() Shows email address
    */
    do_action( ‘woocommerce_email_customer_details’, $order, $sent_to_admin, $plain_text, $email );

    /**
    * Show user-defined additional content – this is set in each email’s settings.
    */
    if ( $additional_content ) {
    echo $email_improvements_enabled ? ‘<table border=”0″ cellpadding=”0″ cellspacing=”0″ width=”100%”><tr><td class=”email-additional-content”>’ : ”;
    echo wp_kses_post( wpautop( wptexturize( $additional_content ) ) );
    echo $email_improvements_enabled ? ‘</td></tr></table>’ : ”;
    }

    /*
    * @hooked WC_Emails::email_footer() Output the email footer
    */
    do_action( ‘woocommerce_email_footer’, $email );

    • This topic was modified 2 months ago by Jason.
    #1489323

    In reply to: Widget page inactive

    Enfold 7.1.2
    php 8.3.25
    WP : 6.8.2
    I tested the site with all extensions disabled, without results.

    #1489321

    In reply to: Desarrollo

    Hey Daniel Gustavo,

    Thanks for reaching out. I’m not sure exactly what you need help with though? Note that we are not a web development agency, we are the creators of the Enfold WordPress theme. We do not accept any type of custom work outside the scope of our own software.

    Best regards,
    Rikard

    #1489316

    Topic: Widget page inactive

    in forum Enfold
    oxyde31
    Participant

    Hello,
    The widget page is completely inactive; none of the buttons are working. In debug mode, I get the following error message:
    Une erreur de type E_ERROR a été causée dans la ligne 153 du fichier /homepages/21/d858425693/htdocs/wp-content/themes/enfold/framework/php/widgets/widget-classes/class-avia-mailchimp.php. Message d’erreur : Uncaught TypeError: strip_tags(): Argument #1 ($string) must be of type string, array given in /homepages/21/d858425693/htdocs/wp-content/themes/enfold/framework/php/widgets/widget-classes/class-avia-mailchimp.php:153
    Stack trace:
    #0 /homepages/21/d858425693/htdocs/wp-content/themes/enfold/framework/php/widgets/widget-classes/class-avia-mailchimp.php(153): strip_tags()
    #1 /homepages/21/d858425693/htdocs/wp-includes/class-wp-widget.php(535): aviaFramework\widgets\avia_mailchimp_widget->form()
    #2 /homepages/21/d858425693/htdocs/wp-admin/includes/widgets.php(276): WP_Widget->form_callback()
    #3 /homepages/21/d858425693/htdocs/wp-includes/widgets.php(845): wp_widget_control()
    #4 /homepages/21/d858425693/htdocs/wp-admin/includes/widgets.php(119): dynamic_sidebar()
    #5 /homepages/21/d858425693/htdocs/wp-admin/widgets-form.php(552): wp_list_widget_controls()
    #6 /homepages/21/d858425693/htdocs/wp-admin/widgets.php(34): require(‘/homepages/21/d…’)
    #7 {main}
    thrown
    Thank you for your help

    Salvador Melendez
    Guest

    Dear Kriesi Team,

    First of all, we apologies for using the Pre-Sales contact form to reach out. We are fully aware that support for the theme should be requested through your official help forum, but unfortunately, due to our specific situation, we cannot create a new thread there because do not have access to our original Purchase Code to register a new forum account and starting a conversation.

    Many years ago, we purchased the WordPress theme Enfold and we are currently using version 4.6.3.1 of the theme.

    We are in the process of updating the PHP version of our server, but the current version of the theme is not compatible with the new PHP version we are trying to install. To resolve this, we need to access the latest version of the theme and update it.

    The problem is that the theme license is linked to an Envato account that we no longer have access to because it has been so long time since we purchased the theme, and therefore it is no longer available. For this reason, we cannot download the update for the theme and the child theme from that account.

    We would like to know what options are available in this case. Is there an alternative way to obtain the theme update without having to purchase a new license?

    We appreciate your help in advance, as we need to resolve this issue in order to complete the PHP update and maintenance of our server. We look forward to your response.

    Best regards.

    #1489311

    Hey Robert Berrier,

    Thank you for using Enfold for such a long time.

    Thanks a lot for your ideas on how to improve Enfold. I’ve added them to our dev repo and will chat with Kriesi about how we can bring them into future development.

    Have a great day.

    Best regards,
    Günter

    #1489310
    Caiser_Souze
    Participant

    Hello,
    I’ve noticed something strange in this latest version that didn’t happen before (I use 7.1.2 + WP 6.8.2).

    On a specific site, I use the native WordPress blog with Enfold and, at least until a few versions ago, when I inserted a gallery (the native Gutenberg element), the lightbox always worked. Now, when I create a gallery, it no longer works. I have correctly enabled the function in the back office: Lightbox Modal Window > checkbox is on

    Is this normal?

    Thanks for any help in solving this situation 😊

    mistermagoo8691
    Participant

    Hi folks.
    SInce the beginning of my work with Enfold, I’ve added all my CSS customizations to the “quick CSS” frame in the Theme options.
    Can I safely cut & paste all those customizations to the “style.css” file, in the Theme file editor?
    (The style.css on the “Enfold CHILD”, of course.)

    I’ve already made a test with the staging website and, after a quick test, it seems I had no side effects.
    Can you confirm I should not have any? Otherwise, I need to do a more detailed test in staging before doing it in production…

    Side note: I have WPML (3 languages in total), and I’ve always kept the 3 different “quick CSS” aligned: there are no differences among the 3.
    Another reason why I’d like to unify the CSS into the style.css file.

    Thanks for your help!
    Bye,
    A.-

    #1489292

    In reply to: Theme Update

    Hey Darren Harlow,

    Thank you for the inquiry.

    You will need the purchase code or access to the account where the license is registered. Since the installation contains a very old version of the theme, you’ll need to download the latest version (7.1.2) from your ThemeForest account and update the theme manually via FTP. Please check this documentation for more info.

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

    Once the theme is updated to the latest version, you’ll be able to upgrade it automatically from the dashboard. To enable this, you’ll need to register a private token: https://kriesi.at/documentation/enfold/theme-registration/#register-my-theme

    We recommend creating a site backup or cloning the site to a different domain, perform the update there, fix any issues before transferring it to the live site.

    Let us know if you need more info.

    Best regards,
    Ismael

    #1489291

    In reply to: avia-head-scripts

    Hey Stefan,

    Thank you for the inquiry.

    You can enable the Enfold > Performance > Delete old CSS and JS files? option to automatically delete these files. This option is located at the very bottom of the Performance panel. If the files persist, you can manually delete them (make sure to create a backup first), then resave the theme options to regenerate the dynamic scripts and stylesheets.

    You can also disable the file compression settings in Enfold and instead enable the compression option in your caching plugin, or install a dedicated optimization plugin such as Autoptimize or BWP Minify.

    Hope this helps.

    Best regards,
    Ismael

    #1489288

    Hi,
    Glad to hear that you have this sorted out, 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

    #1489287

    Topic: avia-head-scripts

    in forum Enfold
    beenee
    Participant

    Hi guys,
    I’ve seen this problem before but can’t get a solution.
    The folder: /wp-content/uploads/dynamic_avia has now 670MB of 3000+ avia-head-scripts.xxx*.js files and keeps growing.

    Can anybody tell me how to get rid of this phenomenon?

    I tried this: https://kriesi.at/documentation/enfold/how-to-clear-the-cache/

    didn’t do anything,

    Thanks, Stefan

    #1489280

    In reply to: 2 menu’s, 2 tokens?

    A backup of the entire website is made every night.
    I’ve exported the theme settings under Enfold->Import/Export and saved them to my local computer (see attachment). Is that correct?

    #1489276

    Topic: Enfold memory error

    in forum Enfold
    frammies
    Participant

    Hi – my system reports kind of enfold memory error? This is with regard to the main page.

    By clicking on the edit-button of the main page, an error screen appears.

    Error code, see Private Content. How can I solve this problem?

    #1489273

    In reply to: 2 menu’s, 2 tokens?

    Hi,

    Thanks for the update. The FTP login details are working, thanks for that. We just need to verify that you have backups of your site? Besides regular updates, you should also export the theme settings under Enfold->Import/Export and save it on your local machine.

    I can’t say what will happen after the update unfortunately, but the child theme will be intact.

    Best regards,
    Rikard

    #1489272

    In reply to: Font color

    Hi,

    Thanks for the update. Did you try setting the p element to the colour of your choice under Enfold->Advanced Styling. You could also check your settings for Main Content Font Color under Enfold->General Styling->Main Content.

    Best regards,
    Rikard

    #1489264

    In reply to: Enfold Theme by Kriesi

    Hey Erik Scheper,
    Thanks for your interest in Enfold, the site that you linked to has been built with the latest Enfold version, and the contact 7 plugin and the mailerlite signup form plugin. So you could build a similar site and change the images & content. But this has not been built with one of our demos, so you may need to do some trial and error to choose the correct elements and settings to copy it exactly.
    A easier route would be to install one of our demos and then change the images and content, check them out and see if you like one of them.
    All of the demos are included, but note that you can only install one at a time, as each new install overwrites the earlier one.
    We have no Pro version, so there is no need to purchase additional elements from us, you may choose to use free or paid plugins to enhance your site, such as, we don’t have a calendar for making appointments, so you may find a free plugin or prefer a paid plugin with more options.
    You will also get 6 months of support in our support forum included, but I recommend upgrading to a full year for just a little more, it is the only time you can get such a good value.
    Screen Shot 2025-09-14 at 6.11.31 AM

    Best regards,
    Mike

    #1489263
    Erik Scheper
    Guest

    Good evening support of Kriesi,

    I am looking to purchase the theme Enfold for $ 59,00. I do have some questions:

    I am looking to more or less duplicate a website (see the URL of the website in the section Private Content)
    This is a quite simple website. Can I duplicate this website with other content and change the background colours in multiple different background colour blocks?

    Is everything I see included in this price or do you need to purchase additional elements to make this website work. (Some other theme supplier called the “pro-version”)

    Also I want to add a calendar for making appointments. Do you have an solution for this?

    Thank you in advance for your reply.

    Kind regards,

    Erik

    #1489259

    In reply to: 2 menu’s, 2 tokens?

    Hello Rikard

    I figured out how to generate a password.

    First, one more question. If you upgrade Enfold to the latest version, will it be compatible with the current version? Because the website creator made changes to the child theme. Will those be preserved after updating Enfold?

    Met vriendelijke groeten
    Kitty

    • This reply was modified 2 months ago by kittyv3.
    #1489255

    In reply to: Font color

    Hi,

    You can set the colour for all heading and the paragraph tag under Enfold->Advanced Styling.

    Best regards,
    Rikard

    #1489249
    Yuktha V
    Guest

    Hi,
    I’m Yuktha V from PluginHive, where we create smart shipping and booking solutions for WooCommerce and Shopify store owners.
    I’m reaching out to explore a mutually beneficial collaboration, such as a link exchange. Specifically, I’d like to request a link placement in your article [https://kriesi.at/archives/enfold-version-3-5-woocommerce-bookings-integration-a-new-layout-mode-5-new-demos-and-more ]. In return, we’d be happy to feature your brand in one of our relevant articles, ensuring visibility for both sides.
    Our goal is simple: help our audiences discover valuable solutions while boosting visibility for both brands.
    If you’re open to this, I’d love to discuss how we can work together. If you’re not the right person, I’d appreciate it if you could point me to the appropriate team member handling partnerships or marketing.
    Looking forward to your thoughts!
    Best regards,
    Yuktha V
    Team PluginHive

    #1489248

    In reply to: Logo to small [solved]

    Hey koomo,

    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

    #1489242

    Topic: Checkout problem

    in forum Enfold
    napsteris
    Participant

    Hi Enfold Support,

    I’m using Flux Checkout with the Enfold theme, and I’ve confirmed with the plugin developers that Flux works fine with WooCommerce’s default Storefront theme. The issues only occur when Enfold is active.

    Specifically, Enfold is:
    Injecting custom checkout styling that breaks the field layout and button styles in Flux Checkout.
    Loading checkout-related scripts which cause conflicts and make some buttons unclickable.

    Could you please provide a way to disable Enfold’s checkout styling and scripts so that Flux Checkout can render properly? Ideally, Enfold should allow me to opt out of its custom checkout modifications so that third-party checkout plugins like Flux Checkout can function as intended.

    Thank you for your help!

Viewing 30 results - 421 through 450 (of 243,533 total)