Viewing 30 results - 3,901 through 3,930 (of 243,745 total)
  • Author
    Search Results
  • #1473651

    I tried adding #avia-standard-logo {
    align-content: center;
    }

    that didn’t work :/

    and also, perhaps you know how to add Google fonts to Enfold?

    #1473644

    Hey JannyPolak,
    Thank you for your patience, for Mailchimp you would need to add Recaptcha to your Mailchimp form in Mailchimp, as the theme only shows the Mailchimp content and can not add to the API.
    I’m not sure if Mailchimp offers Recaptcha, perhaps in the paid version, I only have the free version.
    Otherwise you could use the Enfold form or a plugin like CF7

    Best regards,
    Mike

    Looking further into this issue, it only has to do with the mobile version of this site. Does Enfold add a noindex to the mobile version??
    See this thread: https://support.google.com/webmasters/thread/13756862/noindex-detected-in-robots-meta-tag?hl=en

    Right. That’s what I found too. That’s why it’s so confusing. Is Google Search Console (GSC) adding this to it saying it’s a “bad” page? If so, why is only coming up when Enfold is active??

    @mike – it is as mentioned just before head tag is closing. But i do not have it on any of my enfold installations even on those which are in combination with Yoast SEO.

    but nevertheless in combination with that “new” indexifembedded it is ok :
    https://developers.google.com/search/blog/2022/01/robots-meta-tag-indexifembedded

    #1473628
    bsingenberger
    Participant

    Hello
    We can no longer publish blog posts on our website, even though they are created identically.
    Do you know anything about this issue?
    All updates of WordPress and Enfold have been made.
    Thank,
    Beat

    #1473623

    Topic: White lines in footer

    in forum Enfold
    hannelynne
    Participant

    Hi! I am using the Enfold Health demo, and it is going okay. But in mine white lines have appeared over the footer widget section, between the footer and socket, and around the little square box with the arrow. How can I get rid of it? The demo itself does not have that:

    Kind regards, Hanne

    #1473621

    Hi,

    I have seen now that I activate the enfold or enfold child theme it drops to 256M and if I activate the twenty twenty five theme it changes what appears in the health info site:

    Enfold: https://snipboard.io/C7RKOT.jpg

    Twenty twenty-five: https://snipboard.io/B6HOvI.jpg

    You don’t see it the same as me? I don’t understand.

    Best regards,

    Jordi

    #1473620

    Hey simog72,

    Enfold has the same minimum required PHP as WordPress, but we recommend that you use a higher version: https://wordpress.org/about/requirements/.

    If you are running old versions of the theme on your other sites, then we recommend that you update them to the latest version (6.0.8):

    https://kriesi.at/documentation/enfold/theme-registration/
    https://kriesi.at/documentation/enfold/theme-update/

    Best regards,
    Rikard

    Hi,

    The minimum required PHP version to run Enfold is the same as for running WordPress, but we recommend that you use a higher version than that: https://wordpress.org/about/requirements/

    I still don’t understand how you are downloading the theme files if you don’t have a Themeforest account? I’m not sure about the .sit format, you should try using .zip instead. I would recommend that you update using a token though, otherwise you will have this same problem each time you want to update. Please check the documenation here:

    https://kriesi.at/documentation/enfold/theme-registration/
    https://kriesi.at/documentation/enfold/theme-update/.

    Best regards,
    Rikard

    #1473615

    Hi,

    There’s nothing like that in the theme, and I can’t see that happening on my end. I activated Enfold and the constants are the same:

    
    WP_MEMORY_LIMIT	768M
    WP_MAX_MEMORY_LIMIT 768M
    

    Best regards,
    Rikard

    #1473614

    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

    #1473613
    simog72
    Participant

    HI
    i m planning to renew some sites devoleped wth your theme starting from 2018 up to today
    I really ask your help to have a table with compatibility between different version of PHP – WordPress – Enfold
    starting from my oldest Enfold 5.6.8
    This will help me to decide how many new licences buy versus different sites to renew (and plan licences buy during the re-working period)

    Thx, Regards
    Simone G.

    #1473611

    if you got different content height the arrows will adjust because of 50% position – maybe it is best to have an absolute value for the top position.
    Next i think they should not lay over content
    Because the demo ( Link ) only got smallarrow setting and no headings – this is a interims solution:

    #top .avia-smallarrow-slider-heading {
      height: 100%;
      position: absolute;
    }
    
    #top .avia-smallarrow-slider .avia-slideshow-arrows {
      position: absolute;
      width: 100%;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3
    }
    
    #top .avia-smallarrow-slider .avia-slideshow-arrows .prev-slide {
      left: -35px
    }
    
    #top .avia-smallarrow-slider .avia-slideshow-arrows .next-slide {
      right: -35px
    }
    #1473610

    Hello everyone,
    For those who are interested, you can download the latest version of the Italian language

    Download here
    Translation: Italian language
    Version: Enfold 6.0.8
    Released on: 14th December 2024
    Strings: 6549
    All translations are synchronised with the source files

    Regards
    Luigi

    #1473609

    i guess – as the frames – it will be better for positioning to choose display : fixed
    I don’t know how the vw unit reacts to the scroll bar thickness. However, it seems to be the case that this must unfortunately be taken into account. For this reason alone, it is important to align all four pseudo containers to the top left.
    for the mentioned Demo this works in all browser i do have on my Mac (FF dev, FF, Safari, Chrome)

    .av-frame:before,
    .av-frame:after {
        pointer-events: none;
        display:block !important;
    }
    
    .av-frame.av-frame-top.av-frame-vert:before {
        content: '';
        left: 30px;
        top: 30px;
        height: calc(50vh - 30px);
        width: calc(50vw - 38px);
        border-top: 1px solid #102f5d !important;
        border-left: 1px solid #102f5d !important;
        position: fixed;
    }
    .av-frame.av-frame-right.av-frame-hor:before {
        content: '';
        left: calc(50vw - 8px);
        top: 30px;
        height: calc(50vh - 30px);
        width: calc(50vw - 38px);
        border-right: 1px solid #102f5d !important;
        border-top: 1px solid #102f5d !important;
        position: fixed;
    }
    .av-frame.av-frame-bottom.av-frame-vert:before {
        content: '';
        left: calc(50vw - 8px);
        top: 50vh;
        height: calc(50vh - 30px);
        width: calc(50vw - 38px);
        border-right: 1px solid #102f5d !important;
        border-bottom: 1px solid #102f5d !important;
        position: fixed;
    }
    .av-frame.av-frame-left.av-frame-hor:before {
        content: '';
        left: 30px;
        top: 50vh;
        height: calc(50vh - 30px);
        width: calc(50vw - 38px);
        border-left: 1px solid #102f5d !important;
        border-bottom: 1px solid #102f5d !important;
        position: fixed;
    }

    if you got a different frame width than 10px we had to adjust some settings.

    #1473607

    add to your css of first post :

    .av-frame:before,
    .av-frame:after {
      pointer-events: none;
    }

    i do not see your site – but with the demo : “Enfold Hotel” i made some tests in dev tools.
    There is always a shift of bottom lines. Some browsers have that border/height 1px difference – so mybe it would be better to position all in relation to the top position.

    #1473605

    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

    #1473604

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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

    #1473603

    Hi,
    Glad Ismael could 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

    #1473601

    In reply to: Enfold Licence Renewal

    Hi,
    Your support license is good until 2025-12-14 your update license is for life, you are using an old version so you may need to manually update.
    To update your version of Enfold you may need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    #1473600

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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

    #1473599

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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

    #1473598

    In reply to: Enfold Licence Renewal

    I needed to post a support question but it said that my license had expired and I needed to re-purchase it – so I purchased a 12 month license. Was that not required?

    My query above actually related to whether Enfold software updates automatically update on my site.

    Thank you.

    #1473593

    Thank you for reply! I am pretty sure that the issue is not coming from the htaccess because I even duplicated all values from working site htaccess, and everything is the same. Enfold button is configured correct, and again this issue is not coming from Enfold button, but the whole site, because the download function from media files section is acting similarly

    Hi and thanks for the responses. that was a typo (late night, tired, frustrated.) I meant to type 400×400. Sorry to make you do that ‘run-around” but that info is useful. Yes my export settings are RGB at 8bit. I have done some experimenting with color profiles too. That was a good hunch to check the RGB vs CMYK settings and the 8bit vs 16 bitt as well. These are just run-of-the-mill 8bit RBG JPGs. I will try the deactivating the theme procedure. Also, I had a Smush plugin installed. I have disabled it for these tests and it didn’t do anything. I am also running W3 Total Cache and UpdraftPlus – Backup/Restore. So now only 2 plugins. The Site hosting company, ipage.com, is now owned by BlieHost. It might be a PHP related issue. What is the minimum version of MyPHP that you have tested with this theme?

    Also I received an email from ThemeForest to download the new version, which I did. It is just a loose folder of the theme. I tried compressing it as a SIT file and reinstalling it through the Appearance>Themes tab. I guess that is not the correct way. I see there is a way to import the new theme if you have some sort of “valid Envato private token”. I don’t have an Envato account and the last time I installed their junk it screwed my site up. is there a way to update this in a simple way? My current Enfold Theme Version Number is 6.0.3 and the new download is , well, I don’t know because it does not state a version number. I would share a link but I don’t really want corrupted content portfolio pages up there, but let me see what I can do. thanks for any help. https://chappledesign.com

    #1473589
    #1473583
    strumpumpel
    Participant

    Dear support, @NIKKO @rikard
    I’ve been trying to implement the Google Tag Code from Google Ads for hours.
    But i get every the error:
    Uncaught Error: Undefined constant “‘wp_head’” in wp-content/themes/enfold-child/functions.php:24
    Stack trace:
    #0 wp-settings.php(672): include()
    #1 wp-config.php(104): require_once(‘/var/www/vhosts…’)
    #2 wp-load.php(50): require_once(‘/var/www/vhosts…’)
    #3 wp-admin/admin.php(34): require_once(‘/var/www/vhosts…’)
    #4 wp-admin/theme-editor.php(10): require_once(‘/var/www/vhosts…’)
    #5 {main}
    thrown
    What its wrong???

    Here is my script
    /**
    * Google Tag Manager Head Script
    */
    function add_custom_gtm(){
    ?>
    <!– 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-ABCDEFGH’);</script>
    <!– End Google Tag Manager –>
    <?php
    }

    add_action(‘wp_head’, ‘add_custom_gtm’);
    /**
    * Google Tag Manager Body Script
    */
    function google_tag_manager_body_code() { ?>
    <!– Google Tag Manager (noscript) –>
    <noscript><iframe src=”https://www.googletagmanager.com/ns.html?id=GTM-ABCDEFGH&#8221;
    height=”0″ width=”0″ style=”display:none;visibility:hidden”></iframe></noscript>
    <!– End Google Tag Manager (noscript) –>
    <?php }
    add_action( ‘ava_after_body_opening_tag’, ‘google_tag_manager_body_code’, 1);

    Can anybody help?

    Sooo great!

    #1473582

    Dear support, @NIKKO @rikard
    I’ve been trying to implement the Google Tag Code from Google Ads for hours.
    But i get every the error:
    Uncaught Error: Undefined constant “‘wp_head’” in wp-content/themes/enfold-child/functions.php:24
    Stack trace:
    #0 wp-settings.php(672): include()
    #1 wp-config.php(104): require_once(‘/var/www/vhosts…’)
    #2 wp-load.php(50): require_once(‘/var/www/vhosts…’)
    #3 wp-admin/admin.php(34): require_once(‘/var/www/vhosts…’)
    #4 wp-admin/theme-editor.php(10): require_once(‘/var/www/vhosts…’)
    #5 {main}
    thrown
    What its wrong???

    Here is my script
    /**
    * Google Tag Manager Head Script
    */
    function add_custom_gtm(){
    ?>
    <!– 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-ABCDEFGH’);</script>
    <!– End Google Tag Manager –>
    <?php
    }

    add_action(‘wp_head’, ‘add_custom_gtm’);
    /**
    * Google Tag Manager Body Script
    */
    function google_tag_manager_body_code() { ?>
    <!– Google Tag Manager (noscript) –>
    <noscript><iframe src=”https://www.googletagmanager.com/ns.html?id=GTM-ABCDEFGH&#8221;
    height=”0″ width=”0″ style=”display:none;visibility:hidden”></iframe></noscript>
    <!– End Google Tag Manager (noscript) –>
    <?php }
    add_action( ‘ava_after_body_opening_tag’, ‘google_tag_manager_body_code’, 1);

    Can anybody help?

    #1473581

    Hello,

    Enfold limits the memory limit somewhere.

    The memory limit of the server is 768M, this is how it appears on the health info site.

    If I change the memory limit in the wp-config, enfold ignores it, but twenty twenty-five does.

    If you access WordPress, twenty twenty-five is now active and the wp-config memory limit is 768M and the site health info indicates this.

    If I activate enfold it returns to 256M

    Can you check it and tell me why this happens?

    Thank you

Viewing 30 results - 3,901 through 3,930 (of 243,745 total)