Viewing 30 results - 421 through 450 (of 243,093 total)
  • Author
    Search Results
  • #1487417
    sonia74140
    Participant

    Hi, my website is hosted by OVH.
    It seems to be an issue with Enfold theme.
    I need to set up one Demo but it cannot complete the task.
    Could you please help me to set the Demo for Freelance I need ?
    Thanks for your reply,
    Best regards,
    Sonia

    #1487411
    Rastoffarai
    Participant

    Hello Enfold Team,

    I have CLS issue on my first color section (on all of my main pages).
    I have managed to fix the issue, but when I realized that my design is not looking good on IpadPro, I have added a second color section with a media query only between 1024-1025Px. Since then the CLS issue is back and I can´t find a solution.
    Can you please have a look what I am doing wrong?

    Best regards,
    Christopher

    #1487409

    ok – if you like to have on default a sidebar header – and on homepage only the header top position.
    ( for that scenario we need than a bit different css too if you like to have slide-out from left to right)

    1 set your enfold child to header top and make all your decisions you like to have for that header ( height, logo left or right, navigation position, shrink or not, etc pp )

    2 Go to your homepage editor and make your decision there – f.e. if it should have transparency etc.

    3 Look now to your homepage with dev tools of your browser. Note your ID of that page and look what classes are set on #header
    e.g.: ( all_colors header_color light_bg_color av_header_top av_logo_right av_main_nav_header av_menu_left av_custom av_header_sticky av_header_shrinking av_header_stretch av_mobile_menu_tablet av_header_searchicon av_header_unstick_top_disabled av_bottom_nav_disabled av_header_border_disabled )

    4 now switch back to your header left position.

    put this to your child-theme functions.php:

    (remove options you do not need – or replace – f.e. header_size and header_custom_size and replace by header_size: ‘slim’ / or large )
    you can find those corresponding header settings in : avia_header.php

    function av_change_header_style($header){
      if(is_page(array( 17, 123456))){ 
        $header['header_position']    = "header_top";
        $header['header_layout']      = 'logo_right main_nav_header menu_left';
        $header['header_size']        = 'custom';
        $header['header_custom_size'] =  140;
        $header['header_shrinking']   = 'header_shrinking';
        $header['header_sticky']      = 'header_sticky';
        $header['header_unstick_top']   = 'header_unstick_top';
        $header['header_stretch']     = 'header_stretch';
        $header['header_transparency']  = 'header_transparency header_glassy';
    
        $header['header_class'] = " all_colors header_color light_bg_color av_header_top av_logo_right av_main_nav_header av_menu_left av_custom av_header_sticky av_header_shrinking av_header_stretch av_mobile_menu_tablet av_header_searchicon av_header_unstick_top_disabled av_bottom_nav_disabled av_header_border_disabled";
      }
      return $header; 
    }
    add_filter('avf_header_setting_filter','av_change_header_style');

    here in this example there are two pages (ID’s) replaced with that different layout – adjust to your home page ID
    this filter has a lot more options. Enter on $header['header_class'] your noted classes from point 3.

    see example page: https://clean.webers-testseite.de/

    #1487403

    Hey Chris McNabb,

    Thank you for the inquiry.

    The automatic updater in the dashboard will no longer work in version 4.5.5. You will need to download the latest version of the theme from your Themeforest account, then upload it to your server via FTP. Don’t forget to create a site backup before proceeding. For more info about updating, please check this documentation.

    https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
    https://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Best regards,
    Ismael

    #1487402
    Chris McNabb
    Guest

    I purchased Enfold a long time ago and have been using it on my site.
    I need to update it and the current version I’m on is 4.5.5.
    But the latest version looks like it’s 7.1.
    How do I update the Enfold theme on my site from 4.5.5 to 7.1?
    I tried to updated it from inside WordPress admin on my site, but it just says I’m on 4.5.5 and that’s the latest version. I found the 7.1 version when I logged into ThemeForrest.
    So, how to I get my site updated?
    I need step by step instructions.
    Thank you.
    Chris McNabb

    #1487397

    Hey rajprajapati,

    You could try using the Page Content element, or create a custom layout: https://kriesi.at/documentation/enfold/custom-layout-and-dynamic-content/

    Best regards,
    Rikard

    Hey rajprajapati,

    You can do that by activating debug mode under Enfold->Layout Builder->Show advanced options. That will show you a new window under the Layout Builder which will contain all shortcodes, which can be copied between sites.

    Best regards,
    Rikard

    #1487391
    rajprajapati
    Participant

    Hi would like to ask if there is any way i can use Testimonial from one place to multiple pages as I have to show testimonial on different pages for normal way i have to type again and again and add or remaining is diffcult from many pages

    and how to remove “Enfold Theme by Kriesi” from footer ..

    rajprajapati
    Participant

    Hi

    I have mulitple Enfold Theme install on different site.. and i have to create same page with almost Same Content so is there any way i can copy the page content from a enfold theme to another enbfold site

    #1487388

    Thank You So Very Much! Updated Widget Code works perfect!
    Couple personal mods, some added css, and back to normal!

    You are welcome to mark this thread as closed.
    Thank You Again for All your Time and Support!

    Be Safe in this Crazy World!

    #1487386

    well you got a page like this for your layout: https://kriesi.at/themes/enfold-photography/

    try:

    @media only screen and (max-width:767px) {
      #top .av-logo-container .inner-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "nav logo";
      }
    
      #top .av-logo-container:after,
      #top .av-logo-container .av-sidebar-social-container {
        background-color: gray;
      }
    
      .responsive #top #header .logo {
        grid-area: logo;
        width: unset !important;
        justify-self: end;
      }
    
      .responsive #top #wrap_all .main_menu {
        grid-area: nav;
        justify-self: start;
        width: unset !important;
        left: 0;
        right: unset;
        position: relative;
      }
    }
    
    /* === change the width values to your needs f.e. 500px instead of 350px  === */
    /* === burger slide-out from the leftside === */
    
    .av-burger-overlay-scroll {
      width: 350px;
      left: -350px;
      max-width: 100%;
      transition: all 0.5s cubic-bezier(0.75,0,0.25,1);
    }
    
    .html_av-overlay-side .av-burger-overlay-scroll {
      left: 0;
      max-width: 100%;
      transform: translateX(-350px);
      transition: all 0.5s cubic-bezier(0.75,0,0.25,1);
    }
    
    /* === hide header on home page === */
    
    @media only screen and (min-width:768px) {
      .html_header_sidebar #top.home #header {
        display: none !important;
      }
    
      .html_header_left #top.home #main {
        margin-left: -2px !important;  /* === to ensure there aren't any white flashes on the left  === */
        position: relative;
      }
    }
    #1487384

    Hi,
    Ok i understand.
    Can you install the Enfold Modern Demo one please ?
    Many thanks in advance,
    Yves

    #1487382

    Hi,

    Did you register your license? https://kriesi.at/documentation/enfold/theme-registration/. If the updates still don’t appear after that, then try this plugin: https://envato.com/market-plugin/

    Best regards,
    Rikard

    #1487381

    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

    #1487378
    napsteris
    Participant

    Hi,

    after installing Flux checkou plugin i have problem with styling.

    I had exact problem in different eshop which is exact copy of this eshop in different language. You help me with this CSS:

    @media only screen and (max-width: 325px) {
    .woocommerce-checkout .flux-checkout.flux-checkout–modern,.woocommerce-checkout .woocommerce {
    max-width: 320px;
    }
    }
    @media only screen and (min-width: 374px) and (max-width: 380px) {
    .woocommerce-checkout .flux-checkout.flux-checkout–modern,.woocommerce-checkout .woocommerce {
    max-width: 375px;
    }
    }
    @media only screen and (min-width: 424px) and (max-width: 430px) {
    .woocommerce-checkout .flux-checkout.flux-checkout–modern,.woocommerce-checkout .woocommerce {
    max-width: 425px;
    }
    }
    @media only screen and (min-width: 766px) and (max-width: 770px) {
    .woocommerce-checkout .flux-checkout.flux-checkout–modern,.woocommerce-checkout .woocommerce {
    max-width: 768px;
    }
    }
    @media only screen and (min-width: 888px) and (max-width: 900px) {
    .woocommerce-checkout .flux-checkout.flux-checkout–modern,.woocommerce-checkout .woocommerce {
    max-width: 890px;
    }
    }

    body.woocommerce-checkout {
    max-width: 100vw;
    overflow-x: hidden;
    }

    I paste this CSS to copy of eshop and it didnt work like on first eshop. Can you please help me resolve this issue?

    I tried to switch from enfold theme to Twenty Twenty Four and checkout styling was correct. Enfold version is 7.0

    Sending login to both eshops in private content.

    Thanks.

    #1487371
    This reply has been marked as private.
    #1487369

    Hi,

    Thank you for the update.

    Unfortunately, the combo widget hasn’t been updated to retrieve and display product reviews from their new location. It can only pull content from the default comment entries. You may need to switch to a different reviews widget, such as one of the following.

    https://wordpress.org/plugins/customer-reviews-woocommerce/
    https://wordpress.org/plugins/judgeme-product-reviews-woocommerce/

    If you’re interested, you can directly modify the enfold/framework/php/widgets/widget-classes/class-avia-combo.php file and replace it with this code:

    https://pastebin.com/LYu68kQR

    Let us know the result.

    Best regards,
    Ismael

    Hi,

    Are you using the form here? https://kriesi.at/support/forum/enfold/#new-post

    We are not seeing the same checkbox there. All content in the private field is only visible to the moderators and the original poster.

    View post on imgur.com

    You can use platforms like Savvyify, Imgur, or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    #1487357

    In reply to: Logo resizing

    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

    #1487355

    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

    #1487354

    Hey sybille gburek,

    Try updating to the latest version of the theme (7.1.1): https://kriesi.at/documentation/enfold/theme-update/

    Best regards,
    Rikard

    #1487353

    Hey Gerry,

    Getting a license is the first thing that you should do, it can be purchased at Themeforest. Once you have access to the theme files, then the update to 7.1.1 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

    Hi Richard,
    Steve has shared his login details here so I can communicate directly with you on this issue.
    It appears that LiteSpeed cache is causing issues with certain elements on the enfold theme from loading and opening.
    Is this something you can assist with investigating?

    #1487340

    Look at the image you posted. “Product reviews have moved” (Visit new location)
    As I mentioned previously, In a recent update WooCommece moved Product Reviews.

    Have hundreds of reviews that use to be in Comments, now moved to Product Reviews.

    For years these were all stored under the Comments tab, and widget displayed just fine!
    But since they moved to Sub Tab under Products, Combo Widget No Longer display them!

    Just want to continue displaying most recent Product Review Comments in Footer 2.
    For years these displayed just fine with the combo widget, but now no longer do?

    Please Advise!

    #1487338
    Gerry Khalimsky
    Guest

    Hello,
    I am helping a friend with his website. He has an old version of the Enfold theme that needs to be updated to work with the lates recomended PHP version. He has no access to the acount with wich it was originally perchesed.
    The current version installed is 4.1.2.
    We would like to purchase an update – will it work to buy a new license with teamforest and updating with the API key via the theam settings panel?

    #1487329
    Ive133
    Participant

    Hello, it seems i’m not the only one experiencing the Demo installation issue.
    I have purchased ENFOLD and cant use any demo which is quite frustrating since I want to use one to save loads of time.
    When installing a Demo i get the following error message :”cURL error 28: Connection timed out after 10000 milliseconds”
    Please, can you please help me ?
    Many thanks in advance for your time and reply,
    Best Regards,
    Yves

    #1487327

    Hi,

    I have now watched the video and assigned an ID to the form as described. The tag/trigger still did not fire.

    I have now taken a screenshot of everything for you. See Private Content.

    This isn’t the first time I’ve used GTM. On another website where I use Enfold, it was enough to just edit the functions.php.

    I hope the screenshots help.

    Best regards,
    Chris

    #1487316

    Hey icarogioiosi,

    Thank you for the inquiry.

    This is possible but it will require significant modifications that are beyond the scope of support. You may need to hire a freelance developer or contact Codeable.

    -— https://kriesi.at/contact/customization

    You’ll find the css rules for the left header in the themes/enfold/css/layout.css file around line 632.

    
    /*sidebar headers*/
    .html_header_sidebar{}
    
    .... more styles 
    

    Best regards,
    Ismael

    #1487315

    I don’t recall having added that folder and 2 files in enfold-child. But when I hide the folder, the warning notice goes away at the top of the page.
    However, I’m seeing a warning notice below the footer (that I had not seen before) (see screenshot):
    Notice: ob_end_flush(): Failed to send buffer of zlib output compression (0) in /home/dotorgw1/public_html/wp-includes/functions.php on line 5471

    Notice: ob_end_flush(): Failed to send buffer of zlib output compression (0) in /home/dotorgw1/public_html/wp-content/plugins/really-simple-ssl/class-mixed-content-fixer.php on line 107

    In the footer area, colummn 1, I had an icon list there which was generated using the “insert theme shortcodes” tool within the toolbar options. The iconlist still views, but above it is an error message. (See private for screenshot view).

    Hey Kati17,

    I see that you are running an old version of the theme, could you try to update to the latest version (7.1.1) to see if that helps please? The update to 7.1.1 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

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