Forum Replies Created

Viewing 30 posts - 61 through 90 (of 34,588 total)
  • Author
    Posts
  • in reply to: duplicate id-attributes in the mobile menu #1486078

    Hi,
    Thank you for sharing your solution, but when I test our demo there are no IDs added to the mobile menu items, unless you mean a menu link with an ID to an anchor on the page. I tested in WAVE and found no errors for IDs.
    If you mean the link IDs to anchors on the page, note that the mobile menu is not created until the menu is clicked, nonetheless since most people use the same link IDs on their page for mobile and desktop, this would break their links.
    Since I can not reproduce your issue and this is beyond what we can do here, you are welcome to open a Github Feature Request to place a request and follow it as the Dev Team reviews it.

    Best regards,
    Mike

    Hey Diana,
    Thanks for the login, I added this code to your theme functions.php file:

    function change_aria_hidden_for_scroll_top_link_when_it_shows() { ?>
      <script>
    window.addEventListener('scroll', function() {
      const scrollTopLink = document.getElementById('scroll-top-link');
    
      if (!scrollTopLink) return;
    
      const style = window.getComputedStyle(scrollTopLink);
      const rect = scrollTopLink.getBoundingClientRect();
      const inViewport = rect.width > 0 && rect.height > 0;
    
      const ariaValue = (style.display !== 'none' && style.visibility !== 'hidden' && inViewport) ? 'false' : 'true';
    
      scrollTopLink.setAttribute('aria-hidden', ariaValue);
    
      const childSVGs = scrollTopLink.querySelectorAll('svg');
      childSVGs.forEach(svg => {
        svg.setAttribute('aria-hidden', ariaValue);
      });
    });
      </script>
      <?php
    }
    add_action( 'wp_footer', 'change_aria_hidden_for_scroll_top_link_when_it_shows', 99 );

    It changes the aria-hidden for the scroll-top-link and the SVG icon when it shows, from false to true.
    I tested in the browser DOM and it works. Unfortunately we don’t have access to the AXE tool as it looks like a paid tool, but I did check in WAVE. Unfortunately, while in the live browser the code works, the WAVE tool doesn’t update the DOM so it doesn’t look like it is working, perhaps this is a limitation of the free version, I don’t know.
    I tried to add this to your snippet Header Footer Code Manager plugin but it didn’t work there, the plugin seems limited, if you find this workshop for you and 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, after you remove it from the theme functions.php file so it will not be lost when you update.

    PS for testing this is the snippet with console log comments that I tested with that will show that the aria-hidden changes while the page is scrolled:

    function change_aria_hidden_for_scroll_top_link_when_it_shows_log() { ?>
      <script>
    window.addEventListener('scroll', function() {
      const scrollTopLink = document.getElementById('scroll-top-link');
    
      if (!scrollTopLink) {
        console.log('Element #scroll-top-link not found.');
        return;
      }
    
      const style = window.getComputedStyle(scrollTopLink);
      const rect = scrollTopLink.getBoundingClientRect();
      const inViewport = rect.width > 0 && rect.height > 0;
    
      console.log('Scroll event triggered.');
      console.log('Display:', style.display);
      console.log('Visibility:', style.visibility);
      console.log('BoundingClientRect:', rect);
      console.log('In viewport:', inViewport);
    
      const ariaValue = (style.display !== 'none' && style.visibility !== 'hidden' && inViewport) ? 'false' : 'true';
    
      console.log(#scroll-top-link is ${ariaValue === 'false' ? 'visible' : 'hidden'}. Setting aria-hidden to ${ariaValue}.);
    
      // Set on the main link
      scrollTopLink.setAttribute('aria-hidden', ariaValue);
    
      // Set on any child SVGs
      const childSVGs = scrollTopLink.querySelectorAll('svg');
      childSVGs.forEach(svg => {
        svg.setAttribute('aria-hidden', ariaValue);
        console.log('Updated child SVG aria-hidden to', ariaValue);
      });
    });
    
      </script>
      <?php
    }
    add_action( 'wp_footer', 'change_aria_hidden_for_scroll_top_link_when_it_shows_log', 99 );

    don’t use both snippets at the same time, this is just for proof of work.

    Best regards,
    Mike

    in reply to: Theme update #1486074

    Hey maxb130,
    It looks like your site is using an old theme v5.6.6 and your updates are disabled.
    I was not able to login, but it looks like you are using JetPack and your images a hosted on WP though JetPack with caching.
    I don’t know what your site should look like, but I assume that you are missing background images for each section, these are added via css.
    First I recommend disabling the JetPack plugin and disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and disable any server caching. If JetPack was also using a CDN it may take up to 24 hours for it to clear.
    Since your site is using an old theme v5.6.6 and your updates are disabled, I don’t think this is an update issue, but a plugin/caching issue, hopefully these steps will help.
    Another option may be to use your webhost backup to roll back to when your site was working correctly, and then disable JetPack and see if the issue is solved.
    The theme is now at v7.1.1

    Best regards,
    Mike

    in reply to: where do i find downloads #1486073

    Hi,
    Above you write the error is “An error occurred while updating Enfold: Could not move the old version to the upgrade-temp-backup directory.” this might be related to folder permissions, try to fix the issue by creating the /wp-content/upgrade-temp-backup folder manually, then set the permission to 775.
    If I’m looking at the correct site your Envato Market plugin doesn’t have a token:
    Screen Shot 2025 06 28 at 6.37.46 AM
    Note that the Envato Market plugin doesn’t use the same permissions as the theme, so please read carefully when creating a token:
    Screen Shot 2025 06 28 at 6.42.33 AM

    Best regards,
    Mike

    in reply to: Where is contact from drag and drop in the theme #1486072

    Hi,
    please include an admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: Padding between a code block and text block #1486071

    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: Color hover effect content element #1486070

    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: Add author info to all entries (blog) #1486059

    Hi,
    Try this thread.

    Best regards,
    Mike

    in reply to: Where is contact from drag and drop in the theme #1486058

    Hey rajprajapati,
    It is under “Content Elements”
    Screen Shot 2025 06 27 at 5.35.34 PM

    Best regards,
    Mike

    in reply to: I need to modifie my footer in Enfold #1486057

    Hey Dave,
    To remove the link in the footer, add this: [nolink] see our documentation here.
    You have spaces in your code, I don’t see a link to terms of service on your site.

    Best regards,
    Mike

    in reply to: Cannot gain access #1486056

    Hey Max Buettner,
    Unfortunately, your support expired on 2024-03-28
    You don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.
    We can not issue licenses or purchase codes due to our contract with Envato (Theme Forest), only they can.

    Best regards,
    Mike

    in reply to: Blog post grid overlay not showing on mobile #1486055

    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: Google reCAPTCHA alternatives in Enfold #1486054

    Hey Michael,
    If you would like to request this feature the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.

    Best regards,
    Mike

    in reply to: Problem with the menu on one page #1486052

    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

    Hey minhndq,
    Duplicate thread for https://kriesi.at/support/topic/flatpickr-date-picker-year-dropdown-not-displaying-in-fluent-forms/#post-1485947
    We will close this one.

    Best regards,
    Mike

    in reply to: Color hover effect content element #1486034

    Hi,
    Try this instead:

    .page-id-23244 #nieuws .flex_column:hover {
    	background-color: red;
    }

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

    Best regards,
    Mike

    in reply to: Change Posts Titles from h3 to h2 in Grid View #1485981

    Hey faroestudio,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function change_posts_titles_from_h3_to_h2_in_grid_view() { ?>
      <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('.slide-entry-wrap h3.slide-entry-title.entry-title ', '<h2></h2>');
      });
    }(jQuery));
    </script>
      <?php
    }
    add_action( 'wp_footer', 'change_posts_titles_from_h3_to_h2_in_grid_view', 99 );

    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: Accessibility Issue with Search Icon #1485980

    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

    in reply to: overlay for easy slider? #1485912

    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: Transfer from supplier #1485911

    Hey Katie,
    The child theme should work, please note that we recommend that you make s full backup of your site via your webhost including your database, and not a plug just in case.
    Typically the only issues with a childtheme is having custom php files in the childtheme, such as header.php or footer.php, or any elements .php, you should remove these
    before the update.

    Best regards,
    Mike

    in reply to: Change color of sorting option on portfolio grid #1485861

    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

    Hey Gianluca,
    I checked on my Android device and the load more works for me. I don’t have a iPhone, but I checked in Safari on a Mac in Responsive Design Mode to emulate a iPhone and it also works there.
    Perhaps you can post the device you are using and we can try to reproduce it.

    Best regards,
    Mike

    in reply to: Gallery resposive column #1485777

    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: Padding between a code block and text block #1485773

    Hi,
    The ID “#after_section_1” is now missing, perhaps you updated the page? So I added the ID “#add_50_px_pading” to the element:
    Screen Shot 2025 06 22 at 7.43.40 AM
    and this css:

    .page-id-4128 #add_50_px_pading  {
             padding-top: 50px;
    }

    Now it is working, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Entry title h3 in a portfolio #1485772

    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

    in reply to: Change Gallery grid in Mobile #1485760

    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

    in reply to: Blog Element Excerpt Read More Text Duplication … #1485759

    Hey ajaxkls,
    Could you add a admin login so we can examine, your snippet above is not in a “code” clip so we can’t examine it fully and our test site doesn’t have the same categories so it is hard to reproduce.

    Best regards,
    Mike

    Hey bemodesign,
    We don’t have a thread for hiring freelancers, but you could start a thread “looking to hire” and add your requirements and contact info.
    The Mods may “mark it as read” so it is off our list in the backend, but I don’t think any Mods would close it.

    Best regards,
    Mike

    in reply to: Padding between a code block and text block #1485753

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

    .page-id-4128 #after_section_1 {
    	 padding-top: 50px;
    }

    adjust to suit.

    Best regards,
    Mike

    in reply to: Update Enfold Version 4.1.2 auf die aktuelle Version #1485751

    Hey Ernst Grubbauer,
    Thank you for the login, please note that your version 4.1.2 is not compatible with PHP 8+, and it can not be updated in the theme, due to how Envato (Theme Forest) changed from a API key to a Token. Unfortunately this occurs when a old “developer” buys the theme in their Envato account and doesn’t create an account for the customer. Envato will not transfer the license nor issue a new license.
    Due to our exclusive contract with Envato we can not issue licenses.
    Your customer should create an account with Envato and purchase a new license The upside to this is that by purchasing a new license you will also get 6 months of support on our forum to help with any issues. I recommend upgrading to a full year of support for just a little more, as the cost of the theme and a full year of support costs the same as a single hour of support from many developers. 2022-12-04_001.jpeg.
    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
    Please note that using the contact form is not appropriate for support questions, please log in to the support forum and open a new thread if you need further assistance.
    After you purchase a new license you can register for the support forum and post your questions.

    Best regards,
    Mike

Viewing 30 posts - 61 through 90 (of 34,588 total)