Viewing 30 results - 21,451 through 21,480 (of 244,526 total)
  • Author
    Search Results
  • #1372112

    Hey Thomas,
    This was not added into Enfold, did you try this on your site?

    Best regards,
    Mike

    This reply has been marked as private.
    #1372109
    Jacopotj
    Participant

    Hi, I noticed each time I update a page old, emoji’s get lost.

    They are visible in editor, once published though on live page they disappear and if I edit agani the live page without, then they are disappeared also in the editor.

    I wanted to ask if this is a known Enfold issue, or might be caused by something else, if so any idiea?

    Thank you

    #1372102

    Hi cluetzenkirchen,

    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

    Hi cluetzenkirchen,

    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

    #1372092

    Hi,

    Please open a new thread for each of your problems, so that the threads can be easily followed by both moderators and other users. https://imgur.com/a/AnoSPNb

    Best regards,
    Rikard

    #1372089

    In reply to: Theme not updating

    Hi,

    Thanks for the update. Please open a new thread for your new problem. https://imgur.com/a/AnoSPNb

    Best regards,
    Rikard

    #1372083
    thinkjarvis
    Participant

    Hi Guys,

    Someone posted a while ago about imagery not being detected by yoast.

    Mike responded with a solution.

    https://kriesi.at/support/topic/image-sitemap-problem/#post-1059171
    I have assumed that yoast was used to generate the sitemap?

    Did this ever make it into core? I too have found imagery is not included in Yoast Sitemaps on Enfold sites in 5.2.1

    I currently just get the featured image assuming one has been set per page.

    #1372079
    dreamreader
    Participant

    Two questions:
    1. Is it possible to use a license for a new project if the the website where I used enfold is not active anymore?
    2. If I have installed enfold on a website just for a try and don’t use it, can I just uninstall the theme and use it for another projekt?

    Thank you for an answer!
    Hubert

    I have the same Problems since today; by editing my one-pager comes “There has been a critical error on this website. Please check your site admin”.

    WP 6.1, Enfold 5.2.1, PHP 8.0.
    I tried another theme and there ist no problem.
    Also i deactiveted all Plugins, no effect.

    But I think it could be the editor?
    If i take WP-classic-Editor, the site tries to load the page by edit page, if i choose block-editor there comes the error.

    Any ideas for help?

    #1372075

    Hey AuroraArcus,
    Thanks for the login to your site, to create a booking button in your footer widget we will create the button using the shortcode wand, so we will open a new post and in the block editor select the classic block and in the toolbar select the shortcode wand ▸ Button:
    block_editor_classic_block_shortcode_wand.png
    then the standard Advanced Layout Builder button element will open for you to design the button, after you build your button and save the button shortcode will show for you to copy to your widget:
    block_editor_classic_block_shortcode.png
    Then go to your widgets and use the Custom HTML widget and paste the shortcode:
    custom_html_widget_with_button_shortcode.png
    once you have copied the shortcode to your widget you can discard the new post that you used to create the shortcode in as it is no longer needed. Now your widget button should look like this:
    2022-11-10_004.png
    So if you are happy with the button that I created you can keep it or you can follow these steps and create your own.
    While I created the button I added the custom class widget-book in the element options in case you wanted to fine tune the button with some css, in my final test I found the footer link color overrides the color of the text in the button so I add this css in your Quick CSS to adjust:

    #footer .widget-book a {
    	color:#fff;
    }

    so you can add any further customizations to your rule if you wish.

    Best regards,
    Mike

    dbgl
    Participant

    Have downloaded and reinstalled the latest enfold version.
    Have tried PHP 7.4, 8.0 and 8.1.
    Any ideas on what else to do?

    Jan Thiel
    Participant

    Hi guys,

    we currently maintain about 100 sites built upon Enfold and custom CSS using Quick CSS.

    After your recent introduction of “Responsive Styles” within the 5.1 release nearly all of these pages broke due to Custom CSS not working anymore which worked before. In particular the new responsive styles take precedence over custom css styles and classes.
    I am only writing now as we just updated our prod env to 5.1.2 and our dev sites to 5.2.1. The issues exist in both versions and only came to our attention within the live sites. Our dev env doesn’t use that much custom Quick CSS…

    For columns ( /config-templatebuilder/avia-shortcodes/columns/columns.php ) we were able to “fix” the issues using you newly introduced filter “avf_disable_columns_responsive_margin_padding”.
    For the Grid Row “cell” ( /config-templatebuilder/avia-shortcodes/grid_row/cell.php) this is not possible as you hardcoded the add_responsive_styles in there (line 603 in 5.2.1) without any possibility to disable that. Even worse it is set with the “!important” modifier rendering any attempt to change the values by custom css nearly impossible.
    We were only able to hotfix this within the Grid Row by using the “avf_el_styling_responsive_styles_skip” filter. Which leads to the sideeffect that the configured values for the Grid Row from the Enfold backend are now ignored and the default is always used. This is also breaking, but not as bad as before…

    In any way the way you added the Responsive styles seems to break backwards compat with custom CSS massively. I would kindly ask you to reconsider this feature and the way you implemented it. Custom CSS must remain to have a chance to overwrite the configured styles in the same way it did before Enfold 5.1. Alternatively we need a filter to permanently disable this feature globally(!). But that would only be the last resort in my oppinion.

    As a side info: We have the following filter configured as your post css generation didn’t work with our caching rules due to the location where the css was generated to: add_filter( 'avf_post_css_create_file', '__return_false', 10, 1 );
    So you might want to set this as well to have an identical environment.

    I will add a test case to reproduce into the private content. Just put the shortcodes into an empty page and switch to the advanced layout builder afterwards. Then open the page on the frontend. Then add the following custom css to Quick CSS save and reload the page on the frontend.
    Using the Browser DEV tools you will now see that the custom css cannot set the margin and padding anymore. That worked before and as there are many live sites out there relying on custom css this has to continue to work.
    If you then add the following filters, the custom css will work again (only fhe first filter is necessary for this example):

    
    add_filter( 'avf_disable_columns_responsive_margin_padding', '__return_true' );
    add_filter( 'avf_el_styling_responsive_styles_skip', '__return_true' );
    

    Quick CSS:

    
    .open-job-boxes .job-box{
        -webkit-box-shadow: 0 3px 6px 0px rgba(0,0,0,0.16);
        -moz-box-shadow: 0 3px 6px 0px rgba(0,0,0,0.16);
        box-shadow: 0 3px 6px 0px rgba(0,0,0,0.16);
        padding: 30px;
        background: #ffffff;
    }
    
    .open-job-boxes .job-box h3{
        font-size: 20px;
        color: #212121 !important;
        font-weight: 600;
        margin-top: 20px;
    }
    
    .open-job-boxes .job-box a {
        background-color: #b3041c;
        padding: 13px 20px 11px 20px;
        font-size: 16px;
        color: #fff;
        text-align: center;
        overflow: hidden;
        position: relative;
        display: block;
        margin: 40px auto -51px auto;
        transition: 0.4s;
        border-radius: 0;
        max-width: 250px;
        border-color: #b3041c !important;
    }
    
    .open-job-boxes .job-box a:hover{
        background-color: #cb001c !important;
    }
    
    .open-job-boxes .job-box:before{
        content: "";
        height: 52px;
        width: 52px;
        display: block;
        margin: -60px auto -5px auto;
        border-radius: 100px;
        border: 5px solid #fff;
        background: #b3041c;
        position: relative;
        z-index: 99;
        visibility: visible;
    }
    

    Thank you very much and best Regards,

    Jan

    • This topic was modified 3 years, 5 months ago by Jan Thiel. Reason: Layout fixes
    #1372066
    thinkjarvis
    Participant

    Hi Team,

    I would like to make a request for a few extra icons to sit next to the cart icon when WooCommerce is installed.

    Would it be possible to have a icon for account next to the cart?

    Just from a users perspective – This is a common feature on other platforms like Wix, Squarespace, Shopify etc. It would be great to have this as a toggle option in the Enfold > Shop options screen next to the cart options.

    Actually adding an icon in the bar for account is quite difficult for novice users so if it is possible to have an icon appear at the top it would be really appreciated.

    See site in private content as an example of how I see this working:

    #1372056

    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

    #1372054

    Hi,

    Thank you for your message. I added the code. But the problem persists. I have to reload the page on mozilla and safari for the video to start, and on chrome the video does not work at all. Any other idea please ?
    I chose enfold for this site because I thought it would be possible to put a full screen video in the background. So I really hope you find a solution.

    Thank you very much,
    Best regards,

    Audrey

    #1372053
    jonasbecker
    Participant

    Hey Enfold-Team,

    is there a possibility to add a CTA-Button only to the mobile menu?

    The result should have a button like this: https://sfvoe.de/wp-content/uploads/2022/11/CTA-mobile.jpg

    Thank you in advance!

    Kind regards
    Jonas

    #1372052

    Topic: PHP Parse error

    in forum Enfold
    GD_2018
    Participant

    Hi,
    we are using the enfold theme with a child theme and have issues with upgrading to PHP Version 8.0.
    We use the latest Enfold theme 5.2.1 and get this PHP Parse error: Unterminated comment …
    /themes/enfold-child/funktions.php on line 3

    Thanks for helping us!
    Regards,
    Christine

    #1372048
    Thomas Fellinger
    Guest

    Hi,

    i have got a report about a specific SQL Injection vulnerable in one of the enfold themes modules.
    If you provide me a contact possibility i will send it to you directly.

    kind regards
    tom

    #1372043

    Hi Ismael !
    I’m using Enfold last version and Enfold Child Theme. If i read you well, you suggest me to specify different screen into the setting. That could help me in a way but i’m a lazy dog and your css link isn’t easy to read. I understand the complexity of the browsers number, and different type of screens make the problem bigger. I just ask if i could find a middle setting. Just a good deal between all of this stuff !

    Best regard

    #1372038

    Hey Arobazinfo,

    Thank you for the inquiry.

    Which elements are you using? You can specify font sizes for different screen width in the Enfold > General Styling > Advanced Options: Customize Typography Settings section. You can also edit certain elements in the Enfold > Advanced Styling panel and use css media queries in the Enfold > General Styling > Quick CSS field to further adjust the style of certain elements. Please check the article below for more info about css media queries.

    // https://css-tricks.com/a-complete-guide-to-css-media-queries/

    Best regards,
    Ismael

    #1372029
    xkicknitx
    Participant

    Warning: Illegal string offset ‘default’ in /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220

    We want to run this on PHP 5.6 version
    Wordpress 6.0 version

    #1372024

    Hey navindesigns,

    Thank you for the inquiry.

    You have to modify the themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.php file and place the code below around line 1061.

     $categories = get_the_terms($key['ID'], 'portfolio_entries');
    
                            $separator = ' ';
                            $output = '<div class="av-portfolio-cat">';
                            if ( ! empty( $categories ) ) {
                                foreach ( $categories as $category ) {         
                                    $output .= '<span>' . esc_html( $category->name ) . '</span>' . $separator;
                                }
                            }
                            $output .= '</div>';
    

    You can add it right below this code.

     if ( ! empty( $title_link ) ) {
                                $output .= "<a href='{$title_link}' title='" . esc_attr( strip_tags( $title ) ) . "'>" . $title . "</a>";
                            } else {
                                $output .= $title;
                            }

    Best regards,
    Ismael

    #1372019

    Hi,

    Thank you for the update.

    We were able to reproduce the issue on Safari and the only clue that we got is this error, which seems to be related to the fullscreen policy of the browser.

    Feature policy 'Fullscreen' check failed for iframe with origin 
    

    Please try to edit the themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow-video.js file and add this code around line 248..

    ifrm.setAttribute("allow", 'fullscreen' );
    

    .. just below this line of code.

    ifrm.setAttribute("src", this.$video.data('src') );
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings and turn off the cache plugins before testing the page again.

    Best regards,
    Ismael

    #1372016

    Hi,

    Thank you for the videos and screenshots.

    We are not yet sure why the items in your page reanimate on scroll but it might have something to do with the isotope script, which handles the portfolio grid’s layout and filters. Please try edit the enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.js and remove the following code around line 66.

    
    			// update columnWidth on window resize
    			$(window).on( 'debouncedresize', function()
    			{
    			  	applyIso();
    			});
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings, and do a hard refresh before testing the page.

    Best regards,
    Ismael

    #1372014

    Hey berlingo911,

    Thank you for the inquiry.

    This is possible but this will require modifications that are beyond the scope of support. You may need to hire a freelance developer for this additional option, or contact our partner Codeable.

    The code for the contact form is located in the themes/enfold/config-templatebuilder/avia-shortcodes/contact folder and in the themes/enfold/framework/php/class-form-generator.php file.

    Best regards,
    Ismael

    #1372013

    Hi,

    Thank you for following up.

    We are not really why that is happening but as @Yigit said, it might have something to do with caching. Hard refreshing the page or temporarily disabling the plugin while editing the site should help.

    Did you enable the Lock Advanced Layout Builder in the Enfold > Layout Builder panel?

    Best regards,
    Ismael

    #1372012

    In reply to: Design as new template

    Hi,

    You cannot save a demo as templates, so you will have to import the demo first in a different installation, then manually save the pages as templates. If you want to import a specific content or page from a demo, please refer to the documentation below.

    // https://kriesi.at/documentation/enfold/import-demos/#how-to-import-content-from-other-demos

    Best regards,
    Ismael

    #1372011

    In reply to: Custom filters

    Hey mvanstee,

    Thank you for the inquiry.

    You will have to manually modify the avia_woocommerce_frontend_search_params function in the themes/enfold/config-woocommerce/config.php file around line 1541. Sorting the items or products by tags or categories is not supported by Woocommerce by default, so you will have to code it manually. Please note that this kind of modification is beyond the scope of support, so you may need to look for third party developers for additional assistance. You can contact our partner Codeable or hire a freelance developer to add the option.

    Best regards,
    Ismael

    #1372004

    Hello Rikard,

    I didn’t do any changes so I would think it’s theme related, but I can do the test to be sure :) But can I test another theme without loosing all my data on the enfold theme ?

    Thank you.

    Best,

Viewing 30 results - 21,451 through 21,480 (of 244,526 total)