Forum Replies Created

Viewing 30 posts - 121 through 150 (of 34,546 total)
  • Author
    Posts
  • in reply to: The theme is not updating?!? #1484902

    Hey Ventsislav Krastev,
    Envato has a limit of the number of update checks in a 24 hour period, so if you click the update button too many times, you may need to wait 24 hours before checking again. That is assuming that your Token was created with the correct permissions
    token permissions
    The https://envato.com/market-plugin/ requires a lower set of permissions and sometimes is easier to use. Alternatively, you can 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
    If you have further issues please register to our support forum here with your Purchase Code and create a new thread and include a admin login for us to review your site.
    Please note that we don’t have access to your Token in Envato, so if there is an error with your Token creation you will need to carefully review our documentation on generating a Envato Personal Token and try again.

    Best regards,
    Mike

    in reply to: Wie kann ich das Template Enfold updaten? #1484901

    Hi,
    The old version 5.2.1 will not update automatically in the theme update due to changes that Envato made during the change from the API key to the 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
    Once you update to the latest version you will have no problems updating in the future.

    Best regards,
    Mike

    in reply to: Column Accordion/Slider-like ability? #1484900

    Hi,
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Column Accordion/Slider-like ability? #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

    in reply to: Fold/Unfold doesn’t work in child theme #1484889

    Hi,
    Glad that you have found the source of the issue, unfortunately we are limited for support on third party plugins and can not investigate further.
    You can reach out to the plugin author for advice, or disable the plugin.

    Best regards,
    Mike

    in reply to: Advanced Builder Gray Screen #1484888

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

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

    Best regards,
    Mike

    in reply to: Google Map Marker SIze Customization #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

    in reply to: Uploaded childs theme – problemS #1484884

    Hi,
    Go to each setting then enable it and choose “select page” so none will be selected. See this post.

    Best regards,
    Mike

    in reply to: ENFOLD Update is not possible #1484836

    Hey Diana,
    Your site has this error: Updates: enabled – token has changed and not verified
    When I verify your Token I get this error:
    username Error code 403 received from Envato: Forbidden: – code: not_authenticated email Error code 403 received from Envato: Forbidden: – code: not_authenticated
    This looks like Envato is not recognizing your Token, this could be if you have used the same Token on more than one site.
    You can try to create a new token for this license, but note that Envato has a limit on the number of checks in a 24hr period. So you may need to wait 24hrs.
    Envato is the licensor and we can not issue licenses, if you have further issues please contact Envato.
    A quick way to update is 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

    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

    in reply to: Uploaded childs theme – problemS #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

    in reply to: before and after images #1484801

    Hey AlpineWeb,
    It is showing on my install:
    Screen Shot 2025 05 28 at 5.07.55 PM
    Try disabling all of your plugins and then reload the page. If that doesn’t help, include a admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: Fixed Header /// mobile #1484800

    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

    in reply to: Make Portfolio Entry pages thinner #1484797

    Hi,
    Assuming that all portfolio pages have the same structure, try this css in your Quick CSS:

    .single-portfolio #after_section_1 {
        max-width: 1440px;
        margin: auto;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Burger menu #1484796

    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

    in reply to: Scroll to Top Button /// mobile #1484795

    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

    in reply to: Photo on single author page? #1484794

    Hey amyncuih,
    Typically you would change your Users ▸ Profile ▸ Profile Picture but this is linked to your profile picture on Gravatar and your email address.
    To use a site specific profile image, use a plugin like User Profile Picture then upload your image in the profile:
    Screen Shot 2025 05 28 at 4.14.16 PM
    and it will then show:
    Screen Shot 2025 05 28 at 4.16.30 PM

    Best regards,
    Mike

    in reply to: Display of Header Social Icons #1484792

    Hi,
    Your icon issue seems solved now, shall we close this thread?

    Best regards,
    Mike

    in reply to: Double h1 on category pages #1484788

    Hi,
    When I check your page source code there is only one H1, the one that you manually added further down on the page. Your screaming frog plugin may be checking the page before the javascript runs, the “woocommerce-products-header__title” is a H2, Google Bot will not see two H1’s

    Best regards,
    Mike

    in reply to: CHANGE WOO COMMERCE TYPE SIZE #1484787

    Hi,
    With the child theme you don’t need the WP Code plugin as you could just add the code snippets into your chid theme functions.php file. But it doesn’t cause any issues to use the plugin. So you can use both.
    the plugins:
    Disable XML-RPC
    BETTER SEARCH AND REPLACE
    REGENERATE THUMBNAILS
    you probably don’t need now, since you don’t remember why you installed them.
    When I check your page: https://www.survivalfoodngear.com/long-term-food/
    the titles are using “p” not any “H” heading, so it seems to be working as you wish.
    Shall we close this thread now?

    Best regards,
    Mike

    in reply to: Backup and Update – thank you #1484786

    Hi,
    Glad that Rikard could help you sort this out, shall we close this thread now? If you have any further questions you can always create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Just one color on blog post on mobile #1484708

    Hi,
    Try this instead:

    @media only screen and (max-width: 767px) {
        .responsive #top.page-id-254 #wrap_all .slide-entry {
            width: 100%;
            margin-left: 0%;
            padding-bottom: 20px;
        }
    }

    Best regards,
    Mike

    in reply to: CHANGE WOO COMMERCE TYPE SIZE #1484707

    Hi,
    It’s not showing as closed: https://wordpress.org/plugins/insert-headers-and-footers/
    Screen Shot 2025 05 26 at 1.50.12 PM

    Best regards,
    Mike

    in reply to: Double h1 on category pages #1484706

    Hi,
    The snippets above are for the theme category pages, not woocommerce product category pages, the H1 title on your page is from woocommerce.
    In this case use this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    (function($) {
      $(function() {
        function replaceElementTag(targetSelector, newTagString) {
          $(targetSelector).each(function(){
            var newElem = $(newTagString, {html: $(this).html()});
            $.each(this.attributes, function() {
              newElem.attr(this.name, this.value);
            });
            $(this).replaceWith(newElem);
          });
        }
        replaceElementTag('.archive.woocommerce h1.woocommerce-products-header__title', '<h2></h2>');
      });
    }(jQuery)); 
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Best regards,
    Mike

    in reply to: Magazine type size is way too big. #1484703

    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

    in reply to: CHANGE WOO COMMERCE TYPE SIZE #1484702

    Hi,
    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 above code and save.

    Best regards,
    Mike

    in reply to: Just one color on blog post on mobile #1484695

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

    @media only screen and (max-width: 767px) {
        .responsive #top.page-id-254 #wrap_all .slide-entry {
            width: 100%;
            margin-left: 0%;
        }
    }

    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

    in reply to: CHANGE WOO COMMERCE TYPE SIZE #1484693

    Hey extraeyes,
    To make this font-size 20px
    Screen Shot 2025 05 26 at 9.30.42 AM
    this css works:

    #top #wrap_all .all_colors h2.woocommerce-loop-product__title {
    	font-size: 20px;
    }

    but it will not remove the H2, which it sounds like this is what you want to do.
    If you want this H2 to be a “p” instead, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function change_woocommerce_product_title_tag_in_product_slider() { ?>
      <script>
    (function($) {
      $(function() {
        function replaceElementTag(targetSelector, newTagString) {
          $(targetSelector).each(function(){
            var newElem = $(newTagString, {html: $(this).html()});
            $.each(this.attributes, function() {
              newElem.attr(this.name, this.value);
            });
            $(this).replaceWith(newElem);
          });
        }
        replaceElementTag('h2.woocommerce-loop-product__title', '<p></p>');
      });
    }(jQuery)); 
    </script>
      <?php
    }
    add_action( 'wp_footer','change_woocommerce_product_title_tag_in_product_slider', 99 );

    Best regards,
    Mike

    in reply to: Magazine type size is way too big. #1484690

    Hi,
    I did not find the css in your Quick CSS, so I added it for you:
    Screen Shot 2025 05 26 at 9.21.29 AM
    and it is working now:
    Screen Shot 2025 05 26 at 9.23.13 AM
    I don’t know what you want to do with the date, I don’t see this in your previous request. Hide it?

    Best regards,
    Mike

Viewing 30 posts - 121 through 150 (of 34,546 total)