Viewing 30 results - 11,341 through 11,370 (of 244,522 total)
  • Author
    Search Results
  • #1427846

    In reply to: Submenü Abstand

    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

    #1427845

    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

    #1427843

    Hi,
    Thank you for the link to your site, it looks like you added the css twice, I removed one for you:
    Enfold_Support_4067.jpeg
    Please clear your browser cache and check.

    Best regards,
    Mike

    #1427842

    Hey Melissa,

    We only have one theme, but we have several demos. Maybe that is what you are referring to? All demos are included in the theme and can be imported via the theme backend, you can see them all here: https://kriesi.at/themes/enfold-overview/

    If you are looking to sell things on your site, then you can try using the Woo plugin.

    Best regards,
    Rikard

    #1427840

    In reply to: Shortcodes not enabled

    Hey lkerbyson1,

    Which shortcodes are you looking to use? If you are referring to the theme shortcodes, then debug mode can be activated under Enfold->Layout Builder->Show advanced options.

    Best regards,
    Rikard

    Melissa
    Guest

    Hi Enfold Team,

    We see that you have lots of themes. As a beginner of using WordPress theme, we will be much appreciated if you can give us some advice or suggestions about which Enfold theme will be most suitable for my B2B business? Also we’d like that theme can meet our requirements that have a button which can post some articles and the purchasing functions. Thanks again in advance! Looking forward to you soon.

    Best Regards,
    Melissa from UPP

    #1427829

    Hi Mike,

    Thank you for testing !
    I’m a bit confused because there was a time that I did add toggles.
    Anyway, after updating Enfold to the latest version my issue seems to be gone.

    But I also found a mistake in my modified component:
    I forgot to change the following line:
    $toggle_atts[‘custom_id’] = ‘toggle-id-‘ . avia_sc_toggle::$toggle_id++;

    This means that there was a confusion when using both custom and original toggle component.
    I fixed this and all seems to work fine.

    Thanks again Mike and Ismael for helping me fixing this issue.

    Best regards
    Xavier

    #1427825

    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

    that title you see on the image from: https://kriesi.at/support/topic/how-to-get-rid-of-curved-arrow-on-linked-images-and-allow-image-title-to-show/#post-1427817 – is a “tooltip” and – you can not influence that. It is part of the standard behavior of all browsers – and position is dependent on where your mouse rests over the image. ( The title tag from DOM i used for inserting it to overlay – is part of enfold source code ).

    did you follow the link of my test-page? there you have the title tag on that position you like
    see: https://webers-testseite.de/image-title-to-hover/

    #1427819

    In reply to: Website speed

    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

    @Guenni007
    I was wondering about that (title tag being shown being a general thing, not an enfold thing). I figured it was being somehow overridden by the theme.

    • This reply was modified 2 years, 3 months ago by gatehealing.
    #1427805

    Hey maryenvato,

    Please try the following in Quick CSS under Enfold->General Styling:

    .av-masonry-entry .av-masonry-entry-title {
        text-transform: none !important;
        font-size: 18px !important;
    }

    Best regards,
    Rikard

    #1427800

    In reply to: CSS Colors

    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

    it would be nice to have the title inside that span.image-overlay-inside
    This would be easy if the overlay exists from the beginning ( on page load) . On avia.js – we see – it is generated via if(!overlay.length)
    having a whole child-theme avia.js seems to be a way – but we can use mutationObserver to see when it is added to DOM – and then insert the title.

    in my test case i gave a custom class to the image alb element : show-title
    now i can observe these classes if there is a new node added – and if so – add some html to it ( btw. i use the aria-label from the anchor – because if you set a custom title to the image alb this will be better to have)

    function transfer_label_to_overlay(){
    ?>
    <script>
    (function($) {
      var target = document.querySelectorAll(".show-title");
      var observers = [];
      // configuration of the observer
      var config = { attributes: true, childList: true,  subtree: true  };
    
      for (var i = 0; i < target.length; i++) {
          // create an observer instance
          observers[i] = new MutationObserver(function(mutations) {
              mutations.forEach(function(mutation) {            
                $(mutation.addedNodes).find(".image-overlay-inside").each(function() {
                  var imgLabel = $(this).closest('.avia_image').attr('aria-label').replace(/\-|_/g,' ');
                  $(this).append('<span class="overlay-title">'+imgLabel+'</span>');      
                });
              });
          });
          // pass in the target node, as well as the observer options
          observers[i].observe(target[i], config);
      }
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'transfer_label_to_overlay');

    now for quick css:

    .avia_transform .show-title a:hover .image-overlay {
      opacity: 1 !important;
      background-color: rgba(255,255,255,0.1);
    }
    /*** styling the title is up to you ****/
    .overlay-title {
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 500;
      font-size: 16px;
      line-height: 24px;
      font-family: var(--enfold-font-family-body);
      color: var(--enfold-main-color-heading);
      text-shadow: 1px 1px 3px #333;
      background-color: rgba(255,255,255,0.8);
      padding: 0 20px 5px;
      border-radius: 5px;
    }
    

    ( if you do not want the hover image behind the title set the pseudo-class to display : none)

    .show-title .image-overlay-inside::before {
      display: none;
    }

    see: https://webers-testseite.de/image-title-to-hover/
    left hand – no custom class : show-title – right hand: with custom-class.

    #1427794
    condonp
    Participant

    Dear Sirs,

    I have been playing around and am trying to get a coloured header border with menu options, and have the logo across the menu header and the full slider image as screenshot here. Can you advise how this can be done please. see https://peter-test2.co.uk/Enfold.jpg

    #1427789
    Henningcircle
    Participant

    Dear Kriesi-people,
    I have updated arnoldvanouwerkerk.nl as the theme gave an update request.
    Now the Enfold-settings ‘Import Child Theme’-setting gives me:

    “Importing didnt work!
    You might want to try reloading the page and then try again
    (The script returned the following message:

    Geen ouderthema-opties gevonden. Er is niets te importeren.)”

    Before this I had issues with the layout today and the website looked all different, font different and logo gone.
    I put back a backup of this morning.
    Can you help out please?

    Best wishes,
    Henning

    JannyPolak
    Participant

    HI,
    I know I can import demo’s, however, I do have some layouts ready already. So I do not want to overrule those by importing a demo.

    My question is how to make the layout like on the homepage of your demo ‘creative studio’ or ‘full service event agency’?
    What layout elements do I have to use to create the diagonal like elements?

    Thanks

    • This topic was modified 2 years, 3 months ago by JannyPolak. Reason: forgot to ask for followup replies
    #1427778
    sarawh
    Participant

    Hi,
    we´ve recently run into a conflict with the plugin Foo Bookings. It appears to be a conflict with Enfold because when I switched themes on advice of the plugin developer, the problem was resolved. I also tried deactivating all our usual plugins to make sure there was no conflict here, but this had no effect.

    With Foo Bookings you can add dates to a product so that the customer can choose his prefered date on the frontend of the product page. Foo has recently added a pop up window to this function in the backend: To add new dates you click on the button “Add dates” and then the pop up is displayed. Unfortunately the window is all greyed out and it isn´t possible to enter any data. You have to click on escape to make the window disappear again. When I switched to the theme WP 2024 the pop up window was no longer greyed out.

    I´d be really grateful if you could take a look at this and give me some advice.
    Thanks a lot in advance.

    Best regards,
    Sara

    We are exploring using a fairly new plugin which displays a gallery of pdfs generated by categorizing uploaded files within the Media Library. It is here: https://wordpress.org/plugins/catfolders-document-gallery/

    It seems they use the block editor to embed the gallery. We are using Classic editor and using the Enfold Advance Layout Builder. Anyone have an idea how we would embed a block within a page that was created using ALB?

    Or something else entirely that could integrate into Enfold?

    #1427775

    Topic: Enfold child theme

    in forum Enfold
    Pasteta
    Participant

    I have installed child theme, all pages works and loads correctly. The only issue is Front page which loads somehow news page withouts css. Don’t know from where, since in Enfold child the front page is set to something else – same value in default Enfold theme works.
    Under Wp-Pages list for page which should load as frontpage this text are added (Active Maintenance Mode Page (Change), Inactive Custom 404 Page (Change), Inactive Custom Footer Page (Change), Advanced Layout Builder) . If i click on them it opens enfold theme, where is all set correctly.
    If i change back to normal Enfold with equal settings everything works.
    Enfold version is 5.6.8, wordpress is updated to latest. No cache plugins active

    #1427773
    pikkuapuri
    Participant

    I am at the finish line in my clients blog -based site. Now they want the headline margins and line heights to be smaller and i agree. How to do that in Enfold settings?

    #1427769

    Hi,
    The (?:/wp-content/|/wp-includes/)(.*) was from the WP Rocket documentation, but I have removed it and the burger still opens correctly.
    Please clear your browser cache and check again.

    Best regards,
    Mike

    #1427767

    Hey vbonora,
    Thanks for your question, I don’t have experience using the Learndash plugin so I don’t know if there are any issues in the backend, but I have seen questions about the frontend and mostly they seem to be minnor issues. I would not say that it is 100% compatible. Please try going to Google and search this phrase: enfold Learndash site:kriesi.at
    I don’t recall any questions about Sensei LMS but searching with this phrase gave a few results: enfold Sensei LMS site:kriesi.at
    Hopefully comparing the results will help you with your decision.

    Best regards,
    Mike

    #1427760
    vbonora
    Participant

    Hi Kriesi,

    I hope you are doing well. I wanted to ask you some information about the compatibility of Learndash LMS with the Enfold theme.

    I have developed websites using the Sensei LMS plugin for managing courses and lessons. The Sensei LMS plugin offers the ability to choose a learning model suitable for content and style, but these templates are not compatible with Enfold. Now I’m considering using Learndash LMS and wanted to understand with you if it is 100% compatible so that I can take advantage of all the possibilities it offers. Alternatively, can you recommend other LMS tools that are compatible?

    Thank you very much for your help.

    Best regards

    but: what you see on images with no link is not an enfold feature – this is standard behavior of wordpress images and the title tag.
    Now we had to find a way to show the titles on images that are linked to ? what – lightbox or always – even if they link to other targets?

    #1427757

    Hi,

    Thank you for the update.

    It might be an issue with the Enfold Performance > File Compression settings. We disabled the compression settings temporarily. Let us know if the issue persists.

    Best regards,
    Ismael

    Faatje79
    Participant

    I bought the enfold theme a week ago. And I still have problems with this to this day. Initially, when I create a grid on my page and update it, everything is gone. Also the content. Tried again yesterday and again after an update my page was completely destroyed. Who can help me with this?

    #1427755

    Hi,

    Thank you for the update.

    You don’t need to buy a new license. Just download the latest version of the theme from your Themeforest account, then update the theme manually via FTP as suggested above. Please check the documentation below for more information on how to update the theme manually via FTP.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    #1427740

    In reply to: Portfolio Entries page

    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

    #1427739

    Hey dloverly,
    Thanks for your question, Envato is the parent of themeforest
    Unfortunately a while back Envato (Theme Forest) changed how updates are done so if you are using v5 you will need get the latest version from your Envato account and manually update, then after you update you can create a Envato Token in your Theme Forest account so that future updates can be done easily, but your current version will not work with the Envato Token.
    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

Viewing 30 results - 11,341 through 11,370 (of 244,522 total)