Viewing 30 results - 571 through 600 (of 142,582 total)
  • Author
    Search Results
  • #1489349

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1489339

    Hey rixi,

    Thank you for the inquiry.

    The changes are being overridden by the H4 style configuration in the Advanced Styling panel. You may need to remove that configuration or add the following code to the Quick CSS field.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top #wrap_all .avia-timeline-container.av-meoc0fve-0ab7d904c4d6448157070948d8d30f71 .av-milestone-title {
        font-size: 20px;
      }
    }
    
    

    Best regards,
    Ismael

    #1489331

    Hi,

    why does my Home page look good on desktop, but loses those settings on smaller screens and mobile?

    The issue occurred because a css media query in the Quick CSS field was not closed properly. We have corrected the css code. Please make sure to purge the cache before testing the page.

    Best regards,
    Ismael

    #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 4 months ago by Jason.
    #1489326

    Hi,
    Glad to hear that this works. To change the background image in a color section like a slideshow, add a custom class “color-section-slideshow” to your color section in the Advanced ▸ Developer Settings ▸ Custom CSS Class (no dot)
    Then add this snippet in your child theme functions.php

    function color_section_slideshow() { ?>
      <script>
    document.addEventListener("DOMContentLoaded", function () {
      // Target your color section
      const section = document.querySelector(".color-section-slideshow");
      if (!section) {
        console.warn("No element found with selector .color-section-slideshow");
        return;
      }
    
      // List of background images
      const images = [
        "/wp-content/uploads/path-to-image1.jpg",
        "/wp-content/uploads/path-to-image2.jpg",
        "/wp-content/uploads/path-to-image3.jpg",
      ];
    
      if (!images || images.length === 0) {
        console.warn("No images provided for slideshow");
        return;
      }
    
      let current = 0;
      const delay = 3000; // ms between slides
      const transitionDuration = 1000; // ms for transition
      const effect = "fade"; // "fade" or "slide"
      section.style.position = section.style.position || "relative";
      section.style.overflow = "hidden";
      section.style.backgroundImage = url(${images[0]});
      section.style.backgroundSize = "cover";
      section.style.backgroundPosition = "center center";
      images.forEach((src) => {
        const img = new Image();
        img.src = src;
      });
      const overlay = document.createElement("div");
      overlay.style.position = "absolute";
      overlay.style.top = "0";
      overlay.style.left = "0";
      overlay.style.width = "100%";
      overlay.style.height = "100%";
      overlay.style.backgroundSize = "cover";
      overlay.style.backgroundPosition = "center center";
      overlay.style.zIndex = "0";
      overlay.style.pointerEvents = "none";
      overlay.style.opacity = "0";
      overlay.style.transition = opacity ${transitionDuration}ms ease-in-out, transform ${transitionDuration}ms ease-in-out;
      section.appendChild(overlay);
    
      function showNextImage() {
        current = (current + 1) % images.length;
        overlay.style.backgroundImage = url(${images[current]});
    
        if (effect === "fade") {
          overlay.style.transform = "none";
          overlay.style.opacity = "1";
    
          setTimeout(() => {
            section.style.backgroundImage = url(${images[current]});
            overlay.style.opacity = "0";
          }, transitionDuration);
        } else if (effect === "slide") {
          overlay.style.transition = "none";
          overlay.style.transform = "translateX(100%)";
          overlay.style.opacity = "1";
          overlay.offsetHeight;
          overlay.style.transition = transform ${transitionDuration}ms ease-in-out;
          overlay.style.transform = "translateX(0)";
    
          setTimeout(() => {
            section.style.backgroundImage = url(${images[current]});
            overlay.style.transition = "none";
            overlay.style.opacity = "0";
            overlay.style.transform = "translateX(100%)";
            setTimeout(() => {
              overlay.style.transition = opacity ${transitionDuration}ms ease-in-out, transform ${transitionDuration}ms ease-in-out;
            }, 20);
          }, transitionDuration);
        }
      }
      const intervalId = setInterval(showNextImage, delay);
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'color_section_slideshow', 99 );

    Change the images in the snippet to suit and change const effect = “slide”; to “fade” or “slide” as you wish.

    Best regards,
    Mike

    • This reply was modified 4 months ago by Mike. Reason: corrected snippet
    #1489312

    Thank you for testing the Child Theme on the Staging Site.
    I described above that I was clicking the red X on the right hand corner of the Element in Advanced Styling to hide history of changes.
    Is it true that clicking the red X deletes the changes made for that Element?

    If I do not click the red box and save change, then set Button Radius to 20px and All Headings (H1-H6) Text Transform to None, why does my Home page look good on desktop, but loses those settings on smaller screens and mobile? Please see the headings and buttons in Insurance Litigation, Real Property Litigation and the other boxes on desktop, smaller screens and mobile.
    Can you please check and please help me fix it?
    Thank you.

    #1489308

    Hi Ismael,

    Thanks for that I must still be doing something wrong. I can move it using those controls but it changes the font sizes. As soon as I correct the fonts it snaps back to the right. Any changes to the text box shape changes the font size too and it tries to get in one line. I don’t understand the logic of how it is supposed to work. I just want a rectangle box with text in 5 lines that I can position centre top.

    Many thanks

    #1489303
    rixi
    Participant

    Hi,
    i made a post which should show the title, text and read more button. On the desktop it looks ok but on mobile there is no button.
    Any idea why?

    Many regards rixi

    #1489300

    Hi!

    If you need to adjust the color of the search icon as well, include the following css code.

    #top #header .av-main-nav > li > a > svg:first-child, #top #wrap_all .header_color .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child {
        fill: #006ab5;
        stroke: #006ab5;
    }

    Best regards,
    Ismael

    #1489297

    Hi,

    Thank you for the info.

    You can try this css code to adjust the height of the slider on smaller screens.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top #wrap_all .av-k5zwtv35-b503e223437d26141b6108faf533b96b .avia-slideshow-inner {
        height: 80vh !important;
      }
    
      #top #wrap_all .av-k5zwtv35-b503e223437d26141b6108faf533b96b .avia-slideshow-inner li,
      #top #wrap_all .av-k5zwtv35-b503e223437d26141b6108faf533b96b .avia-slideshow-inner li div,
      #top #wrap_all .av-k5zwtv35-b503e223437d26141b6108faf533b96b .avia-slideshow-inner li div img {
        height: 100%;
        object-fit: cover;
      }
    }

    Result:

    Screenshot-2025-09-17-at-11-18-28-AM

    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

    #1489289
    bemodesign
    Participant

    I think that my CSS code is stretching out my interior page image sliders.

    when I remove this code, the Easy Slider looks perfect on mobile, but then the Homepage main image is short and cut off.

    how can I get code to make the home page main image longer and fix with the buttons, and also have the Easy Slider look proportional?

    here is the code I had to remove to make Easy slider look right, but home is too short now:

    @media only screen and (max-width: 768px) {
    .responsive #top .avia-slideshow-inner, .responsive #top .avia-slideshow-inner img {
    height: 450px !important;
    }
    }

    #1489275
    fanlokbun
    Participant

    In layerslider I want a text box center. Whatever I do it snaps to the right of the page. There is only an Position left top option. How do I have a text box that I can position where I want it?
    Thanks

    #1489257

    Sorry for the delayed response, and thanks so much for your reply!

    To answer your questions: my Songs page is set up using Single Author, big preview, Excerpt with read more link.

    I do not post the excerpts in a specific order; they are currently organized by date which works for now. This way the most recent post is at the top, the oldest post is as the bottom.

    On the “Blog” page, I add to the song posts with a diary of how the song was made. But I do that randomly, and I’d like the most recent blog post to come to the top of the Blog page filter.

    However, if I change the publish date on the blog post of an older song, it will affect its ordering on the “Songs” page, which I don’t want. I want the older songs to stay at the bottom even if I update the entry.

    So essentially, same blog posts, but two different orderings on two different pages.

    I enclosed links below so you can see how I have it right now. I’d like to be able to change the date on the blog entry, which would bring new blog entries to the top, but also somehow keep the list on the Songs page as-is.

    I’m sorry if this sounds confusing. I honestly think I’m confusing myself lol.

    #1489236

    Hey koomo,

    Thank you for the inquiry.

    Please add this css code to adjust the position of the overlay inside the carousel.

    .swiper-slide span.image-overlay.overlay-type-image {
        left: 0 !important;
        top: 0 !important;
    }

    Best regards,
    Ismael

    #1489230

    Hi,
    Thanks for your patience, the reason this is occuring is becuse you have a script adding the read more links:

    (function($){
      $(window).on('av-height-change', function() {
        $('.av-masonry:not([class*="-gallery"]) .av-masonry-entry').each(function() {
          var more = $(this).find('.av-masonry-read-more');
          var cont = $(this).find('.av-masonry-entry-content');
      
          if( more.length == 1 ) return;
          cont.append('<div class="av-masonry-read-more">Lees meer ></div>');
        });
      });
    })(jQuery);

    they are added after the page load and the masonry has set the abosulte item heights, which is used in the grid placement, thus the 36px height of the read more offsets the 30px margin bottom, so you have no space. This is also occuring on the desktop version, there you have set a 70px bottom margin, but after the read more is added the space looks about 30px, you probly didn’t notice.
    So the solution is to change your custom css for mobile from margin-bottom: 30px !important; to margin-bottom: 70px !important;

    Best regards,
    Mike

    #1489225

    Hi,
    Typically updating from v4.x to v7.x should cause no major issues as the theme is backward compatible, but if your child theme has any customized elements, or a header.php or footer.php, these will cause issues, and should be removed first.
    Updating via FTP by overwriting the theme files will also cause issues as older files will be left behind, updating by uploading the theme as “new” in the WP backend is safer as WordPress removes the old directory and then adds the new directory.
    I have not seen an issue where an update lead to the shortcodes showing (e.g. [av_textblock]), do you see the shortcodes on the frontend or in the backend in the Block Editor? Pages & Posts created with the ALB (Advanced Layout Builder) should not be opened, edited, or saved with the Block Editor, always edit ALB pages with the ALB editor. Also don’t use any other builders like elementor, beaver builder, visual composer, etc.
    Incremental updates is not needed as I have seen v3.x updated without issues. I recommend exporting your child theme settings for backup, and exporting the layerslider sildes. Then create a staging site to test the update on, this way your live site is unchanged while your issue can be examined. Ensure that your stagging site is not using a cache plugin or object-oriented cache from your server, or a CDN, as these may not show the updated site correctly.
    The only issues that I find for Ninja Forms are old:
    2015: https://kriesi.at/support/topic/customize-ninja-form-styling/
    2016: https://kriesi.at/support/topic/enfold-ninja-forms-conditional-logic-problems/
    2019: https://kriesi.at/support/topic/ninja-forms-not-working-after-latest-wordpress-update/
    2021: https://kriesi.at/support/topic/ninja-forms-breaking-with-enfold/
    Note that the layerslider has had many changes and you may need to edit your slides and resave the transforms and minor settings, there is nothing we can do about that, the layerslider doesn’t seem to be fully backward compatible.

    Best regards,
    Mike

    #1489211

    In reply to: portfolio image sizing

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1489191
    aintzerga
    Participant

    Hello.
    We’re creating a Masonry gallery to display blog posts, with 12 categories.
    When viewing the page, we see that the Masonry gallery only displays 8 filter categories, not the 12 I have selected.
    I’ve created this test page, where you can see an article gallery at the top with the Magazine option, where you can see the 12 filter categories, and another one below with the Masonry gallery option, where only 8 categories are displayed, even though I have 12 selected.
    See test pages: https://saitra.com/aaa-pruebas/

    How can we fix this?

    Thank you.

    #1489180

    Hi,

    For the follow-up inquiries, please continue here: https://kriesi.at/support/topic/color-setting-logo-area-heading/

    Best regards,
    Ismael

    #1489179

    Hey schub1981,

    Thank you for the inquiry.

    We may need to inspect the elements on your site in order to provide an appropriate solution. Please provide the site URL in the private field. Have you tried adjusting the color options in the Enfold > General Styling > Logo Area tab?

    In the meantime, to adjust the color of the burger menu icon on mobile view, try to use the following css code:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .header_color .av-hamburger-inner,
      .header_color .av-hamburger-inner::before,
      .header_color .av-hamburger-inner::after {
        background-color: #da2727;
      }
    
      .html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet,
      .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner,
      .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::before,
      .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::after {
        background-color: #da2727;
      }
    }
    

    Best regards,
    Ismael

    #1489176

    Hey ckrizman,

    Thank you for the inquiry.

    There is no built-in option for this by default, but you can adjust the svg divider position using css. For example, you can use the following code to move the top divider 50px upward and the bottom divider 100px downward:

    .avia_transform .av-extra-border-element.border-extra-diagonal {
        height: 250px;
        margin-top: -100px;
    }
    
    .avia-divider-svg.avia-divider-svg-tilt.avia-divider-svg-top.avia-flipped-svg.avia-to-front.avia-svg-original {
        margin-top: -50px;
    }

    Best regards,
    Ismael

    #1489162
    pelgrimrat
    Participant

    Dear people of the support forum,

    I am having an issue on this page (and also on other pages with a masonry grid layout):

    On mobile, the bottom margins only load after a delay. I’m not sure how long it takes. They seem to load after scrolling un and down a couple of times. The frames containing the post previews are pushed against eachother, before the bottom margins kick in. Obviosly, I would like the margins to load upon loading the page instantly.

    I have set the margin with this code:

    @media only screen and (max-width: 767px) {
     #top .av-masonry .av-masonry-entry {
        width: 96% !important;
        margin-right: 0% !important;
    	margin-bottom: 30px !important;
    }
    }

    How can this be fixed?

    Thanks so much in advance!

    #1489160
    schub1981
    Participant

    The logo background (logo area background color) is set to white (#ffffff). This works for both the full and narrow desktop views.

    But the background is dark gray on mobile devices. It can only be changed with very bright special colors, which do not fit into the color scheme.
    Due to the dark background, the burger menu is no longer visible.

    Another question: How and where can I change the colors of the search icon and the social icons in the header? When I hover over them with my mouse, a bright color appears that is not set anywhere in the styling.

    So, two open points/questions:
    1. Why do the header colors differ between desktop and mobile? How can I synchronize this?
    2. How and where are the colors of the icons and the burger menu in the header adjusted?

    #1489151

    In reply to: Website soft brick

    Hi,

    Thank you for the inquiry.

    Most of the color styling options are located under Enfold > General Styling. You can check the preview to see which element a specific field controls. If you can’t find the correct setting there, you can also edit the element in the Advanced Layout Builder and adjust the color options in the Styling tab.

    To adjust the color of the phone number, please add this code in the Quick CSS field:

    #top .header_color .phone-info a {
        color: #ffffff;
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.

    Let us know the result.

    Best regards,
    Ismael

    #1489144

    Hey samholl,

    The update to 7.1.2 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

    #1489125
    DavidMacullum
    Guest

    Hi,

    I hope you’re doing well.

    I’m reaching out to see if you’re currently accepting guest posts for your website. I’d love to share a few topic ideas that would fit nicely with your existing content and add value for your readers.

    If you’re interested, I can write a well-researched, original article at no cost — all I’d ask in return is to include one relevant backlink within the content.

    Please let me know if this sounds good to you, and I’ll be happy to send over some topic suggestions.

    Looking forward to hearing from you

    Best regards,

    David Macullum

    #1489123

    At the very least, it would be good to know your header settings (logo left, menu below, etc.). For example, when I work on the new version with (logo left, menu right), the social bookmarks are located within main_menu. When I look at the board at the top here, they are located next to main_menu. – That depends on where I place the flex container.

    so it all depends on your setting . so it will be the best to see the concerning site.

    f.e. if you got a setting that the burger is visible from the beginning – like in freelancer demo

    then you had to remove the media-query setting for screens above 768px.

    #1489121

    Thanks for your quick answer, Guenni.

    I found the right setting (main menu on the left) :-)

    But I have another problem with the color settings: The logo background (logo area background color) is set to white (#ffffff). This works for both the full and narrow desktop views.

    However, the background is gray on mobile devices. It can only be changed with very bright colors, which do not fit into the color scheme.
    Due to the dark background, the burger menu is no longer visible.

    Another question: How and where can I change the colors of the search icon and the social icons in the header? When I hover over them with my mouse, a bright color appears that is not set anywhere in the styling.

    So, two open questions:
    1. Why do the header colors differ between desktop and mobile?
    2. How and where are the colors of the icons and the burger menu in the header adjusted?

    • This reply was modified 4 months, 1 week ago by schub1981.
    #1489120

    btw. your code sometimes leads to show the social icons twice. Because the example of medical demo has the navigation below the logo container.
    Then we have those social icons twice in the DOM

    Therefore (menu below the logo) , it is better to define your code as follows:
    ( for those settings where the social bookmarks are not visible below 767 you had to adjust that code)

    @media only screen and (max-width: 479px) {
      .responsive #top #wrap_all #header .main_menu > .social_bookmarks {
        display: block;
      }
    }
Viewing 30 results - 571 through 600 (of 142,582 total)