Viewing 25 posts - 1 through 25 (of 25 total)
  • Author
    Posts
  • #1462421
    #1462432

    Hey imagestudios,

    Could you try updating the theme to the latest version (6.0.2) to see if that helps please? https://kriesi.at/documentation/enfold/theme-update/.

    Best regards,
    Rikard

    #1462779

    Thanks. It shows it’s updated, but apparently it isn’t. I hadn’t installed the API code from my purchase until last week, so I’m guessing that info is a bit delayed. Is there a way to update otherwise or refresh the API connection?

    #1462793

    Hi,

    Thanks for the update. You could try using this plugin instead: https://envato.com/market-plugin/

    Best regards,
    Rikard

    #1462796

    Just installed the plugin and it worked to update Enfold. Thank you for that suggestion!
    The logo issue is still there, but at least we can rule out the theme version.

    #1462815

    Hi,

    Thank you for the update.

    The logo seems to be displaying correctly when we checked it on a mobile emulation. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur, or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    #1476369

    Sorry to just now be getting back to this, but it is still an issue. Here is a screenshot: https://img.savvyify.com/image/IMG-5163.9pQ4n

    #1476387

    Hi,

    Thank you for the screenshot.

    We noticed that Enfold > Theme Options > Logo was not set, so we selected the logo, but the image is still not displaying in mobile view. Did you apply any filter in the functions.php file?

    Please try to remove the logo completely from the Media Library, then upload it again as logo. Let us know the result.

    Best regards,
    Ismael

    #1476396

    why does logo image url differ to domanin url?

    https://october7coalition.org

    on mobile the normal logo (non transparency case ) is shown and this leads to :
    https://october7coalition.org/wp-content/uploads/2024/01/logo_black.png
    on desktop the transparency logo is shown so the alternate logo inside sub-text is there.
    https://october7coalition.com/wp-content/uploads/2024/01/logo_black-300x133.png

    #1476417

    Thank you both for looking into this. It must be that the .org instance of the logo is what is causing the issue. I don’t have any coding pointing it toward the .org instead of the .com instance of the logo. I did delete the main (non-transparency) version of the logo and reupload, but no change. Shouldn’t it update the mobile version as well? Thoughts on how to fix?

    #1476422

    And, I haven’t made modifications to the functions.php file.

    #1476453

    What have you inserted to your :
    Dashboard – Settings – General : “WordPress Address (URL)”. and “Site Address (URL)”. ?

    #1476456

    I did check that just to be sure, but it is correct: https://october7coalition.com

    #1476460

    insert manually the url and save

    https://october7coalition.com/wp-content/uploads/2024/01/logo_black.png
    
    #1476461

    The logo is https://october7coalition.com/wp-content/uploads/2025/02/logo_300x133.png, so it’s the correct .com usage rather than .org. Just for kicks, I used the url you provided above, but it didn’t fix the issue.

    #1476477

    there is no entry in your child-theme functions.php that uses the filter :
    avf_logo – and you also have no entry regarding $logo ?

    on default Enfold handles to show on mobile the normal logo – because they give up the transparency setting and have a white background on logo container. So you must have some css code to force transparency and to set #main to padding-top: 0
    that is the reason why they show the normal logo allthough the header is set to transparency.

    see demo behaviour on mobile: https://kriesi.at/themes/enfold-2017/

    #1476478

    it seems that you have all pages with transparency option ?
    so you can overwrite the behaviour to show now the alternate logo anyway. on all mobile devices
    This is merely an emergency solution now

    
    .responsive.avia_mobile #top .header_bg {
      opacity: 0.1;
    }
    
    .responsive.avia_mobile #top #header:not(.av_header_transparency) .header_bg {
      opacity: 1;
      background-color: rgba(0,0,0,0.2) !important;
      -webkit-backdrop-filter: blur(5px);
      backdrop-filter: blur(5px);
    }
    
    .responsive.avia_mobile #top .av_alternate_logo_active .logo a > img, 
    .responsive.avia_mobile #top .av_alternate_logo_active .logo a > svg {
      opacity: 0;
      width: 200px
    }
    .responsive.avia_mobile #top  .logo img.alternate, 
    .responsive.avia_mobile #top  .logo .subtext.avia-svg-logo-sub {
      display: block;
      opacity: 1;
    }
    .responsive.avia_mobile #top  .logo img.alternate, 
    .responsive.avia_mobile #top  .logo .subtext.avia-svg-logo-sub {
      display: block;
      padding: 10px 0;
    }
    
    .responsive.avia_mobile #top .logo img.alternate, 
    .responsive.avia_mobile #top .logo .subtext.avia-svg-logo-sub svg {
      top: 50%;
      transform: translateY(-50%);
    }

    nevertheless – you had to find the reason for that url mismatch – and why the normal logo could not be overwritten by a new uploaded one.

    #1476479

    by the way – with that enormous main navigation menu – you had to break to the hamburger much earlier:

    @media only screen and (max-width: 1200px) {
        #top #header .av-main-nav > li.menu-item  {
            display: none!important;
        }
        #top #header .av-burger-menu-main {
            cursor: pointer;
            display: block!important;
        }
    }
    #1476485

    Hi,

    Thank you for the update.

    The logo still points to the .org site. Did you add any modifications to the functions.php file?

    // https://site.org/wp-content/uploads/2024/01/logo_black.png

    Best regards,
    Ismael

    #1476535

    Thank you for this thoughtful response Guenni007. The issue isn’t a transparency issue, but rather the logo actually missing. I can use the emergency code you provided, but would rather find the issue if we can.

    Ismael, as mentioned previously, I have added no code to the functions.php file. Am I supposed to? Enfold typically uses the main logo on desktop for the mobile version as well.

    #1476569

    can you post the child-theme functions.php here?
    (if so – please use the code tag)

    #1476570

    Thank you again for helping with this! Believe it or not, there was nothing added to it. Here is what is inside:

    <?php

    /*
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    */

    #1476585

    Hi,

    There is a snippet called “Mobile Logo” that adjusts the logo in the mobile view, and it is still using the old .org domain. We have updated the snippet. Please make sure to purge the cache before checking the page.

    Best regards,
    Ismael

    #1476638

    Thank you so much! Was that snippet in the main functions.php file?

    #1476694

    Hi,
    It is in your “snippets” plugin
    Screen Shot 2025 02 08 at 10.32.13 AM

    Best regards,
    Mike

Viewing 25 posts - 1 through 25 (of 25 total)
  • You must be logged in to reply to this topic.