Forum Replies Created

Viewing 30 posts - 14,581 through 14,610 (of 34,631 total)
  • Author
    Posts
  • Hey markwilliams,
    Thank you for your patience, unfortunately, replacing the ALB content is not as easy is replacing “the_content()” or “get_the_content()” try looking in “\enfold\template-builder.php” on line 76 $content = apply_filters( 'avia_builder_precompile', get_the_content() ); I believe you will find the comments there helpful.
    This sounds like it is similar to the issues that Toolset and Advanced Custom Fields have when trying to replace “the_content()”, there were some older filters specific to these two plugins but I believe the theme files were changed since then, and since this is not what you are trying to do it won’t help.
    The best option is to use the elements and their available options instead of trying to rewrite them as the elements are advancing with new options such as with the “CET” and your edits may cause problems for your site in the future.

    Best regards,
    Mike

    in reply to: I have 2 errors that I will like to correct: #1294096

    Hi,
    Thank you for your patience, for the preloader shake I was able to correct it by blocking plugin javascript files in the browser console, so this points to a plugin causing this but I’m unsure which one. Please try disabling all of your plugins and caching and then clear your browser cache. Then enable your plugins one at a time and test your site, clearing your browser cache after each test until you find the one or combination of plugins causing this to identify this cause.
    As for the elements at the bottom of the page, they seem to be stacking correctly for mobile, please see the screenshot in the Private Content area.
    To add a screenshot please try using any image hosting service and pasting the image URL in your post.

    Best regards,
    Mike

    in reply to: Video embeds not working #1294088

    Hi,

    @bloomfashion
    unfortunately your issue is not the same as this user was having, but I see that you have opened your own thread, which is a better place to address your issue, thank you.

    Best regards,
    Mike

    in reply to: Modify "Read More" button in Blog #1293922

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Social Media Icons in Mobile Menu #1293765

    Hey kevinhaag,
    Thank you for your patience please give this script a try, in the functions.php:

    function custom_script() { ?>
        <script>
    (function($){
          var int = '';
          function a() {
              var isMobile	 = $('.av-burger-menu-main').css('display'),
                  htmlString   = $('#header_main .social_bookmarks').find('li a'),
                  mobileMenu   = $('.av-burger-overlay'),
                  socialString = [];
      
                  if(isMobile == 'none') return;
                  if($('.burger-social').length) clearInterval(int);
      
                  htmlString.each(function() {
                      var socialClass	= $(this).parent('li').attr('class'),
                              socialItems = $(this).wrap('<li class="'+ socialClass + ' av-active-burger-items burger-social"></div>').parent().unwrap();
                      socialString.push(socialItems);
                  });
      
                  $(socialString).each(function() {
                      $(this).appendTo('#av-burger-menu-ul');
                  });
          }
      
          $('#header').on('mousedown', '.av-main-nav-wrap', function() {
              int = setInterval(function() {
                  a();
              }, 500);
          });
      
      })(jQuery);
      </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    the css:

    #av-burger-menu-ul li.burger-social {
        float: left;
    }
    #av-burger-menu-ul li.burger-social a {
        padding: 10px !important;
        border-bottom: none !important;
    }
    #av-burger-menu-ul li.social_icon_1 {
     padding-left: 40px
    }

    Best regards,
    Mike

    in reply to: Problem with #id links on other pages on mobile #1293709

    Hey maxgorelkine,
    Thank you for your patience, I do not have an iphone to test with and the only sub-menu items that didn’t work for me were the ones under “Performances du groupe” because they were just #, but I do note that you are getting these errors: OTS parsing error: invalid version tag & Failed to decode downloaded font: [...] /fsd-icons/fsd-icons.woff2
    and your fsd-icons.woff2 is giving a 301 redirect.
    So first I’m not familiar with these errors but most of my research points to this being a bigger issue for ios, which would explain why it’s not causing a fail on Android, second, it is clear that the fsd-icons is a custom font, but only .woff is available and not .woff2
    So first I recommend ensuring that you really wanted to link to .woff2 and it is available via on your server, if .woff2 is an error is your font-face css correct to .woff.
    If .woff2 is correct ensure that is was uploaded correctly as binary and not ASCII.
    Otherwise, check that any caching is not breaking the font because it is not available and is a 301 redirect.
    Another option would be to remove the use of this font temporarily to ensure that error is not the cause for the missed IDs on your iphone.
    Another common reason for missed IDs on mobile is because the mobile elements are different than the desktop elements, that is when the desktop elements are hidden on mobile resulting in two of the same IDs in the source code and causing the error, I didn’t find this to be your case, but as I couldn’t recreate your issue perhaps I didn’t click on the correct menu item to cause the error? Please tell us a couple of menu items specifically that cause this issue for you and if this dual element IDs could be the problem.

    Best regards,
    Mike

    in reply to: Accessibility Issue for Menu with Sub-items of sub-items #1293707

    Hey xfilegirl,
    Thank you for your patience, can you link to the thread you found about the edit you tried, I didn’t find it and would like to try it. It sounds like the issue you are having is only with the third child-level menu correct?

    Best regards,
    Mike

    in reply to: Modify "Read More" button in Blog #1293703

    Hey macjeffff,
    Thank you for your patience, please try this css and try to adjust the first font size to suit.

    /* change read more button */
    a.more-link:before{
      content: "See More" !important; 
      font-size: 16px !important; 
    }
    
    a.more-link {
      font-size: 0 !important; 
    }

    After applying the css, please clear your browser cache and check.
    If this doesn’t help please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

    in reply to: "Skip to content" button in #1293631

    Hi,
    Thank you for the feedback, I thought the intention was to have the “Skip to Content” within the <body> tag, where before it was outside, aka before the <body> tag, so I used insertBefore(‘#wrap_all’); to get it above <wrap_all> and under <body> aka within the <body>
    I tried to append to the <body> but that doesn’t work because the “Skip to Content” needs to be it’s own <div>
    So when I check now it seems to me that it is now working as intended.
    skip-nav_above_wrap-all_within_body.jpg

    Best regards,
    Mike

    in reply to: Disaster of My Own Doing #1293629

    Hi,

    @jodyrussell
    , glad to hear that you are getting this sorted out, but when you say that you are getting PHP memory issues I hope that doesn’t mean that you are rebuilding the site with v3.8? I don’t see where you say that you are using v4.8.1, and if you are I would not expect that you would have memory issues, but I don’t use “import buddy” or “backup buddy” so I would not know what errors might come from them, I only used the real “Duplicator“, not the new fake one 🙂

    Best regards,
    Mike

    in reply to: Disaster of My Own Doing #1293521

    Hi,
    Thank you @Guenni007, the Wayback machine is a good idea so send the chocolate to Bonn/Germany ;)

    Best regards,
    Mike

    in reply to: "Skip to content" button in #1293517

    Hey lle-it,
    Thank you for your patience, please give this a try instead of the other script and continue to use your current css:

    function screen_reader(){
        ?>
        <script>
    (function($){
    	$(document).ready(function() {
      if ($("body").hasClass("home") == true) {
      $('<div id="skipnav"><p class="skipnav"><a href="#main_content">Skip to Content (Press Enter)</a></p></div>').insertBefore('#wrap_all');
      } else {
      	$('<div id="skipnav"><p class="skipnav"><a href="#main">Skip to Content (Press Enter)</a></p></div>').insertBefore('#wrap_all');
      }
        });
    })(jQuery);
    </script>
        <?php
        }
    add_action('wp_footer', 'screen_reader');

    Best regards,
    Mike

    in reply to: Disaster of My Own Doing #1293506

    Hey jodyrussell,
    Thank you for your patience and the catchy title, I see that you are using Enfold v3.8 with WordPress v5.1.8
    I’m pretty sure Enfold v3.8 was using PHP v5.x which most webhosts won’t allow anymore so your probably on PHP v7.x now?
    I would try downgrading WordPress to at least v4.x but I’m not sure how low you can go and still work with your PHP version, you may try alternating downgrading WP & PHP to get as low as to can go and at a point I believe that you will find your site will work again enough that you can login to the backend and perhaps clone it to a localhost and try rebuilding it.
    But looking at your homepage, which seems to be the only page that works, it seems basic and seems that it would be easier to recreate from scratch, I personally would create a new install on a localhost of the latest versions of WordPress & Enfold and copy (scrape) the text and images from the frontend, or just make a completely new site. Sorry, this is probably not very helpful, but WordPress changed so much at version 5 that salvaging Enfold v3.8 may not be worth your time?

    Best regards,
    Mike

    Hi,
    Thanks for the FTP access but I’m having trouble with the connection as it keeps dropping. Please try uploading your updated theme to a directory named enfold-new and once it is fully uploaded, rename your current enfold directory to enfold-old and then rename enfold-new to enfold and check your site.
    If you run into any issues simply reverse the renaming. If you don’t feel comfortable doing this and you have a cPanel file manager within your webhosting account you could post a login for us to use below, but it doesn’t seem that your FTP access is stable enough for me to use from my location.

    Best regards,
    Mike

    in reply to: API Key not working for theme update #1293061

    Hi,
    Thank you for the theme zip file, I have uploaded for you and edited your child theme stylesheet as I said above.
    Please check your site, I didn’t find any errors. Via FTP you will note that your old theme version is in the directory “enfold-old” if you are happy with the update then you can delete this directory via FTP, do not delete it from within the WordPress theme panel.

    Best regards,
    Mike

    in reply to: Social icons in mobile menu #1292763

    Hey Harold,
    Thank you for your patience and the link to your site, but I don’t see that you have any social icons activated on the desktop version header, the script above grabs these social icons and places them in the mobile menu. So please try enabling them and trying again.

    Best regards,
    Mike

    in reply to: different content for pc and mobile #1292761

    Hey denis-lvov,
    In general each Advanced Layout Builder element has the option for the element to show at different screen sizes
    2021-04-06_064511.jpg
    you can use these options to choose when your content shows.
    If you are having trouble understanding this then please create a test page and include an admin login for us and describe what and when you want something to show and we can help.

    Best regards,
    Mike

    in reply to: Video Banner and Video Elements playing simultaneously #1292752

    Hey Kraig,
    Thank you for your patience, as I understand your issue I don’t believe there is a way to disable the layerslider when the video element is playing. I would recommend disabling the loop at the end of your first round of layerslider slides so it doesn’t come back around to the auto playing video again.
    But on the other hand, since the layerslider video is playing without sound, I don’t believe that your users even know it is playing behind the video element?

    Best regards,
    Mike

    in reply to: Forms not functioning well on homepage #1292746

    Hi,
    Sorry I am unable to recreate a form submit redirect on my localhost, try looking at your WordPress > Settings > Reading > Your homepage displays and compare with your Enfold Theme Options > Theme Options > Frontpage Settings, perhaps these two options are working against each other, also check if you have a Custom Error 404 Page or Maintenance Mode set in the theme options, or if you ever have, if you used to have one of these setting you will need to un-select the option before disabling it and then save your theme options.

    Best regards,
    Mike

    Hi,
    Thank you for the feedback, I have reset my localhost install of v4.8.1 and enabled with no demos and have the base Enfold logo:
    logo.png
    which is located at \wp-content\themes\enfold\images\layout\
    this is hardcoded on line 132 in \wp-content\themes\enfold\includes\helper-main-menu.php
    But whenever a new logo is uploaded this base logo is replaced, I have tested this.
    I believe I have seen the old “K” logo you are referring to but I believe that is from a much older version, I don’t see it in the current version. Even so, it to would be replaced with a new logo upload.

    Best regards,
    Mike

    in reply to: Avia Layout Builder disappearing #1292730

    Hi,
    Very good then, we will go ahead and close this thread then, but if you do have the issue again and are able to recreate it in a way that we can investigate it we will be happy to assist. At that time please create a new thread, thank you.

    Best regards,
    Mike

    in reply to: vikbooking #1292727

    Hi,
    Glad to hear that you have sorted this out, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: License problem #1292500

    Hey Ciprian,
    If you have lost your login info to your Theme Forest account you will need to ask them to recover. Envato, aka Theme Forest is the exclusive licensor of Enfold, due to this contract we can not license nor do we have access to licensing info. Typically similar situations to this arise when a developer purchases a license and creates a website product for a customer, and somehow doesn’t supply this license login to the customer, thus the customer is never given access to the licensed files. Envato doesn’t recognize the license code number without the login and password to the Envato account in order to download the licensed files or to update the theme. Typically years go by before the developer’s customer realizes that this has happened and the developer has stopped responding to the customer. Typically the developer only purchased one license but built many sites and can not update them all because they only have one license. Because of this Envato changed their API to a Token that can only be accessed via the account’s login and password.

    So now for the good news, in any situation where the user doesn’t have access to the old account, it is cheaper and easier for them to simply purchase a new Enfold theme with a new email and create a new login and account. The greatest benefit to this is the option to extend the support to 12 months for a very small price:
    2021-04-01_074238.jpg
    for you see the yearly cost of access to this support form is nearly the same as the cost of the theme:
    2021-04-01_074446.jpg
    which I assume you have not updated since you are contacting us though email.
    So it will save you time and money to just purchase a new license.

    Best regards,
    Mike

    Hi,
    Thank you for the login, I followed the steps in the sticky thread on the /la-era-mesozoica/periodo-triasico/ page and the page was corrected on save. Please review.
    The solution is to make an edit or change to the page so there is something for WordPress to update and save, if the change or edit is too small this may not work, so the change I made was to replace the very first text element that had the shortcode [av_breadcrumbs] with a code block element with the same shortcode, and when I saved the page was corrected. Please try this with your other pages. As a side note I recommend using the code block element instead of the text block element anytime you are only going to add a shortcode, as this is the correct element.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: vikbooking #1292451

    Hi,
    Thank you but unfortunately getting this plugin to work with Enfold is beyond the intended scope of our support, I would recommend seeking the help of a freelance developer to create a custom solution for you.

    Best regards,
    Mike

    in reply to: Footer typography #1292378

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Update from 4.7.6.4 doesn't work #1292377

    Hi,
    Thank you for your patience and thanks for the login, I note that you have this error in the theme panel update:

    Errors occurred checking on 2021/04/01 16:04:
    Paket-URL herunterladen: Fehlercode 404 von Envato erhalten: Not Found:
    - description: The purchase you have requested is not downloadable at this time.:
    - Möglicher Grund: Dein Download-Limit ist eventuell überschritten - versuche es bitter später wieder.
    Download Package URL: A problem occurred accessing your download link. Unable to perform update.
    Following Envato package errors occurred:
    Enfold - Anfrage für Download-URL fehlgeschlagen.

    So first I would point out that Envato has an “update” limit so the first step is to not check for any more updates for 48 hrs, if you have other websites or other Envato products please do not check them either as Envato limits your account cumulatively.
    I also note that you are using Thrive Architect which doesn’t play nice with Enfold, I’m not saying it is a cause or that there is anything wrong, but I would recommend disabling it the next time you do check for a update, I would also disable Smash Balloon & YellowPencil.
    Now if you just want to update right away and move on I recommend updating via ftp, The easiest and safest way to do this is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.
    If you don’t feel comfortable doing this, please include FTP access in the Private Content area and a DropBox link to the newest theme files from your Theme Forest account and I will do this for you.

    Best regards,
    Mike

    in reply to: Avia Layout Builder disappearing #1292375

    Hi,
    Thank you for your patience, I did not use the login provided because it sounded like a one-time issue with an isolated account that it sounded like you didn’t want to mess with too much, if I’m reading your reply correctly. I have not seen any other issues like this recently, but I do recall one admin login a few years back on a site that was using a user profile security plugin that was only on one admin login and not on the support admin login for us to check with or on the other admin login the developer was using, so after a few days of testing the developer decided to give the client a new admin login and the issue never re-occurred.
    I don’t think it was ever pinned on the plugin or the theme as it was really strange, I don’t know if this helps, but I was reminded of this.

    Best regards,
    Mike

    Hey Jose,
    Thank you for your patience, please see this sticky thread about this issue and let us know if it helps.
    I was not able to check your site as I believe it is blocking my IP, if this is true I posted my IP below for you to white list if the sticky thread doesn’t help.

    Best regards,
    Mike

Viewing 30 posts - 14,581 through 14,610 (of 34,631 total)