Viewing 30 results - 2,551 through 2,580 (of 243,848 total)
  • Author
    Search Results
  • There’s only one Enfold and one Enfold Child theme

    Next – on dashboard – themes : how many enfold installations you see there?
    there had to be only the enfold child – and the enfold theme ( and not so important the standard wordpress themes)

    if you are using a child-theme – the child-theme style.css could be used – but isn’t it much easier to use the quick css of your enfold child – general styling – quick css

    Quick CSS
    Just want to do some quick CSS changes? Enter them here, they will be applied to the theme. If you need to change major portions of the theme please use the custom.css file or the Enfold Child theme.

    #1480566
    Damenwahl
    Participant

    Hi there,
    I am using enfold in the last Version. My client chased a font called “Gloria-Hallelujah” and I uploaded it via Fonts Manager. I can see the right font in the backend but it’s not showing on the iPhone/iPad. What went wrong? I already deinstalled some plugins, tried some Extra CSS featured by google for this Problem, installed a woff2 type, installed an deinstalled the font via FileZilla …
    Thanks for your help!
    Greetings Regina

    • This topic was modified 9 months, 2 weeks ago by Damenwahl.

    Hi,

    This modification is intended only for the Enfold theme — it will not work with other themes.

    Best regards,
    Ismael

    Hi @Mike,

    Thanks very much for your reply.
    When you say both worked for you, how did you test them?
    Because the test facility within the Enfold options says they connect fine. So don’t base it on that please.
    The problem is when it comes to someone completing the contact form.
    So if you go to the home page, scroll to the bottom and fill in the contact form… check the results in (the text is white on white, so just highlight it to see).

    Thanks
    Eric

    #1480537

    Topic: color’s text body

    in forum Enfold
    SandraMarino
    Participant

    Hello

    When I bold text in my paragraph, instead of being gray like the rest of the font, but bold, my text is bold but adopts the main color of my site (green). How can I make it keep the color of the font used for the text? (Enfold parallax)

    Thanks for your help
    Sandra

    if you open that parent style.css :

    /*
    * PLEASE DO NOT EDIT THIS FILE!
    *
    * This file is only in your themefolder for WordPress to recognize basic theme data like name and version
    * CSS Rules in this file will not be used by the theme.
    * Instead use the custom.css file that is located in your themes /css/ folder to add your styles.
    * You can copy a style rule from any of your css files and paste it in custom.css and
    * it will override the original style. If you just want to add small css snippets you might also
    * want to consider to add it to the designated CSS option field in your themes backend at: Theme Options->General Styling
    */

    or use the quick css input on enfold (child) options page.

    #1480532

    https://webers-testseite.de/html5-video-fanlokbun-2/
    test my example page on your phone if it is working there.

    I’m not sure if there’s anything else I can tell you, other than what you can see on the page.
    On top ? Well it is the first color-section on that page. If you like to have it behind header – then you had to choose the enfold transparency option for the page.

    Color-Section with custom-class: html5-video ; inside that color-section a code-block element and column (custom-class: overlay) with your image (logo). The width of that column is ruled by css.

    If you do not need an overlay for your video – then put inside only the codeblock element.

    #1480528

    I’m not sure if there’s anything else I can tell you, other than what you can see on the page.
    On top ? Well it is the first color-section on that page. If you like to have it behind header – then you had to choose the enfold transparency option for the page.

    Color-Section with custom-class: html5-video ; inside that color-section a code-block element and column (custom-class: overlay) with your image (logo). The width of that column is ruled by css.

    Marc Bijl
    Participant

    When I change the css file of my child theme, these changes do not show up at the website.

    After searching long, long time, it seems my website loads an old version of the css file. In the source code I see this one being loaded:
    /wp-content/themes/enfold-child/style.css?ver=7.1

    The content of this file, when viewed through the browser, is not the same as the file I’m editing through ftp and a code editor at:
    /wp-content/themes/enfold-child/style.css

    I’ve been trying hard to find out how to load the right css. For example I’ve deleled browser caches, turned off caching plugin, and also set Enfold Performance settings at:

    – Turn off css compression/merging
    – Turn on delete old css and js files

    Nothing seemed to help. Finally asked chatgpt which said:

    “It seems that the ?ver=7.1 in the URL of your style.css file is added to indicate the version of the file, which is usually done for caching purposes. If you want the CSS to load without the version parameter, there are several ways to do this, depending on how the version parameter is added. Here are a few possible solutions:”

    One of the solutions was adding this code:

    function custom_enqueue_styles() {
        wp_enqueue_style( 'enfold-child-style', get_stylesheet_directory_uri() . '/style.css', array(), false, 'all' );
    }
    add_action( 'wp_enqueue_scripts', 'custom_enqueue_styles' );

    That seems to do the trick!

    What is happening here?
    How can I get this fixed without adding the extra code?

    Using Google, I see quite some people having issues withc css changes not being visible due to Enfold settings.

    Please let me know how all his stuff works, and how I can turn it off or set it in such a way that it just works?

    #1480522

    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

    #1480509

    Hi Mike, thanks for looking into it again :)

    But it seems to be another issue. I’ve insert some “Test-boxes” on another page with Enfold that is curently in production (link to testpage in Private Content).

    On this page there is no sidebar…

    Best regards,
    Martin

    #1480504

    Hi,

    I don’t understand why the size of the model image (enfold gym) is 1500 x 720 and the actual height of the page banner is 420…

    Please note that the section size depends on the content, not the background image. We recommend uploading images at least the same size as the demo image, with a 16:9 aspect ratio. However, if you’re trying to focus on a specific part of the image, this will require a lot more adjustments. You may need to use css to adjust the background position and, as recommended, disable the parallax and fixed effects. We also noticed that the part you’re trying to focus on is not vertically or horizontally aligned in the actual image, so you may need to adjust this as well.

    And regarding the image quality, the theme already sets this to highest quality possible (100 or 100%) but if you need to adjust it, you can add this filter in the functions.php file:

    add_filter("avf_jpeg_quality", "avf_set_quality_mod", 9999, 1);
    add_filter("avf_wp_editor_set_quality", "avf_set_quality_mod", 9999, 1);
    function avf_set_quality_mod($quality) { $quality = 100; return $quality;}
    

    Best regards,
    Ismael

    #1480498

    Hi,

    Thank you for the inquiry.

    The content slider is activated using the AviaSlider function. You’ll find this in the enfold/js/shortcodes.js file around line 205. You may need to use the same function to re-initialize the slider inside the lightbox container.

    
    //content slider
    $( '.avia-content-slider-active', container ).aviaSlider({wrapElement: '.avia-content-slider-inner', slideElement: '.slide-entry-wrap', fullfade: true});
    

    The AviaSlider function can be found in the enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js file.

    Best regards,
    Ismael

    #1480497
    finchkelsey
    Participant

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #ccbtp80 .post-entry-26494 .flex_column.av_one_fourth {
    max-width: 48%!important;
    clear: none!important;
    float: left!important;
    }

    Hi, this is not working across browsers to get 1/4 columns to display side by side.

    I would think mobile layout would be easier in Enfold by now.

    Thank you

    #1480482

    or much easier to setup ( because you use for the image the enfold image-element )
    https://webers-testseite.de/html5-video-fanlokbun-2/

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

    @media only screen and (max-width: 1439px) { 
    	.single-product .avia-svg-icon svg:first-child,.single-product .avia-svg-icon img[is-svg-img="true"] {
        height: .5em;
        width: .5em;
    }
    #top.single-product .avia-slideshow-arrows a.avia-svg-icon svg:first-child {
    	margin-top: 9px;
    }
    #top.single-product .av-slideshow-ui.av-loop-manual-endless .avia-slideshow-arrows > a, #top.single-product .av-slideshow-ui .avia-slideshow-arrows.av-visible-prev > a.prev-slide, #top.single-product .av-slideshow-ui .avia-slideshow-arrows.av-visible-next > a.next-slide {
    	width: 30px;
    	height: 30px;
      line-height: 30px;
    }
    }

    After applying the css, please clear your browser cache and check.
    Please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
    Screen Shot 2025 03 30 at 7.08.03 AM

    Best regards,
    Mike

    #1480472

    In reply to: spacing between blocks

    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

    #1480460

    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

    #1480455

    In reply to: Enfold Bug Report

    Hey Baden,
    Thank you for your patience and for your workaround.
    The Dev Team and I do not have experience with this plugin in setting it up to recreate the error, it is not a plugin that we support, we are limited to our support for third party plugins.
    The Dev Team has decided that in this case we will point any other users to your workaround, should there be any in the future, but not make any core changes at this time, perhaps in the future we will.
    Thank you for your understanding and for using Enfold.

    Best regards,
    Mike

    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

    #1480451

    In reply to: Critical error

    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

    #1480446

    Hi,
    Try using the TinyPNG plugin on your large hero images, when I test one of your images on the TinyPNG site it reduced it by 40%
    Screen Shot 2025 03 29 at 9.39.25 AM
    using smaller sized images probably would help, or using the Enfold Theme Options ▸ Preloader

    Best regards,
    Mike

    #1480445

    In reply to: Enfold

    Hey Joerg Haustein,
    Deactivating the plugins Xtrail Core & WPBakery Page Builder solves.
    Please note that Enfold has it’s own builder and adding other builders typically cause errors.

    Best regards,
    Mike

    #1480444

    Topic: Enfold

    Joerg Haustein
    Guest

    Hallo,

    Habe das Thema gekauft vor einiger Zeit noch nie installiert und bekomme jetzt einen kritischen Fehler – ich bin nicht bereit zumal es noch nie gelaufen ist den Support Vertrag zu verlängern.

    #1480443

    In reply to: Critical error

    Hey jhaustein,
    Deactivating the plugins Xtrail Core & WPBakery Page Builder solves.
    Please note that Enfold has it’s own builder and adding other builders typically cause errors.

    Best regards,
    Mike

    #1480431

    In reply to: Critical Error

    Hi jhaustein,

    Please open a new thread and include WordPress admin login details in private, so that we can have a closer look at your site.

    Best regards,
    Rikard

    #1480420

    Thank you!
    How do I download the new enfold if I don’t have the license for the old one for samuelblack.co?

    #1480419
    Feuerwehr Stuppach
    Participant

    Hallo!
    Habe heute das Enfold Theme gekauft und gleich installiert.
    Leider bekomme ich es nicht richtig zum laufen.

    Wenn ich eine neue Seite anlegen möchte, kommt in der console immer folgende Meldung:

    Uncaught TypeError: $(...).pointer is not a function
        wp_help_pointer_open https://www.xxxx.at/wp-admin/post-new.php?post_type=page:486
        <anonymous> https://www.xxxx.at/wp-admin/post-new.php?post_type=page:473
        each jQuery
        <anonymous> https://www.xxxx.at/wp-admin/post-new.php?post_type=page:472
        jQuery 2
    post-new.php:486:35

    Die Seite im Browser bleibt dann immer weiß.
    Ich habe auch schon probiert eine ganz neue WordPress Installation zu nehmen und dann alles frisch zu installieren. Leider auch ohne Erfolg.

    Apache2 PHP 8.2.28 mit allen notwendigen Plugins für die Classis-Wordpress-Installation.

    Bitte um Hilfe!

    Liebe Grüße, Alex

Viewing 30 results - 2,551 through 2,580 (of 243,848 total)