Viewing 30 results - 4,381 through 4,410 (of 244,342 total)
  • Author
    Search Results
  • #1474383
    Marcel Kappelsberger
    Guest

    Sehr geehrte Damen und Herren,

    leider habe ich weiterhin keinen Zugriff zum Purchase-Code, da dies der vorherige Website-Administrator nicht überliefert hat. Daher kann ich hier kein Update durchführen.

    Siehe hier:

    Wie kann ich nun vorgehen?

    #1474372
    Sarah
    Guest

    Hi,

    We can see that we can create custom content types and display individual pages using that layout.

    Is there a way to create the views ? easily.. so they look better than just blog posts.

    E.g. ideally we’d have for say project.. a small image, big image, short description and full one..

    One the projects overview page.. we’d use the small image and short description, then they click through and get the full project.. looking as we’d like it to be

    We’d also ideally have that projects page be filterable by project.

    so.. in a way a customised portfolio page.
    but also like to use this for other things like staff directory by department etc.

    thanks

    #1474368

    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

    #1474365

    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

    #1474364

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

    #top.page-id-8462 #header .inner-container {
        border-bottom: none;
    }
    #top.page-id-8462 .av_minimal_header #header_main {
    	border-bottom: 1px solid #000;
    }

    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

    #1474363

    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

    #1474360

    Hi Guenni,

    Thanks for getting back so quickly. I pasted the code, nothing is happening though.
    I have tried different scripts now that i found on the interwebs, some work partially, some don’t.

    How is it so hard to make the header reappear upon scroll-up? Shouldn’t there be just a toggle switch for this in the enfold child – header settings?

    I can’t be the only one with this problem. All the solutions i find on youtube are based on elementor. Which i don’t have.

    Some other solutions are depending on making a js folder in enfold child folder. Then making a .js file and inserting a script, then a code for functions.php and also one for style.php, did a couple of those and none seem to work or do anything at all.

    #1474341

    ok – then erase the given css code.
    But for having the submenue sticky aswell there had to be hardcoded changes to enfold elements. This is not so easy as just css settings.

    PS:

    but even 990px are not enought – your menue overlays the logo much earlier.

    @media only screen and (max-width: 1080px) {
        #top #header .av-main-nav > li.menu-item:not(.menu-item-search-dropdown)  {
            display: none!important;
        }
        #top #header .av-burger-menu-main {
            cursor: pointer;
            display: block!important;
        }
    }
    #1474340

    Hi Thanks,

    Thanks a lot for getting back and the tips provided!

    It is ok for the header to disappear when scrolling down, that way customers can see more of the content. There is no need to constantly see the whole header.

    I don’t see any options in the enfold child – main menu tab to choose a breakpoint.

    Also all of my pages have a submenu that breaks to burger on smaller screen. I don’t know what the best solution is for mobile viewers. Most people are viewing the website through mobile i guess nowadays.

    I tried pasting your code, and it works for permanently viewing the header, however the submenu disappears upon scrolling, and the logo doesn’t shrink so the logo is overlaying on the content of each page. is there a way to also permanently show the submenu?

    Cheers!

    #1474333
    yahyabirinci
    Participant

    Hello, I have been using it for a long time and have not had any problems, but despite updating the wordpress version and enfold theme, this editor is not editable. The php version is PHP 7.4. How can I proceed? Is there a way to find out what is causing the error?
    https://prnt.sc/yzIYEQZY7wvN

    #1474323

    In reply to: grids

    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

    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

    #1474321

    In reply to: No love for Bluesky?

    Hey JL,
    Unfortunately fontello.com doesn’t offer a Blue Sky icon, perhaps they will in the future as it becomes more popular, in the meanwhile you could add your Blue Sky link to a social network that you don’t use and use css to replace the icon with a Blue Sky image. See this thread.
    You can also add your request to the open Enfold Feature Request for Blue Sky here.

    Best regards,
    Mike

    #1474309

    Topic: No love for Bluesky?

    in forum Enfold
    JL Faverio
    Participant

    Hey Enfold team! Are there any plans to add a Bluesky icon in the Social Profiles section?

    I’d like to add social icons and links to the socket, but I don’t want to leave out Bluesky. So I’ll hold off and see if this is already possible or coming soon.

    Hope to hear from you soon, thanks!

    #1474308

    In reply to: Missing Page Titles

    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

    #1474307

    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

    or just – activate the option in main menue to show search icon ( this is the one for ajax search )

    and put this to your child-theme functions.php:

    
    function add_search_to_main_menu($items, $args) {
        if ($args->theme_location == 'avia') { 
            $search_form = '<li id="menu-item-search-desktop" class="menu-item av-medium-hide av-small-hide av-mini-hide" role="menuitem">' . get_search_form(false) . '</li>';
            $items .= $search_form;
        }
        return $items;
    }
    add_filter('wp_nav_menu_items', 'add_search_to_main_menu', 10, 2);

    and this to quick css:

    #avia-menu {
      display: flex;
      flex-flow: row nowrap;
      justify-content: space-between;
      align-items: center;
    }
    #top #searchform > div {
      position: relative;
      max-width: 220px;
      opacity: 1 !important;
      display: block !important;
    }
    /*=== synchronise it with your hamburger breakpoint ===*/
    @media only screen and (min-width: 990px) {
      #menu-item-search {
        display: none;
      }
    }

    Advantage : Ajax Functionality is preserved for mobile case.
    see: https://enfold.webers-webdesign.de/

    PS: after you have seen the demo page, I will remove it again, because it disturbs other demos on the site.
    e.g. the one with left and right header layout

    #1474297

    In reply to: enfolded 4.5 – php 8

    Hey Bernd,
    Our current version (v6.0.8) supports PHP v8, to update in this case please delete the theme folder /enfold/ via FTP and then upload the new theme folder /enfold/ from your theme download in your Theme Forest account via FTP. Don’t simply try to overwrite the theme folder via FTP as some old files will be left behind as cause errors.
    I recommend creating a full backup first.

    Best regards,
    Mike

    #1474295
    Bernd
    Guest

    Hallo,

    ich habe eine Webseite (jira.at) zu einem anderen Provider migriert und festgestellt, dass dort nur PHP 8 aufwärts verfügbar ist und die 4.5 Version nur php 7.4 unterstützt. Aus diesem Grund habe ich jetzt ein anderes Template aktiviert.

    Meine Frage: wurde damals eine Version für Joachim Jira gekauft (jira.at)? Wenn nein, unterstützt die aktuelle Version php8.x und kann ich diese einfach über die alte Version via FTP kopieren?

    besten Dank
    Bernd

    #1474293

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

    #footer .widget_pages .widgettitle {
    	display: none;
    }

    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

    #1474283

    In reply to: Angular theme 4.1

    Hey Rick,

    Thank you for the inquiry.

    The site requires additional authentication. Please provide the .htaccess credentials in the private field so we can access and check the site. Kindly note that the theme is no longer compatible with the latest version of WordPress. You may need to revert to an older version of the platform or consider switching to a compatible theme, such as Enfold. For more details about the Enfold theme, please check this link:https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990

    Best regards,
    Ismael

    #1474268

    In reply to: Menu sur 3 niveau

    Merci pour votre retour,

    Je pourrais donc utiliser seulement le menu principal avec cette méthode en ajoutant un séparateur ?

    ou dois je ajouter le nouvel élément de menu de lien personnalisé je ne trouve pas sur Enfold ou wordpress ?

    Comment ajouter une marge entre mes boutons pour qu’ils soient plus espacés ?

    Cordialement,

    #1474261

    Hey Antonio,

    Thank you for your inquiry!

    You can add the email address in the Contact Form > Backend > Your E-Mail Address field. If you’re experiencing issues with receiving messages, please refer to this guide: https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-

    Merry Christmas!

    Best regards,
    Ismael

    #1474257
    abortolotti
    Participant

    Hi guys,
    Merry Christmas!!!
    I haven’t done this in a number of years and I do not remember anymore how do I connect the Enfold contact forms to an actual inbox.
    Could you shed some light on it for me please?
    I downloaded a plugin called WPForms, is that ok?
    Looking forward to hearing from you, I send you my best regards.

    Antonio

    #1474247

    Hi,

    Thanks for following up.

    Unfortunately, there is no documentation available for some of the core scripts or functions. All the available documentation for the theme can be found here: https://kriesi.at/documentation/enfold/

    Best regards,
    Ismael

    #1474240

    In reply to: Enfold Language

    Hey Aubin,

    If some words are missing in your language, then please contribute and submit your own language files: https://github.com/KriesiMedia/enfold-language-files

    Best regards,
    Rikard

    #1474237

    In reply to: Website

    Hey Andreas,
    Thanks for the link to your site, I see that it is using v4.8.8 of Enfold. This is very old, please login to your Theme Forest account and update to v6.0.8
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    #1474236

    Topic: Website

    Andreas
    Guest

    I apologize for using the presale questions, but here is our situation:
    We have had enfold for about 2 years now and I am new to the company so I do not know who’s email purchased the theme; therefore I cannot put in a regular ticket.
    Whenever I go to put new content on the website it uploads for only 2 minutes and then it disappears. I have tried backing up the content, but it does not work.
    We need help.

    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

    Hi,
    Glad Guenni007 could help, thank you Guenni007, we will close the thread for you as solved. 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 - 4,381 through 4,410 (of 244,342 total)