Viewing 30 results - 9,061 through 9,090 (of 244,463 total)
  • Author
    Search Results
  • #1438479

    Hi,

    You can do that under Enfold->Main Menu->Alternate Menu For Mobile

    Best regards,
    Rikard

    #1438475

    Hey TBant,
    Thank you for your patience, if you are using the masonry gallery with the caption always showing under the image:
    Enfold_Support_5180.jpeg
    and you want to change the background color of the caption, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .main_color .container .av-inner-masonry-content,
    #top .main_color .container .av-masonry-entry .avia-arrow {
    	background-color: orange;
    }

    After applying the css, please clear your browser cache and check.
    This is the expected results:
    Enfold_Support_5184.jpeg

    Best regards,
    Mike

    marathontriad
    Participant

    This is the 2nd hosting environment in which I am experiencing this error. The first was GoDaddy and was nearly identical.

    [26-Mar-2024 19:54:20 UTC] PHP Fatal error: Unparenthesized a ? b : c ? d : e is not supported. Use either (a ? b : c) ? d : e or a ? b : (c ? d : e) in /chroot/home/a44d976b/7962ae75fb.nxcli.io/html/wp-content/themes/enfold/functions-enfold.php on line 313

    brunobuercher
    Participant

    Good day,
    When using the Health Demo as the basis for my homepage I have the following problem and cannot solve it.
    If I select a submenu item in the Service menu (e.g. Nutrition) and then navigate back using the Safari browser’s back button, the menu is not displayed correctly. (the menu is opened and the menu sub-item of my previous selection is displayed).
    This error appears on the iPAD in the Safari browser during the demo https://kriesi.at/themes/enfold-health-coach/
    but also on my own homepage. I cleared the cache several times, but that didn’t solve the problem.
    I know I could use the burger menu for iPAD, but I want to use the normal menu for landscape mode.

    Thank you very much for your help and
    With kind regards
    Bruno

    #1438464

    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

    #1438425
    #1438423

    In reply to: cache not working

    Hi,
    Thank you for the update about the SG cache system, I don’t know why this was an issue, but I’m glad that you have it sorted out now, and now your site is working well with no issues.
    Thanks for sharing your experience, perhaps this will help future users that are using the SG cache system.
    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

    #1438419
    ipressen
    Participant

    I’m struggeling with creating a common pricing table comparing the packages for purchase, i.e. 4 columns where the first contains the text description of the feature and the following 3 has icons.

    …………… package A package B package C
    Feature 1: [checkmark] [minus] [minus]
    Feature 2: [checkmark] [checkmark] [minus]
    Feature c: [checkmark] [checkmark] [checkmark]
    Price 10,- 20,- 30,-

    Can anybody point me in the right direction on how to design this in Enfold?
    Creating a table does not allow me for using other than text but I need the icons. Using columns and other layout elements does not allow me to align the feature text with the icons.

    #1438417
    Qgrafica_7
    Participant

    Good morning, I tried to connect the Instagram account but it keeps giving this error, what am I doing wrong?
    What’s the difference between ‘get from your Instagram account’ and ‘cache on your server’?
    Which one is better?
    I have sent the access details in private content for you to review and possibly run tests.

    thank you very much
    Valentina

    #1438415

    In reply to: cache not working

    UPDATE
    Dear Mike
    I tried many times to fix this issue my self and also with the help of other professionals but the outcome was always the same, we could not make enfold work together with SG cache system. So we decided to leave SG and now the website is hosted in other provider with no problems regarding there cache.

    #1438412

    Hi,

    Thank you for the update.

    Yes, you can ACF or the theme’s dynamic content feature. Please check the link below for more info:

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

    You can also create a Custom Element Template (CET):

    // https://kriesi.at/documentation/enfold/custom-element-templates/

    Best regards,
    Ismael

    #1438410

    Hi,

    Thank you for the update.

    Have you tried adjusting the Enfold > Blog Layout > Blog Styling settings? Categories should display automatically when the Blog Styling is set to the second (Elegant) or third (Modern Business) option. They will not display if the default style is active.

    Best regards,
    Ismael

    #1438400
    Renard
    Participant

    Hi team,

    Could you please confirm if there is a way to incorporate a conditional field within Enfold’s built-in contact form? Is this feasible?

    Thank you

    #1438387

    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

    #1438386

    In reply to: Blog page questions

    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

    #1438385

    Hi,
    I believe that you are referring to the Widget Navigation Menu,
    Enfold_Support_5176.jpeg
    to add the icons to those menu items add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #menu-footer-menu li.menu-item > i ~ a {
    	display: inline-block;
    }
    #menu-footer-menu li.menu-item > i:before {
    	color: #fff;
    }

    Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor, if you are not using 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:
    Enfold_Support_2680.jpeg
    then add this code and save. Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    function add_icon_to_widget_menu_items() { ?>
      <script>
    document.addEventListener("DOMContentLoaded", function() {
        const menuItems = document.querySelectorAll('#menu-footer-menu li'); 
        menuItems.forEach(function(item) {
            let classes = item.className.split(/\s+/);
            let iconClass = classes.find(c => c.startsWith('menu-item-icon-'));
            if (iconClass) {
                let iconName = iconClass.replace('menu-item-icon-', '');
                item.innerHTML = '<i class="fa ' + iconName + '"></i> ' + item.innerHTML;
            }
        });
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'add_icon_to_widget_menu_items', 99 );

    Enfold_Support_5178.jpeg

    Best regards,
    Mike

    #1438383

    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

    #1438382
    Lokita Carter
    Guest

    Hello,
    I bought two licenses for Enfold via Themeforest. When I go to your support forum, I see a message informing me that my license is expired. I input my license key and it is not recognized. Please help!

    I have a problem with the blog post layout and sharing social media links. Works fine in default editor, but not in advanced layout builder.

    Many thanks in advance.

    Lokita

    #1438372

    In reply to: X icon (former icon)

    Hey ftt123,

    It’s included in the latest version of the theme, please update to that: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update

    Best regards,
    Rikard

    #1438369
    TBant
    Participant

    Hi

    I have column link enabled and hover effects disabled on the main element as I want to define my own .

    Inside layout-wholebox, I have two divs with custom classes layout-heading and layout-image
    The hover effect for layout-heading below works, however the one for layout-image does not. Layout-image is an image.

    I think the issue may be related to it being an image.

    I’ve tried with/without the image being linked and have disabled linked image effects under enfold>advanced styling

    #top .layout-wholebox:hover .layout-heading {
    background-color: #ea6a02 !important;
    transition: 0.4s ease-in-out !important;
    }

    #top .layout-wholebox:hover .layout-image {
    transition: opacity 0.4s ease-in-out !important;
    background: #151414c2 !important;
    }

    Help would be appreciated.

    Also wondering if this is efficient use of CSS to create the effect.

    Thanks

    #1438363

    Hi,
    It sounds like you followed the instructions above and the main menu now has the icons next to the items, so the next step is to create a footer menu in the menu page
    Enfold_Support_5168.jpeg
    and then ensure that you have added the classes to the footer menu items, just like the main menu:
    Enfold_Support_5170.jpeg
    then choose the footer menu for the footer location:
    Enfold_Support_5172.jpeg
    and you should see the icons next to the items:
    Enfold_Support_5174.jpeg
    Please note that the footer menu doesn’t allow a drop down menu so you won’t see sub-menu items.

    Best regards,
    Mike

    #1438350

    In reply to: Blog page questions

    Hi Mike,

    Many thanks for the explanations and fixes – I’m getting my head around it, albeit a bit slowly! Thanks for your patience!

    It’s working as I wanted, now, so that’s great. As I said before, there’s a lot of options in Enfold and you have to experiment a bit to find out how they work together. My main puzzlement was over the mini preview images attached to the links in the sidebar – but only on the main blog page; once you were reading a post itself the sidebar links didn’t show the mini preview image. That got me well confused!

    I can wrap my head around a bit of CSS, the main problem is identifying the right selectors to be working with. I try and use the developer/inspect panels on the browsers – but I still struggle, there’s so much in there!

    Anyway, job done for the timebeing, appreciate your help.

    Hugh

    #1438343

    Topic: X icon (former icon)

    in forum Enfold
    ftt123
    Participant

    How to include the new X icon for twitter in Enfold theme options social profiles
    Thanks in advance!

    #1438340

    Hi,
    Glad Günter was 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

    #1438326

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

    Download here
    Translation: Italian language
    Version: Enfold 5.6.12
    Released on: 16th March 2024
    Strings: 6335
    All translations are synchronised with the source files

    Regards
    Luigi

    #1438317

    Thanks. I´ve tried to center the text (or banner) of the company name and size font using html or text in header widget but does not align. Then tried to use the following instructions https://kriesi.at/documentation/enfold/example-of-logo-left-widget-center-menu-right/#toggle-id-2 but still does not work.The text is stuck to the bottom, I need to align it at the height of the menu/logo and edit the font height and color. Also, change gray color now as background of the header

    • This reply was modified 2 years ago by Rocuant.
    #1438315

    In reply to: Dynamic CSS

    hi Mike,
    i’ve been having issues with dynamic css as well, and that code snippet you provided seems to have fixed those issues, with this particular site.

    function custom_avf_post_css_create_file( $create )
    {
    	return false;
    }
    
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );

    can you please provide a little detail on what that code does & why it may have been required?
    thanks heaps,
    Jason

    actually, i might just give you a little more info on my setup.
    it’s a plesk server running nginx & redis object cache.
    i’m actually using wp-rocket for the front end caching side of things (i don’t have much switched on).
    to complicate matters more(?) dns is with cloudflare, so i also have to periodically clear the cache there.
    no performance settings enable in enfold.

    • This reply was modified 2 years ago by Jason.
    #1438314

    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

    #1438313

    Hi,
    Glad Rikard 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

    #1438312

    Hi,
    Glad to hear that you have this sorted out, and thanks for sharing. 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

Viewing 30 results - 9,061 through 9,090 (of 244,463 total)