Viewing 30 results - 7,201 through 7,230 (of 244,420 total)
  • Author
    Search Results
  • ich habe die Nutzung von avf_dynamic_css_after_vars immer noch nicht ganz verstanden!
    Wie würde ich z.B. für die Seite mit der ID: 123 die Definition von –enfold-main-color-bg ändern?
    __________

    I still haven’t fully understood the use of avf_dynamic_css_after_var !
    For example, how would I change the definition of –enfold-main-color-bg for the page with ID: 123?

    #1461168

    In reply to: Custom font

    Hi,

    Thank you for the info.

    The configured styles in the Enfold > Advanced Styling panel override the default styles of the title elements. Did you make those configurations yourself?

    The Gothic font appears to be rendering correctly, but not the other one. Where did you get the Saigonese font, and what format is it in?

    Please review the required file structure for the fonts in the documentation below:

    // https://kriesi.at/documentation/enfold/typography/#how-to-upload-custom-fonts > File Structure

    Best regards,
    Ismael

    there are new filters: avf_dynamic_css_additional_vars and avf_dynamic_css_after_vars

    but you can redefine those var color definitions in quick css too.
    but that means all elements that use these enfold default values ( set in enfold options – general styling) are replaced.
    All manually set colors inside alb elements stay as they are.

    f.e. for your ID 777:

    .html_entry_id_777,
    #top.page-id-777 {
    	--enfold-header-color-bg: #eee;
    	--enfold-main-color-bg: #eee; 
    	--enfold-footer-color-bg: #eee;
    	--enfold-alternate-color-bg2: #eee;
    	--enfold-header-color-bg2: #eee;
    	--enfold-socket-color-bg: #eee;
    	--enfold-socket-color-border: #eee;
    }
    

    you can now add all page id’s comma separated in that replacement.

    or like mentioned above ( Günter provided me with a working filter code ) via child-theme functions.php
    (after that it is neccessary to refresh all cachings):

    function my_avf_dynamic_css_after_vars( $output = '' )
    {
    	$output .= "\n";
    	/*** Override a defined var for a specific page id*/
    	$output .= "html.html_entry_id_777,  html.html_entry_id_12345 {\n";
    	$output .=		"--enfold-header-color-bg: #aaa;\n";
    	$output .=		"--enfold-header-color-bg2: #aaa;\n";
    	$output .=		"--enfold-main-color-bg: #aaa;\n";
    	$output .=		"--enfold-footer-color-bg: #aaa;\n";
    	$output .=		"--enfold-alternate-color-bg: #aaa;\n";
    	$output .=		"--enfold-alternate-color-bg2: #aaa;\n";
    	$output .=		"--enfold-socket-color-bg: #aaa;\n";
    	$output .=		"--enfold-socket-color-border: #aaa;\n";
    	$output .= "}\n";
    	return $output;
    }
    add_filter( 'avf_dynamic_css_after_vars', 'my_avf_dynamic_css_after_vars', 10, 1 );

    maybe that is the better way – because it is early in the page generation done – then replacement via css redefinition.
    btw: it is possible too – to have even mediaqueries here on the filter .

    #1461157

    In reply to: iFrames Not Working

    Hey Micheal,

    Thank you for the inquiry.

    Where did you get the embed code? We’ve found this error in the console, which might be the reason why the iframe or script is not rendering correctly:

    Uncaught SyntaxError: Unexpected token 'var'
    

    Please temporarily disable the SiteGround Optimizer plugin and make sure that the Enfold > Performance > File Compression settings are turned off. Let us know the result.

    Best regards,
    Ismael

    #1461156

    In reply to: No Lightbox

    Hey jkos,

    Thank you for the inquiry.

    Did you enable the Lightbox Modal Window option in the Enfold > Theme Options panel? Please check the option or post the login details in the private field so that we can check the issue further.

    Best regards,
    Ismael

    #1461148

    Topic: No Lightbox

    in forum Enfold
    jkos
    Participant

    Hello, the Lightbox feature does not seem to be working. When I click on an image the window goes white with the image at the top of the window.
    I am using the masonry gallery. In the advanced settings of the gallery under Link Settings I have Lightbox linking active.

    Does the Lightbox feature require a plugin now?

    Thanks!

    Enfold: 6.0
    WP: 6.5.5
    Mac OS 14.5

    Hi,
    You can copy the css and chage the page ID for each page you want it to work on:
    Enfold Support 6261

    Best regards,
    Mike

    #1461125

    Hey Agim,
    Thank you for the link to your site, I have not seen this layout before, please include an admin login in the Private Content area so we can examine.
    So as I understand you want to remove the numbers at the top, & the arrows, & the dots at the bottom. Correct?
    Enfold Support 6259

    Best regards,
    Mike

    #1461122

    Hi,
    Thank you for the link to your site, when I check on mobile the space doesn’t seen as much as in your screenshot:
    Enfold Support 6255
    But to make it less try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    	#top.home .avia-builder-el-8 {
    		margin-bottom: 0px !important;
    	}
    	#top.home .avia-builder-el-11 {
    		margin-bottom: 0px !important;
    	}
    }

    After applying the css, please clear your browser cache and check.
    This is the expected results:
    Enfold Support 6257

    Best regards,
    Mike

    As I maintain two different websites, I usually test changes and new software versions in a “localhost environment” (currently Windows 11, XAMPP 8.2.12, WordPress 6.5.5) before installing them on the external servers.

    The bad news:
    In the “localhost environment”, the following test conditions always lead to the Theme Editor error:
    – Uploading Enfold version 6.0 via WordPress -> Design -> Themes -> Add new theme -> enfold.zip
    – Copy the folder “enfold” (version 6.0) directly into the directory “../wp-content/themes”.
    – Using Firefox
    – Using Chrome
    – All plugins disabled

    The good news:
    After installing Enfold version 6.0 on the external servers, the error does not occur,
    even though the file “../wp-includes/functions.php” on the external servers also contains the code
    // Normalising the path for Windows servers
    $file = wp_normalize_path( $file );
    Note: This code was introduced with the current WordPress version 6.5.5!

    Hey Jak73,
    Thank you for the link to your site & the screenshot, when I check your page the text is centered, but I believe that you are asking to reduce the content width.
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (min-width: 767px) { 
    	.responsive #top.page-id-777 .main_color.container_wrap_first > .container {
    		max-width: 950px;
    	}
    	.responsive #top.page-id-777 .main_color.container_wrap_first {
    		background-color: #eee;
    	}
    }

    and adjust to suit, this is the expected results
    Enfold Support 6253

    Best regards,
    Mike

    #1461108

    Hi,
    Please see our documentation for the Child Theme.

    Best regards,
    Mike

    #1461100
    webdev128
    Participant

    How to get update for Enfold Child Theme? I recently purchased the Enfold parent theme, and need to know how to get the child theme updated.

    thanks,
    Stephanie Gibbs

    #1461094

    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

    #1461093

    Hey Michelle,

    Thanks for reaching out to us. Flashlight and Enfold as not compatible unfortunately, so if you should switch to Enfold then you would have to rebuild your content using the Layout Builder in Enfold.

    Best regards,
    Rikard

    #1461090

    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

    #1461077
    nTECHgrate
    Participant

    Hello Enfold Team,

    My site, https://iceworksus.com, is not scoring well despite only having two small images on the home page. I asked the SiteGrounds support team to take a look, and as a result, we updated to the latest PHP version and uninstalled a few plug-ins, but the problem persists. They mentioned that I should ask you all to take a look at the CLS element of the report as it didn’t “look right” to them.

    <div id=”av_section_1″ class=”avia-section av-h4ap-dca29bbfa23d090095a1760e56edd8d6 main_color avia-sect…” data-section-bg-repeat=”stretch” data-av_minimum_height_pc=”95″ data-av_min_height_opt=”percent” style=””>

    Can you please take a look and let me know what you would recommend?

    Thank you.

    #1461053
    Michelle LaRose
    Guest

    My client is using the flashlight theme on his website, but as you know, it isn’t compatible with more current versions of php. Can I switch to the enfold theme? Will the site still work the same?

    #1461043

    Hello Ismael! The option to update the theme via the wordpress dashboard worked perfectly and all component are loading correctly…thanks for that!

    On the other hand, now when I try to get into the home page and edit it via the “Advanced Layout Builder” I get prompted with a pop-up message that says: Background request blocked Wordfence firewall blocked a background request to WordPress for the URL /wp-admin/admin-ajax.php. If this occurred as a result of an intentional action, you may consider allowing the request to allow it in the future.

    Being the options to continue (1) Add the action to the allowed list (2) Discard.

    When I follow option (2), the advanced layout builder stays just loading and I cannot edit anything. Could this be related to the new enfold version?

    #1461025

    Hi,

    Please make sure that you have given your token the correct permissions: https://kriesi.at/documentation/enfold/theme-registration/#toggle-id-5

    Best regards,
    Rikard

    Hi Steve,

    Yes, we’ll include this fix in an upcoming update.

    Here is the final version of this fix: https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/enfold_6_0/config-woocommerce/config.php. Please use this file for affected sites instead.

    Regards,
    Yigit

    Danke Günter.

    Ich hatte nebenbei bemerkt auch schon mal Feature Request zum Masonry in Github eingereicht (#58) Vielleicht wäre das auch noch was… :) ?

    Grüße

    Hi Martin,

    Alles klar. Macht Sinn.

    Ich hab es einmal zu den feature requests hinzugefügt, damit ich es nicht vergesse: https://github.com/KriesiMedia/Enfold-Feature-Requests/issues/109

    LG,
    Günter

    #1460954

    Hi,

    Thanks for the update. Could you try updating the theme to the latest version (6.0) to see if that helps please? https://kriesi.at/documentation/enfold/theme-update/.

    Best regards,
    Rikard

    #1460951

    Hello,
    Thank you for answering.
    I used Enfold Child. Version 4.9.2.1. WordPress says that we use the last available version.

    In a second hand, I got this message in WordPress, when I input the Envato Key (in the options of Enfold Child -> Updates) .

    email Erreur de code 403 retournée par Envato : Forbidden:
    – code: not_authenticated

    I don’t know if it’s important or not..

    Delphine

    #1460943

    In reply to: Update 5.7.1

    Hey Eamonn,

    We can’t say for sure why your site is having a critical error, but updating the theme is the first thing you should try. https://kriesi.at/documentation/enfold/theme-update/

    If you haven’t registered your theme license, then please refer to this: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    Hey janssen-media,

    Thank you for using Enfold.

    If you choose “wp_post_title” it is always of the current post title where the element is added.

    What you need is use of custom fields where you can enter values specific for the post. You can use the ACF plugin for easier handling.

    E.g. define “toggle1”, “toggle2” as custom fields, add values there and then use these custom fields as dynamic content.

    If you create a custom layout with that toggle you can add this custom layout to any page/post where you need it and then need only fill in the custom fields values as needed.

    Hope this helps.

    Best regards,
    Günter

    #1460937
    Martin
    Participant

    Hello,

    please take a look at the website https://www.brcv.de. I like these text boxes in the pictures with the text:
    “INDIVIDUELLE VERMÖGENSBETREUUNG
    Kundennah und kompetent.”

    Further down there is also indented text like this (in orange boxes). That looks very good too. Can you do something like that with Enfold? If so, how?

    best regards,
    Martin

    • This topic was modified 1 year, 8 months ago by Martin.
    janssen-media
    Participant

    Hi,

    first of all: Very thanks for the new Update and the new Feature “Dynamic Content”.

    But there are some elements where i don’t understand the new feature (or maybe i’m little confused on this – please correct me :-D ):
    For example the Accordion: We have manually created toggles here and we can now use dynamic content for each toggle. But if i choose, for example “wp_post_title”, for each toggle i have the same Post-Title in all toggles…

    In this case it would makes more sense if we could dynamically get posts from a specific taxonomy to load it as toggles? So i mean choose between manually toggles (as it is now) and toogles generated from blog posts etc. (useful for an accordion with job offers!)

    #1460881

    In reply to: Awesome

    Hi Günther,

    Maybe an option in the enfold footer settings where you can switch to another markup would be an idea?

    But I’m currently not sure if my markup idea is 100% right. I did some research and some sources state that only the socket should be wrapped in <footer> and others state that that the whole footer part can be wrapped. We also had no explicit feedback on the footer in the accessibility check so maybe leave it like it is for now and I reach back when I have more information.

    All the best,
    Patrick

Viewing 30 results - 7,201 through 7,230 (of 244,420 total)