Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1256253

    HI,

    I just moved my site from staging to production. On mobile, the homepage of the site has the logo but not any other pages of the site. They can’t find the logo. How can it find the home page but not the other pages???

    #1256283

    Hi mclweb,

    The pages like archives that have a missing logo seems to be pointing to this image URL (link in private content) and it returns nothing.
    Please update the URL and that should work properly.

    Best regards,
    Nikko

    #1256424

    how do I update the URL? I reentered the main logo. I think I’m losing my mind as this URL has an ending that obviously I would have created but I’m not see where I originally applied this logo. What am I missing?

    #1256429

    O.K. I found it. It was in functions.php. Sorry for the run around. I built the site over a year ago and I forgot how I added the mobile logo.
    Thanks for your help.

    #1256430

    Hold on a minute… on further looking I’m getting not consistent returns on the mobile site. Some pages are showing the main logo, some the mobile logo and one page (visit) nothing at all.

    This is the code I have in the function file.

    add_filter(‘avf_logo’,’av_change_logo’);
    function av_change_logo($logo) {
    if(wp_is_mobile( ) )
    {
    $logo = “https://monova.ca/wp-content/uploads/2020/05/monova-mobile.png”;
    }
    return $logo;
    }

    Is this right?

    #1256436

    I had to go in and update each page to get it display correctly. But, got it working.

    #1256568

    Hi mclweb,

    The code you posted is indeed the code responsible for it.
    I’m glad that you got it working.
    Let us know if you need further assistance.

    Best regards,
    Nikko

    #1273530

    Looks like my mobile replacement version on the logo isn’t working. Got any ideas?

    #1273569

    Hi mclweb,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    #1273814

    Info in private content.

    Thanks

    #1274214

    Hi mclweb,

    Thanks for giving us admin access.
    It’s working properly now, the single quotes in the code above it are causing the issue.

    Best regards,
    Nikko

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