Viewing 30 results - 7,171 through 7,200 (of 244,420 total)
  • Author
    Search Results
  • #1461329

    Hey conflock,

    Thank you for reporting this – and sorry for the problems.

    Will be fixed in next release.

    Meanwhile you can replace the content of folder “..\enfold\config-templatebuilder\avia-shortcodes\toggles\” with the files of:

    https://github.com/KriesiMedia/enfold-library/tree/master/temp_fixes/enfold_6_0/config-templatebuilder/avia-shortcodes/toggles

    If you need help let us know and we can do it for you.

    In case you have enabled file compression please disable it, save theme options, enable it again and save theme options again.

    Best regards,
    Günter

    Munford
    Participant

    hi
    My site is messed up after I added a product to woocommerce and updated enfold.
    The preview looked fine but now it’s changed the display of the site.
    Can you help??
    thanks
    Nancy

    #1461324

    Hi,

    no, just using the Enfold “Contact Form” builder.

    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

    #1461313

    Hey Michael,

    If you change the colours in the theme options, then your settings will not be overwritten on updates. You can export your settings under Enfold->Import/Export as well.

    Best regards,
    Rikard

    #1461310

    Hey oblax,

    We don’t have a specific demo for real estate unfortunately, but we have plenty of others to chose from: https://kriesi.at/themes/enfold-overview/

    Best regards,
    Rikard

    #1461308

    try that:
    https://webers-testseite.de/rbh/

    btw: it is advisable to use a custom hyphenation on those headings.
    A wonderfull entity for a soft-hyphen (conditional word breaks) is ­

    you can set this html entity in e.g. also headings – unfortunately this is no longer visible after reopening the Alb element. Therefore I use an edited version of Günter’s nice plugin: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#using-special-characters

    For the sake of simplicity, however, I did not do this with triple #, but only with single # and extended the array by many entities.

    you can download it on : https://pastebin.com/jttc230x

    A heading with softhyphen then looks in backend like :

    PS: for that case i would use the flexbox layout.

    #1461290
    werbeagenturlauf
    Participant

    Hi @Kriesi!
    I would like to change all the different green colors in this theme into brown.
    I would like to do this by search and replace. But if i do this in the regular Enfold-Theme in the css it will get overwritten with each new enfold-update. Is that so? What do you propose?
    Thanks for your feedback.
    Michael F

    #1461289

    How can I now integrate a custom svg divider:

    The default storage location for Enfold is: /wp-content/uploads/dynamic_avia/avia_custom_shapes/ if you put your custom files there (via ftp) then they would at least be in the right place. ( if that folder isn’t present – create it )

    here is the code as you now tell Enfold that there is a custom divider:
    ( put this to your child-theme functions.php)

    function custom_avf_custom_svg_shapes( array $custom_shapes ) {
    $custom_shapes = array(
    
    	'reha-bad-hamm'		=> array(
    		'key'			=> 'reha-bad-hamm',
    		'title'			=> __( 'Reha Bad Hamm Trenner', 'avia_framework' ),
    		'has_width'		=> true,
    		'has_flip'		=> true,
    		'filename'		=> 'reha-bad-hamm'
    		),
    
    );
    
    return $custom_shapes;
    }
    add_filter( 'avf_custom_svg_shapes', 'custom_avf_custom_svg_shapes', 10, 1 );
    #1461288

    If you are familiar with creating svg files – you can have your own custom svg dividers as well.
    see your svg file here in action: https://webers-testseite.de/reha-bad-hamm-2/

    Many of the Enfold svg files are designed so that you can set a height and the width adapts to the viewport.
    This property within the svg is responsible for it:
    preserveAspectRatio="none"

    But this is not good for other svg. See the example page with the silhouette of Bonn at the bottom – that is a svg divider too.
    On your svg too i would say it is better to preserve the aspect ratio by:
    xml:space="preserve" preserveAspectRatio="xMidYMin meet"

    (see svg code on that page)

    For your svg, this is a special case too. These standard dividers work with paths that are not explicitly filled and are displayed as black in svg by default. The black is then coloured by the setting in the element itself. This is usually the colour that takes over the connection to the other section. So it is not transparent. – You now have a colour that is actually fixed (with the blue). Look at the source code on the example page, and the svg as I created it.

    Just copy out the svg code, then you have your svg.

    PS: becaue i gave a custom class to the bow itself – you can fill it by external css code ( as you can see on the example page as bottom divider)

    #1461284

    Hey egouldmedia,

    Thank you for the inquiry.

    Normally, you would need to edit the templates directly to change the default layout of a post, or use the Advanced Layout Builder to create custom layouts. In version 6.0, you can now utilize the Custom Layouts and Dynamic Content features to create advanced layouts for posts or custom post types. Please refer to the documentation below for more information.

    // https://kriesi.at/documentation/enfold/custom-layout-and-dynamic-content/

    Best regards,
    Ismael

    #1461275

    Hi,

    Thank you for the update.

    video player to be full width on mobile?

    There is no default option for this, but you can try placing the video inside a color section and setting its container to full width.

    For more info, please refer to: https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width

    However, we recommend using a fallback image or replacing it with the Layer Slider element.

    Best regards,
    Ismael

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

    #header_meta.av_extra_header_active > .container {
      display: flex;     
      justify-content: center;
    }
    .phone-info {
    	font-size: 14px;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1461267

    In reply to: Masonry layout

    Hi,
    Ismael made the last change, so he must have felt this was a better location.
    I notice that you are not using a Child Theme, I recommend using one and add all of your customizations to it, otherwise you will lose them the next time that you update the theme.
    If you do not want to use a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add your customizations.

    Best regards,
    Mike

    #1461264
    pierremartin311
    Participant

    Hello,
    i use a script to add a class to four images in order to start an animation on my site “vernissageduvar.com”;
    I made it with animation and keyframe and it’s working until i arrive under 400 pixels wide with the adaptativ view tool of Firefox.
    My animation starts when i arrive to the title “Nos réalisations” in the middle of the page “vernissageduvar.com”. it happens only one time.

    Is there something special under 400 pixels wide on Enfold?

    #1461263

    In reply to: Masonry layout

    Hi,
    The Classic Editor function is in the theme at Enfold Theme Options ▸ Select Your Editor ▸ Use WP Classic Editor I disabled it to ensure there was not a conflict. If you want to use the plugin feel free to enable it again.

    Best regards,
    Mike

    #1461262

    In reply to: Blog font size

    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

    #1461259

    In reply to: Blog font size

    Hey lauragrashoff,
    Thank you for the link to your site, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field and adjust the font sizes to suit:

    #top.single-post #wrap_all #main .container_wrap_first h1 {
    	font-size: 60px;
    }
    #top.single-post #wrap_all #main .container_wrap_first h2 {
    	font-size: 30px;
    }
    #top.single-post #wrap_all #main .container_wrap_first p {
    	font-size: 20px;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1461257

    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

    #1461256

    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

    I did some further investigation and found that in “theme-editor.php” the absolute path of “$file” contains backslashes,
    for example
    “D:\xampp\htdocs\website-name/wp-content/themes/enfold-child/style.css”.
    The backslashes cause the error reported by
    “$file = wp_normalize_path( $file );”.
    Replacing the backslashes by normal slashes in “theme-editor.php” like this
    “$allowed_files[‘style.css’] = str_replace(‘\\’, ‘/’, $style_files[‘style.css’]);”
    can avoid the error.
    Manual patching is unsatisfactory, but I did not find any other solution to the problem.
    Note:
    Surprisingly, the plugin-file-editor does not have this problem, because only relative paths are used, not absolute ones.
    May be the (WordPress-/)Theme developers could take a look at this and adopt that solution.

    #1461233
    emilconsor
    Participant

    Hi,
    we’re using Enfold 5.7.1 within WordPress 6.4.4 and PHP 8.3.
    Since today, a problem has been recurring which means that layout elements are no longer displayed and an admin message appears stating that the element is deactivated.

    We use the recommended setting that only used elements are loaded.
    As the elements are built into the pages and are therefore used, we cannot understand why the theme says that the element is deactivated.

    Of course, we want to continue using the function for performance reasons alone.

    Is this a known bug and do you know what usually triggers it?
    What needs to be done here so that it works again as usual?

    Thank you in advance for your help.

    • This topic was modified 1 year, 8 months ago by emilconsor. Reason: missing information
    #1461215

    Hi,

    Thanks for letting us know. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1461211

    Hey Mike,
    the numbers at the top are just deep links to slide 1, 2, 3.

    No, I am just wondering that I cannot find a setting to disable the right arrow, when I am on the last slide. I don’t want the user to go from slide 3 to slide 1 by clicking the right arrow. It is an e-learning tool and it makes no sense here.

    BTW we are talking about the Layerslider which is integrated in Enfold. Maybe I should ask here: https://layerslider.com/help/

    Best regards, Agim

    I enable ALB shortcode debug mode, design the content of the woocommerce product category page in a tempoary draft page, then copy the shortcodes from the draft to the category page and update/publish.

    To turn on theme debug: Goto theme options -> Layout Builder -> Toggle on “Show advanced options” -> Select under Debug Mode (Backend Only) “Enabled for admins only”.

    This is less than ideal, but essentially does the same thing, without relying on other plugins.
    It would be nice if we could enable ALB editing for product cateogries in a similar way to other / custom posts types like so:

    /**
    * Allow ALB editor on custom post types if not available by default.
    */
    add_filter(‘avf_alb_supported_post_types’, function (array $supported_post_types) {
    $supported_post_types[] = ‘portfolio’;
    $supported_post_types[] = ‘someother_custompost_type’;
    $supported_post_types[] = ‘product_cat’; /** <– simply adding this line would be great, but IT DOES NOT WORK / enable ALB editor in woocommerce categories (technically it’s a post type of post, but also has taxonomy type of product_cat */
    $supported_post_types[] = ‘product’;
    $supported_post_types[] = ‘enhancedcategory’;

    return $supported_post_types;
    });

    Can a dev help with acheiving a requirement for Woocommerce Category ALB editing pretty please :-D.

    I also have this code to enable shop page editing support for ALB editor:

    /**
    * BETA Feature – Allow editing of shop page in Enfold Avia editor
    */
    add_theme_support(‘avia_custom_shop_page’);

    Thanks

    #1461196

    Topic: Cloudflare Turnstile

    in forum Enfold
    peterolle
    Participant

    Any plans on adding Cloudflare Turnstile to Enfold forms?

    It is the best solution out there to combat spam and implementing it with Enfold will be a true win.

    #1461185

    Topic: Enfold 6.0

    Simon
    Guest

    Von Endkunden erhalte ich Fehlermeldungen. Sie meinen damit die grosse englische Info über Enfold 6.0. Dieses neue Teil ist viel zu kompliziert und überflüssig. Es gibt Portfolio und Vorlagen, das genügt. Enfold ist beliebt, weil es einfach ist. Das neue Tool gehört nicht standardmässig auf Redaktor-Ebene!

    I receive error messages from end customers. They are referring to the big English info about Enfold 6.0. This new part is far too complicated and superfluous. There are portfolios and templates that are sufficient. Enfold is popular because it is simple. The new tool does not belong at editor level as standard!

    #1461181

    Hi,
    I fixed this problem with the token key. But that doesn’t fix the problem with the forms.
    Forms still don’t work.

    The version of Enfold Child that we use, is it correct ?
    Can you advise please ?

    Thank you

    #1461177

    In reply to: Masonry layout

    oh, i forget to ask you something concerning the classic editor:
    It seems that i can uninstall it now but why? because without this plugin it didn’t work like i wanted before..Did you do something to integrate it to Enfold?

Viewing 30 results - 7,171 through 7,200 (of 244,420 total)