Viewing 30 results - 1,831 through 1,860 (of 243,840 total)
  • Author
    Search Results
  • #1484899

    Hey syberknight-tb,
    Unfortunately, we don’t have an element that will achieve this for you in the theme, while there are many plugins that may work for you, when I check some of them they don’t quite match, but if you spend more time testing each one you may find one.
    I was able to create something that may work for you using javascript and HTML in a shortcode, on mobile it shows 1 1/2 team member cards with prev & next arrows and loop when you click to the end:
    Screen Shot 2025 05 31 at 9.41.31 AM
    on tablet it shows 2 1/2 cards:
    Screen Shot 2025 05 31 at 9.43.47 AM
    and on desktop it shows 3 1/2 cards:
    Screen Shot 2025 05 31 at 9.45.40 AM
    As is it holds 8 cards, you can add more or have less, you will need to edit the HTML to add your images and text, hopefully you will be able to do this:
    Screen Shot 2025 05 31 at 9.50.45 AM
    Try adding 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:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the code below and save.

    function team_carousel_shortcode() {
        ob_start(); ?>
        
        <div class="carousel-container">
            <button id="prevBtn">←</button>
            <div class="carousel">
                <div class="carousel-track">
                    <!-- START: Team Members -->
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 1"><p>Member 1<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 2"><p>Member 2<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 3"><p>Member 3<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 4"><p>Member 4<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 5"><p>Member 5<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 6"><p>Member 6<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 7"><p>Member 7<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 8"><p>Member 8<br>A short bio for the team member</p></div>
            <!-- END: Team Members -->
                </div>
            </div>
            <button id="nextBtn">→</button>
        </div>
    
        <style>
        .carousel-container {
            position: relative;
            width: 80%;
            overflow: visible;
            margin: auto;
        }
    
        .carousel {
            overflow: hidden;
            width: 100%;
        }
    
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
    
        .card {
            box-sizing: border-box;
            padding: 10px;
            background: #e8e8e8;
            margin: 5px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
    
        @media only screen and (max-width: 767px) { 
            .card { flex: 0 0 62%; }
        }
    
        @media only screen and (min-width: 768px) and (max-width: 1800px) { 
            .card { flex: 0 0 38%; }
        }
    
        @media only screen and (min-width: 1801px) { 
            .card { flex: 0 0 28%; }
        }
    
        .card p {
            color: #000;
         }
    	.card img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 100%;
        }
    
        #nextBtn, #prevBtn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #000;
            border: 2px solid #000;
            padding: 10px;
            cursor: pointer;
            z-index: 10;
        }
    
        #prevBtn { left: -50px; }
        #nextBtn { right: -50px; }
        </style>
    
        <script>
        document.addEventListener('DOMContentLoaded', function () {
            const track = document.querySelector('.carousel-track');
            const cards = document.querySelectorAll('.card');
            const prevBtn = document.getElementById('prevBtn');
            const nextBtn = document.getElementById('nextBtn');
    
            let currentIndex = 0;
            let cardWidth = cards[0].offsetWidth + 20;
    
            function updateCarousel() {
                const shift = currentIndex * cardWidth;
                track.style.transform = translateX(-${shift}px);
            }
    
            function moveToNext() {
                currentIndex++;
                if (currentIndex >= cards.length) {
                    currentIndex = 0;
                }
                updateCarousel();
            }
    
            function moveToPrev() {
                currentIndex--;
                if (currentIndex < 0) {
                    currentIndex = cards.length - 1;
                }
                updateCarousel();
            }
    
            nextBtn.addEventListener('click', moveToNext);
            prevBtn.addEventListener('click', moveToPrev);
    
            window.addEventListener('resize', () => {
                cardWidth = cards[0].offsetWidth + 20;
                updateCarousel();
            });
        });
        </script>
    
        <?php
        return do_shortcode(ob_get_clean());
    }
    add_shortcode('team_carousel', 'team_carousel_shortcode');

    Then add this shortcode in a code block element on your page: [team_carousel]
    Feel free to adjust the colors in the css in the code.

    Best regards,
    Mike

    #1484898

    Good morning,

    I was reading through the Enfold support tickets and saw that many others have experienced the same issue with images being displayed in larger sizes than those originally uploaded.

    We are not using any image-related plugins because we already upload optimized images.

    You can check, for example, the first image on this page:

    We uploaded it at 141 KB, but Enfold displays it at over 500 KB.

    In addition, developers have worked to optimize the site as much as possible, and despite this, it still exceeds the CPU usage limit. They believe the issue might be due to the Enfold theme being poorly optimized and too heavy. Unfortunately, I use Enfold on four websites. I thought it was an excellent theme, so it’s quite concerning to hear from professionals that it may not be suitable for a more complex website.

    Do you have any idea why there is such excessive CPU usage?

    #1484893
    syberknight-tb
    Participant

    i have 2 columns that contain a persons headshot (using the image block > styled > circle) and their bio (using the text block) underneath. this fits nicely in our page width & wraps well for mobile. but i’ve now been informed that there will be more than 2 people (pic & bio).

    is there a way to use these colums > image > text in some sort of horizontal slider or accordion kind of thing? where 2 columns remain visible but there’d be a hint that a 3rd column (or more) is there for the user to click on for the columns to slide left, now showing the 2nd & 3rd columns (with the 1st column hinted at left like the 3rd column was at right).

    the closest block i’ve found in Enfold is the “Content Slider”, but it’s not obvious enough that there are more columns to explore. the arrows seem small & obscure, and there’s no hint (faded partial view of the 3rd slide) of more content to click the arrows for; and when clicked, it removes the first 2 slides altogether to make room for the 3rd, instead of leaving the 2nd in the 1st position with the 3rd in the 2nd position. does that make sense?

    i suspect this is too detailed of a desire & beyond the bounds of Enfold and the Layerslider it includes. so i thought i’d ask in case anyone knows of any 3rd party plugin that might do this before/while i start exploring.

    #1484888

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

    .fallback-post-type-icon {
    	display: none;
    }

    Best regards,
    Mike

    #1484887

    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

    #1484881

    Hey MarthaMedia,

    Please follow this: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1484880

    Hi,

    Thanks for the update. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1484877

    Hi Ismael,
    it seems the fold-unfold HTML-Quellcode gets crushed, when the Data Access plugin is activated.

    Normally, the div-container with the class “avia_textblock” appears inside the parent container with the classes “av-fold-unfold-container folded”.

    When the Data Acces Plugin is activated, The “avia_textblock” container is written outside the “av-fold-unfold-container” and thus cannot work. I don’t understand how a WP-Plugin can do that? Is it a question of when the css-Data is read by WordPress or Enfold? Or has it to do with javascript or jquery? Also strange: The fold-unfold function works in the backend ie. when switching to edit mode.

    Thanks again for your help
    Ruth

    #1484875

    THANK YOU… I have successfully reinstalled the base theme. The OTHER ISSUE… was not resolved.

    Can you advise? the other question was not resolved with the install.
    AND THIS HAPPENED – Checkout — Inactive Maintenance Mode Page (Change), Inactive Custom 404 Page (Change), Inactive Custom Footer Page (Change), Checkout Page

    on the page it says: This page is selected to be displayed as maintenance mode page but is not active at the moment. (Set in Enfold » Theme Options). (Change) – I AM NOT SURE WHERE I CAN CHANGE THIS.

    CAN YOU TELL ME WHERE THIS IS?

    THANK YOU!!!

    #1484872
    MarthaMedia
    Participant

    Hallo liebes Team,

    wir haben aktuell Enfold Vesion 5.2.1 installiert.

    Leider wird mir im Template unter Updates keine Möglichkeit angezeigt auf die neuste Version zu gelangen.
    Wie und wo kann ich auf die aktuellste Enfold Version updaten?

    Es wird immer nur folgendes angezeigt:
    Theme-Aktualisierungen
    Keine Aktualisierung verfügbar. Du verwendest die letzte Version! (5.2.1)

    #1484871
    MarthaMedia
    Participant

    Hallo liebes Team,

    wir haben aktuell Enfold Vesion 5.2.1 installiert.

    Leider wird mir im Template unter Updates keine Möglichkeit angezeigt auf die neuste Version zu gelangen.
    Wie und wo kann ich auf die aktuellste Enfold Version updaten?

    Es wird immer nur folgendes angezeigt:
    Theme-Aktualisierungen
    Keine Aktualisierung verfügbar. Du verwendest die letzte Version! (5.2.1)

    #1484866

    Hey rixi,

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

    @media only screen and (max-width: 1400px) {
      nav.main_menu {
        display: block !important;
      }
      #avia-menu .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }
    

    Best regards,
    Rikard

    Ventsislav Krastev
    Guest

    Hi,

    Just logging something for your interest ….

    We have a licence for Enfold, but we don’t currently have support cover.

    However, we have discovered an issue that appears in Enfold 7.1.

    Issue description, something went wrong….

    We used the Enfold theme, and the blogs are visualized in a way shown in the following picture:

    https://prnt.sc/rGH8-NGlZ70c

    After we installed the Tutor LMS plugin, it changed the visualization of the blog category pages and now shows them as a listing of courses, the following picture:

    https://prnt.sc/yalpyPB2qeiQ

    Why did it happen this, and what can we do to return to the old visualization blog and work with Tutor LMS?

    Thanks in advance!

    BR VK

    Hello Ismael

    Thank you for the help. It is working but i wonder how i can also disable the top row of icons which seems to be duplicate of icons which are already there.
    Its called:
    Iconfont: Entypo Fontello Enfold (Default)
    and contains like 12-15 icons

    #1484851

    Hello Again,

    I just received an automated message from WordPress providing details regarding a widget error with StrategyDriven.com’s Enfold widgets. The message included error details and is provided in whole within the Private Content associated with this post.

    I really appreciate your continued support. I hope this error information is helpful.

    All the Best,
    Nathan

    #1484850

    Hi Rikard,

    I tried other themes with all plugins disabled to see if the widget areas and widgets were there. They are (widget areas and widgets) but are uneditable as the widget areas/widgets are not supported by the other themes. I also reinstalled Enfold (deleted all files and reinstalled the Enfold theme) and the three WordPress core widget php files. The issue remains after these efforts.

    Again, you are authorized to deactivate plugins and themes to continue troubleshooting. It’s important to resolve this issue and enable administrative access to the widget areas and widgets to deliver on customer ad orders.

    I greatly appreciate your continued support. Let me know if you need anything else from us.

    All the Best,
    Nathan

    #1484843

    Hey ronduring,

    Thank you for the inquiry.

    It’s not possible to override shortcode files directly in the child theme. To do this, you will need to register an additional shortcode path in the child theme and place the shortcode files or folders there. Please check the link below for more info.

    https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    Best regards,
    Ismael

    #1484840
    jaimemerz
    Participant

    I recently installed the Advanced Post Types Order plugin to sort blog posts within a single category, but I’m not seeing these changes reflected on the frontend of my site. I’ve already tried a couple alternative plugins with the same functionality, which makes me think there might be something in Enfold that’s preventing this from working. Do you have any insights that might help resolve this?
    Thank you!

    #1484838
    ronduring
    Participant

    I’m using a custom image for a map marker and I need smaller sizes for the icon that are offered. I was able to to do this with other support articles and edited the google_maps.php in the main theme folder located here:

    /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/google_maps/

    That was successful. I have a child theme, so I wanted to do put this within the child theme, but I can’t get it to work. I took a copy of the full file, edited what I needed and uploaded it to the Enfold child theme in this location:

    /wp-content/themes/enfold-child/config-templatebuilder/avia-shortcodes/google_maps/

    Is this the correct thing to do for this? How do I get it to work in the Enfold Child theme.

    #1484837

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    Hey carlosa98,
    We would not recommend importing a new demo on your site, as it will overwrite your current settings. It is best to create a second test site on your webhost or a localhost install, and then use the Avia Layout Builder Debugger to copy the page code to your live site and delete the elements that you don’t want.
    Note that copying the page this way will not also copy the images, but you can always add your own images later.

    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

    #1484832

    Hey extraeyes,
    The old version 5.6.6 will not automatically update, 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
    For your other issue see this post.

    Best regards,
    Mike

    Hi Rikard,

    Thanks for checking and for the quick feedback.

    I’ll get in touch with my hosting provider (Hostinger) to investigate the 503 server error. In the meantime, I’d be happy to try a manual import of the demo.

    I’m specifically interested in the “Enfold Construction” demo — including homepage, layouts, styling, and sample content to speed up the setup.

    Let me know what files or steps I need to follow for the manual import, and I’ll proceed accordingly.

    Thanks again for your support!

    Best regards,
    Tommaso (tomfon87)

    #1484828

    Topic: Design help

    in forum Enfold
    PhatJ
    Participant

    Hi

    I would like some help achieving a design with Enfold.
    I am trying to create the diagonal split like in the link below

    Keep up the great work

    Thanks in advance

    carlosa98
    Participant

    I’m currently building my website using one of the Enfold demos. I’ve seen a section/element in a different Enfold demo that I’d like to add to one of my existing pages, but I don’t want to import the entire demo and overwrite my current content or settings.

    Is there a recommended way to copy a specific section or element from another demo and add it to my current page? If so, could you provide step-by-step instructions for doing this safely?

    Thank you for your help!

    #1484824
    extraeyes
    Participant

    As suggested, I uploaded the child theme, and I have two issues. UPDATE: AFTER I TYPED BELOW, I NOTICED THIS: No updates are available. You are running the latest version! (5.6.6). I JUST UPLOADED A FRESH CHILD’S THEME.

    AND THIS HAPPENED – Checkout — Inactive Maintenance Mode Page (Change), Inactive Custom 404 Page (Change), Inactive Custom Footer Page (Change), Checkout Page

    on the page it says: This page is selected to be displayed as maintenance mode page but is not active at the moment. (Set in Enfold » Theme Options). (Change) – I AM NOT SURE WHERE I CAN CHANGE THIS.

    thank you!!!

    • This topic was modified 7 months, 2 weeks ago by extraeyes.
    • This topic was modified 7 months, 2 weeks ago by extraeyes.
    #1484823

    Hi Ismael,

    thank you for your help! :) I suspected it had something to do with Ninja after reading this threat: https://kriesi.at/support/topic/theme-editor-option-under-appearance-has-disappeared-in-enfold-4-8-2/. But perhaps there is a completely different reason for this. I provide login data and a screenshot in the private field.

    Kind regards,
    ebenanders

    #1484820
    DianaLoola73
    Participant

    Dear Support Team

    I am having massive problems with the ENFOLD update on the website: secaro.org. I have already tried various things (Envato market…), but unfortunately the update is not possible. I always get the following error message:

    “Downloading the update from https://marketplace-downloads.customer.envatousercontent.com/files/637407377/enfold.zip?response-content-disposition=attachment%3B+filename%3Dthemeforest-pldVubfe-enfold-responsive-multipurpose-theme-wordpress-theme. zip&Expires=1748499630&Signature=Gvg6fab5MDNPonqRbAWeWX04Q0HonuGDE~6JEaeg~7wmf9FKWtI~pZ80-2vVPIeBxr~QAnuBYGcRo4kw5w5f~3dl0kt55lKqAPxj2XuVGAAQXb3WmEbVeo- ZctuCQV6fKOTkKrjkWLKzHYmC5gAGA6biHiHc5ZMW1JkZlgVZeI5tyqHCenHuOSNSglvY3yZRhl5hDl7k-MZBWRSmnj5pQ33~pnF7oVSfj-xqvZ2robrCf6X2mmyCdBkh7iViFVB6iTUFLuu5g0fMAGNNr4l03YkL46TBWvJCiaR0QmVEagGxgpEjwcdx4vW- VxTJ4NI8KxQN56puuWisNJO0niKFImwldJBBCdvLZM6nLG9zm2gtCcCuBTV6xCXlIxvzal2I3OZNsSe5FFUNg89ZFPXw1E~bvod1GbqrqnZJMFHOPX409RNOwUULAGo0VDYVS77EUN35bXqFYNQXV6xWDqjR8N1KqaAK- 1Ufg6~goECycbOXfo1zIypMEBMomqMw4TGv06xRYZHIBy~1sFkAATCfAmbXaG1mk1M7foTE96ZBJlKNhUO5qwtDJmw91mXM0q7X0Yba2IdLQkFl~FtunkCi- DFxUEOzNn5IqfV4ACAySNJtGZODZAjx1qivIRlFaiKsizhoUMWRlfZjmU1xya35X4o32Lgi517G0GFmld~XpxLE_&Key-Pair-Id=APKAJRP2AVKNFZOM4BLQ …
    Unpacking the updated version …

    An error occurred while updating Enfold: The file could not be copied. enfold/lang/nn_NO.mo”

    What can I do?
    Best regards Diana

    #1484816

    Hey Shari,

    Thank you for the inquiry.

    The arrows are there but they are barely visible because the background is transparent due to this css code.

    #top .avia-slideshow-arrows.avia-slideshow-controls a {
        background: #fff0 !important;
    }

    You can either remove the modification or add this code in the Enfold > General Styling > Quick CSS field.

    #top .avia-slideshow-arrows.avia-slideshow-controls a {
        background: #a6a6a6 !important;
    }

    Best regards,
    Ismael

Viewing 30 results - 1,831 through 1,860 (of 243,840 total)