Solved

How to remove Shopify Logo from site

Nekodragon
Tourist
8 0 5

Hello!

 

Although I got rid of the 'Powered By Shopify' text in the footer, there's a floating Shopify logo icon that is at the bottom of my pages no matter which page it is, and it remains at the bottom of the screen even if you scroll (pic follows below).

 

I want to get rid of this but I'm not sure how, and I haven't been able to find the answer either Googling or searching Shopify forums, help articles, and posts. My theme is Supply.

 

Thank you!

 

(picture shown is a screenshot of the lower left of my browser screen. The black bar on the side is behind the browser, part of my desktop wallpaper. The icon shown follows you up and down the page, remaining in the lower left corner.)

 

ShopifyLogo.png

Accepted Solution (1)

KarlOffenberger
Shopify Partner
1873 184 901

This is an accepted solution.

That logo only appears if you're logged in as an administrator. Normal visitors or customers won't see it.

View solution in original post

Replies 27 (27)

KarlOffenberger
Shopify Partner
1873 184 901

This is an accepted solution.

That logo only appears if you're logged in as an administrator. Normal visitors or customers won't see it.

Nekodragon
Tourist
8 0 5
Thanks a lot! I'm pretty new to Shopify so I don't know all the things yet, but I'm getting there. Thanks for the help!
KarlOffenberger
Shopify Partner
1873 184 901

Sure, no worries! You'll get the hang of it quickly. Simply ask here on the forums if anything isn't clear or you get stuck.

 

Looking forward to seeing your store!

Nekodragon
Tourist
8 0 5

Thanks @KarlOffenberger! 😄

 

My website is live now (without any pesky logos floating around, lol) if you would like to check it out! 🙂 

bluedragoncollectibles.com

Marcus07
Visitor
1 0 0

I recently added the trust me trust badge app by girrafily and ive set everything up and when i view my store nothing shows. do i have to edit some kind of code? or is there a issue with my store

Hugo85
Visitor
1 0 0

What do you guys think? I’m not fully finished yet. Still a bit to do. Would appreciate any feedback.

gcsstore
Visitor
1 0 0

Yes. Thanks for the information.


@KarlOffenberger wrote:

That logo only appears if you're logged in as an administrator. Normal visitors or customers won't see it.


 

dianaZ
Excursionist
22 1 0

Thank you. 

cactusseed
Visitor
2 0 0

Hi, I'm logged in as an administrator and the logo has disappeared making it harder to go back and fourth to edit and preview my pages. How do I get the logo back?

Fig
Visitor
1 0 0

Hello,

 

The same icon showing up on my homepage in administrator and visitor, i want it remove. Can someone help please.

 

Thanks in advance.

 

Fig

 

pambesteder
Excursionist
37 0 4

Thanks Karl.  It is gone now from the desktop version of my site (I logged out as admin on the desktop).  But it still shows when I'm on my Android even though I am not logged into Shopify on my Android.  Any idea why?  Thanks

chakravrthy
New Member
5 0 0

how to add the hove to venture theme. can you help me.


<a href="{{ product.url | within: collection }}" class="product-card">
{% comment %} <img src="{{ product.featured_image.src | img_url: '480x480' }}" alt="{{ product.featured_image.alt | escape }}" class="product-card__image"> {% endcomment %}
{% assign image = product.featured_image %}
<div class="product-card__image-container">
<div class="product-card__image-wrapper">
<div class="product-card__image js" style="max-width: {% include 'image-width' with image: image, width: 235 %}px;" data-image-id="{{ image.id }}" data-image-with-placeholder-wrapper>
<div style="padding-top:{{ 1 | divided_by: image.aspect_ratio | times: 100 }}%;">
{% assign img_url = image | img_url: '1x1' | replace: '_1x1.', '_{width}x.' %}
<img class="lazyload"
data-src="{{ img_url }}"
data-widths="[100, 140, 180, 250, 305, 440, 610, 720, 930, 1080]"
data-aspectratio="{{ image.aspect_ratio }}"
data-sizes="auto"
data-parent-fit="contain"
data-image
alt="{{ image.alt | escape }}">
</div>
<div class="placeholder-background placeholder-background--animation" data-image-placeholder></div>
</div>
<noscript>
 <div class="reveal">
<img src="{{ featured.featured_image.src | img_url: '450x450' }}" alt="{{ featured.featured_image.alt | escape }}">
<img class="hidden" src="{{ product.images.last | img_url: '450x450' }}" alt="{{ product.images.last.alt | escape }}" />
</div>
card__image">
</noscript>
</div>
</div>
<div class="product-card__info">
{% if settings.product_vendor_enable %}
<div class="product-card__brand">{{ product.vendor }}</div>
{% endif %}

<div class="product-card__name">{{ product.title }}</div>

{% if product.available %}
<div class="product-card__price">
{% if product.compare_at_price > product.price %}
{% comment %}
Product is on sale
{% endcomment %}
{% if product.price_varies %}
{% assign sale_price = product.price | money_without_trailing_zeros %}
{{ 'products.product.on_sale_from_html' | t: price: sale_price }}
{% else %}
<span class="visually-hidden">{{ 'products.product.regular_price' | t }}</span>
<s class="product-card__regular-price">{{ product.compare_at_price | money_without_trailing_zeros }}</s>

<span class="visually-hidden">{{ 'products.product.sale_price' | t }}</span>
{{ product.price | money_without_trailing_zeros }}
{% endif %}

{% else %}
{% comment %}
Not on sale, but could still have varying prices
{% endcomment %}
{% if product.price_varies %}
{% assign price = product.price | money_without_trailing_zeros %}
{{ 'products.product.from_text_html' | t: price: price }}
{% else %}
<span class="visually-hidden">{{ 'products.product.regular_price' | t }}</span>
{{ product.price | money_without_trailing_zeros }}
{% endif %}

{% endif %}
{%- unless product.price_varies -%}
{%- if current_variant.unit_price_measurement -%}
{% include 'product-unit-price', product_variant: current_variant, wrapper_class: "product-card__unit-price" %}
{%- endif -%}
{%- endunless -%}
</div>
{% else %}
<div class="product-card__availability">
{{ 'products.product.sold_out' | t }}
</div>
{% endif %}
</div>

 

 

Reveal module
// =============================================== */

.reveal .hidden { display: block !important; visibility: visible !important;}
.product:hover .reveal img { opacity: 1; }
.reveal { position: relative; }
.reveal .hidden {
position: absolute;
z-index: -1;
top: 0;
width: 100%;
height: 100%;
opacity: 0;
-webkit-transition: opacity 0.3s ease-in-out;
-moz-transition: opacity 0.3s ease-in-out;
-o-transition: opacity 0.3s ease-in-out;
transition: opacity 0.3s ease-in-out;
}
.reveal:hover .hidden {
z-index: 100000;
opacity: 1;
}
.reveal .caption {
position: absolute;
top: 0;
display: table;
width: 100%;
height: 100%;
background-color: white; /* fallback for IE8 */
background-color: rgba(255, 255, 255, 0.7);
font: 13px/1.6 sans-serif;
text-transform: uppercase;
color: #333;
letter-spacing: 1px;
text-align: center;
text-rendering: optimizeLegibility;
}
.reveal .hidden .caption .centered {
display: table-cell;
vertical-align: middle;
}

@media (min-width: 480px) and (max-width: 979px) {
.reveal .caption {
font-size: 11px;
}
}

{% if product.compare_at_price > product.price %}
{% comment %}
A visually-hidden label before regular/sale prices clarifies
prices for screen readers, so hide the sale tag from them.
{% endcomment %}
<div class="product-tag product-tag--absolute" aria-hidden="true">
{{ 'products.product.on_sale' | t }}
</div>
{% endif %}
<div class="product-card__overlay">
{% assign view_string_length = 'products.product.view' | t | size %}
<span class="btn product-card__overlay-btn {% if view_string_length > 8 %} btn--narrow{% endif %}">{{ 'products.product.view' | t }}</span>
</div>
</a>

catestrange
Tourist
4 0 3

This is bizarre, I used Shopify all last year and never saw that shopping bag Shopify logo and now it suddenly appears. It's annoying and I wish I could get rid of it. 

Bross
New Member
5 0 0

This solution used to help but now it doesn't. You say the floating icon is only there when you're logged in as an administrator, so how do you log out as an administrator? I've logged out from shopify admin on desktop and phone app but the floating icon will not go away. Any new solutions for this annoying problem? Thanks for your time.

Bross
New Member
5 0 0

I logged out as administrator but logo is still there. Any new solutions that also work? Thanks.

Bross
New Member
5 0 0

This solution did not resolve this issue for me. Please provide another solution that works. Thanks.

peakeveryseason
Visitor
1 0 0

Hello, 

 

I have the same problem here. I tried to login as customer but i can see the logo still. is there anyway to get rid of it? its for an admin icon it supposed not to  there in the first place. thank you. 

Dionne
Tourist
3 0 1

I still see it on my desktop when I type my website into a new search window and also want it removed....

Please provide a fix to this issue. 

 

Thanks

 

Bross
New Member
5 0 0

Logging out of admin usually removes the floating icon. If it doesn't, try clearing your web browser cache. That is what worked for me 1-2 months ago via shopify support.

Dionne
Tourist
3 0 1

Hello Bross,

I appreciate your response however I have logged out of my Shopify account and it still shows. Also trying to clear my temp internet files and did a restart of my pc and still no luck...

Bross
New Member
5 0 0

I know how frustrating it can be. I've had this issue a couple if times this year. The first time, I logged out of admin, that fixed the issue. The second time, I logged out and the icon was gone but when the page was refreshed the icon came back and didn't go away. I contacted shopify support, after a lengthy chat trying to solve the issue, he finally suggested to clear my browser cache and refresh the page. It worked! I use chrome if that information is helpful. I think that was all too it. Should I recall any other information that could help, I shall post it here. Good luck! 

Dionne
Tourist
3 0 1

Thanks Bross, 

Yes, I did just go in and clear my browsing cache with no luck yet. I use DuckDuckGo as my browser. Seems to be clearing the Chrome cache....I will figure this out. 

 

Thanks for your help and please do post if you remember some other steps to solve this.

 

 

DenAndBeyondDev
Visitor
1 0 3

In case someone is still looking for an answer to this, simply add the following line of code to your theme.css file - or any other global css files.

 

#admin-bar-iframe{ display:none!important; }

 

To access the theme.css file, go to Online store / Themes -> Actions / Edit code -> Assets / theme.css

Have it removed on our site: https://denandbeyond.com. Although as it's only visible to the Admin, you won't see anything. 🙂

 

DiorMcdade
Visitor
1 0 0

I've tried all of that and nothing is working I can't stand that Shopify bag there it doesn't make me look credible have you had any problems like this that you had to resolve lately as far as the Shopify bag it says Shopify and then it has country United States and on the right hand side it says headed home page when I hit the X it just leaves the Shopify bag there which I do not want can you help me resolve this issue

 

MM2023
Visitor
2 0 3

Is there a way to get rid of it?

shopfy-2020
Shopify Partner
73 3 18

This is not true in our case. The Shopify icon shows even when you're not logged in.

Prisgane
Tourist
8 0 0

Hello, How did you removed the powered bu shopify? Thanks!