Viewing 30 results - 18,871 through 18,900 (of 244,617 total)
  • Author
    Search Results
  • #1398330

    Hi,

    Thanks for sharing your solution!

    For future readers, we also have a code snippet here: https://kriesi.at/documentation/enfold/menu/#different-menu-for-different-pages

    Let us know if you have any other questions and enjoy the rest of your day!

    Best regards,
    Yigit

    #1398322

    ***SOLVED****
    Further to this, for anyone wanting to solve this challenge of having conditional man navigation menus based on the site section, the below set of functions:

    1. Setup specific menus for your audiences (Patient and HCP in this example)
    2. Creates an is_child function that determines if the page has a parent page called something specific (you can also do this by page ID or page slug of the parent but I want to re-use it for other sites so using the page name)
    3. Provides the conditional swap logic “my_custom_wp_nav_menu_args” to swap out the main nav and defaults to the Enfold Main Nav otherwise.

    So to set this up:

    Create the following in the child theme functions.php
    Create your section home pages
    Create your sub-pages and then set their parent page as the section home page

    I hope this helps someone.

    function register_my_menus() {
    register_nav_menus(
    array(
    ‘patient-menu’ => __( ‘Patient Menu’ ),
    ‘HCP-menu’ => __( ‘HCP Menu’ )
    )
    );
    }
    add_action( ‘init’, ‘register_my_menus’ );

    /**
    * Child page conditional
    * @ Accept’s page ID, page slug or page title as parameters
    * https://sridharkatakam.com/useful-functions-checking-pages-sub-pages-wordpress/
    */
    function is_child( $parent = ” ) {
    global $post;
    $parent_obj = get_page( $post->post_parent, ARRAY_A );
    $parent = (string) $parent;
    $parent_array = (array) $parent;
    if ( in_array( (string) $parent_obj[‘ID’], $parent_array ) ) {
    return true;
    } elseif ( in_array( (string) $parent_obj[‘post_title’], $parent_array ) ) {
    return true;
    } elseif ( in_array( (string) $parent_obj[‘post_name’], $parent_array ) ) {
    return true;
    } else {
    return false;
    }
    }

    add_filter( ‘wp_nav_menu_args’, ‘my_custom_wp_nav_menu_args’ );

    /**
    * CManu switch based on page/parent relationship for HCP, Patient or others
    * @ Accept’s page ID, page slug or page title as parameters
    * PJE – RESOLVE
    */

    function my_custom_wp_nav_menu_args( $args = ” ) {

    if($args[‘theme_location’] === ‘avia’)
    if ( is_child( ‘HCP Home’ ) ) {
    $args[‘menu’] = ‘HCP’;
    } elseif ( is_child( ‘Patient Home’ ) ) {
    $args[‘menu’] = ‘Patient’;
    } else {
    //* otherwise set the default as defined in the enfold-child theme as Main Menu
    $args[‘menu’] = ‘avia-menu’;
    }
    return $args;
    }

    #1398318

    Hi Rikard,

    thank you very much for your advice. As you recommended, I removed the code block for the “IG thing”. Lo and behold, the site is running at a reasonable speed again.

    And we found that we can use the Enfold plugin for the IG addition again, because the reason we used the Smash Ballon plugin for that IG thing is gone. It makes our lives easier too. Please close the thread.

    Thanks a lot for your support!
    Best regards,
    Sonja

    #1398315

    In reply to: Change Shop

    Hi Mike,
    Thank you very much for your help.

    I do not exclude returning to this ticket for further implementations on this Enfold Bookshop.
    But for now I’ll stop here and propose these changes to my client, who I think will be satisfied.

    Best regards,
    Oriano

    Enfold x ever

    #1398309

    Hey Jim Zeigler ,

    Thank you for the inquiry

    We do not sell plugins, only WordPress themes. Are you using the Enfold theme? And yes, the theme supports the latest versions of PHP.

    Best regards,
    Ismael

    #1398307

    Hey Johan,

    Thank you for the inquiry.

    You have to disable the native layer slider plugin by adjusting the Enfold > Layout Builder > Integrated (Bundled) LayerSlider Plugin settings first, before installing and activating the stand-alone plugin. You should be able to register after that.

    Best regards,
    Ismael

    #1398303

    The contact form from the enfold theme doesn’t work, thats why its disabled. But i mean that i’ve installed by Enfold options unther Google services the Recaptcha V2 and V3. There should me a label on the right bottom site op recaptcha itself with the round arrow icon. On this site and riambv.nl is doesn’t show.

    Hey simplycoding15,

    Thank you for the inquiry.

    Where do the issues occur? Please create a test page and provide screenshots so that we can understand the problem better. You should also update the theme to version 5.4 and remove the older Enfold folder to avoid confusion.

    Best regards,
    Ismael

    #1398282
    Emanon
    Participant

    I want to adjust the height of the top bar so that there is more space for the icons. But only in the mobile version. The height of the topbar in desktop version is good as it is.

    Enfold

    Thanks in advance.

    • This topic was modified 3 years, 2 months ago by Emanon.
    #1398278
    jaimemerz
    Participant

    The main logo as an SVG is not providing alt text. Is there a way to do this within Enfold or the child theme without using the title field? Our accessibility scan is failing because the logo does not have an alt tag and it HAS to be in the alt tag field (not the title field).

    Thanks!

    #1398277
    jaimemerz
    Participant

    We are cracking down on our accessibility. The main logo as an SVG is not providing alt text. Is there a way to do this within Enfold or the child theme without using the title field? Our accessibility scan is failing because the logo does not have an alt tag and it HAS to be in the alt tag field (not the title field).

    Thanks!

    #1398274

    I have the latest version of Enfold but the video is black and I can’t click on it.

    #1398271
    bonsaimedia
    Participant

    Hi,

    I sometimes see these kinds of notifications (see private data) from WooCommerce that there are templates that need updates. Do I really need to do anything with that or can we ignore it?

    Thnks.

    #1398269

    Well, I got this fixed on my own. So I wanted to come back and put what I learned in case this helps anyone else with the same issue. The Enfold theme has a performance settings tab with Enable Lazy Loading. And the site web host does caching (Flywheel/WP-Engine). So to fix the image animations, I discovered that the CSS was loading in a weird order causing the animations to fail. By turning off Lazy Loading and flushing the cache at the web host, it fixed everything.

    #1398267

    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

    #1398266

    In reply to: Burger menu only

    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

    #1398265
    fjhughes
    Participant

    Hello,

    I want to be able to do something similar to what I found on this site: https://www.noyesdevelopment.com/

    I know fullwidth slider does the static caption and rotating images. But if you scroll, on that site, the image has a fixed or parallax affect to it.

    Is there a way in Enfold to mimic that?

    Thanks,
    -Fred

    Hi Mike,
    in your demo it works but in all other demos it does not. See for example here: https://kriesi.at/themes/enfold-minimal-photography/

    Also it doesn’t matter if it’s the mobile menu or desktop, it should work on both.
    I think it’s because of the /#top after the href of the current-menu-item.
    Is there a way to correct that?

    Here is a link to an older forum post, but it’s very complicated and not update save:

    Best regards,
    Jasper

    simplycoding15
    Participant

    Hello,

    We have been having lots of problems with our theme and not sure why. I’ve reached out to a few people on Fiverr and they all agreed that there are corrupt files. Could someone please help us? I paid for an extra 6 months of support. I have two websites using the enfold child theme. Thanks!

    #1398253

    Hi,
    Do you mean the FB icon? This is hidden by default on mobile to save room in the header, try adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 479px) {
    .responsive #top #wrap_all #header .social_bookmarks, .responsive #top #wrap_all #main .av-logo-container .social_bookmarks {
        display: block;
    }
    }

    Best regards,
    Mike

    #1398250

    Hi,

    Great, I’m glad that we could help. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    Hi,
    I have tested my demo page linked above on Windows in Chrome, Firefox, & Edge which has the desktop burger menu showing and going to a page like the frontpage or the features page and then clicking the same menu item again closes the menu. I also tested this on a actual Android device.
    But I do see the error on our 2017 Demo on mobile since the desktop burger menu is not active, I will ask the rest of the team what they are experiencing on their demos, do you find my demo to be working as I say?

    Best regards,
    Mike

    Hi,
    Thanks for the login, I see that none of your pages are displaying either logged in or out, same with your posts.
    Please try disabling all of your plugins including the iThemes Security Pro plugins and leave them disabled, except the “Tijdelijke login zonder wachtwoord” so we can still login.
    Then try re-installing WordPress to ensure that none of the core WordPress files are damaged, you can easily do this at WordPress Updates:
    Enfold_Support_373.jpeg
    I have not seen this before.

    Best regards,
    Mike

    M-Graphics24
    Participant

    Hi Enfold
    Please could I get help with a situation on enfold? I am currently working on a site and I had uploaded fonts to be used for certain headings. It was all working 100% until about 2 hours ago and now even though I have those fonts selected in Advanced Styling, enfold is not reading those fonts anymore. HELP.
    I also need assistance with the fact that my header set in the color section shows white banding on the left and right when opening on a screen that is bigger than a 21 inch – how do I fix that

    #1398240
    M-Graphics24
    Participant

    Hi Enfold
    Please could I get help with a situation on enfold. I am currently working on a site and I had uploaded fonts to be used for certain headings. It was all working 100% until about 2 hours ago and now even though I have those fonts selected in Advanced Styling, enfold is not reading those fonts anymore. HELP.
    I also need assistance with the fact that my header set in the color section shows white banding on the left and right when opening on a screen that is bigger than a 21 inch – how do I fix that

    Hi Mike,

    i’ve tested it on many enfold websites and it’s not working. Either desktop nor mobile and in different browsers.
    Please see your demos on the kriesi.at website. It’s not working.
    Maybe i’ve made it not clear? The problem is, if you are (for example) on the Frontpage and you open the burger menu,
    you’re not able to close the menu by clicking on the Frontpage menu item again. But if you just want to stay on the Frontpage,
    that would be a common way to just close the overlay menu.

    Best regards,
    Jasper

    #1398213

    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

    #1398212

    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

    #1398211

    Hey stevel58,
    Please try going to Enfold Theme Options ▸ Import/Export ▸ Iconfont Manager and delete the flaticon-sports icon and then save your settings and then try to install the icon file linked below.
    If you get an error when tring to install the file then it could mean that your webhost doesn’t have the PHP ZipArchive Extension enabled, this is needed for the server to unzip zip files, try asking your webhost to check.
    If this doesn’t help please include an admin login in the Private Content area so we can check.

    Best regards,
    Mike

    #1398209

    In reply to: Change Shop

    Hi Mike
    now it’s almost perfect.

    One last detail.
    I saw that I can edit the “.pa-author” css, and this is great.
    But since book authors are fussy… we should add a colon after the word “Author”.
    To obtain:
    Author: Name Surname

    Post scriptum: I hope this will also be useful for an upcoming demo of Enfold “Bookshop”

    Best regards
    Oriano

Viewing 30 results - 18,871 through 18,900 (of 244,617 total)