Remove floating item

Remove floating item

Daniel19901
Shopify Partner
296 2 88

Hi, 
can anyone help me remove this "build with" floating icon? 

https://wrdapparel.net/
Password: umiglu

Daniel19901_0-1721649383533.png

 

Replies 11 (11)

suyash1
Shopify Partner
10817 1337 1714

@Daniel19901 - that button do not have any class or id, hence adding css to it is difficult, which app or code have you added for this button? 

 

 

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
Daniel19901
Shopify Partner
296 2 88

@suyash1 Instant

suyash1
Shopify Partner
10817 1337 1714

@Daniel19901 - please check if that app has an option to disable this button, because it do not have class or id

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.

parth_ghelani
Shopify Partner
259 38 39

Hello @Daniel19901 

the popup is added from the app. You can turn it from the customization or direct from the stop showing it.

Was your question answered? Mark it as an Accepted Solution.
If you need further assistance to optimize your store, please don't hesitate to reach out. I'm committed to providing you with my full support and ensuring that you get the most out of our collaboration.

Get in Touch: You can contact me directly at softkarts@gmail.com for any questions or concerns

niraj_patel
Shopify Partner
2391 516 515

Hello @Daniel19901 


Try this

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

  document.querySelectorAll('a[rel="noopener"]').forEach(function(el) {
        el.style.display = 'none';
   });
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

BSSCommerce-HDL
Shopify Partner
2305 835 909

Hi @Daniel19901

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </body> tag: 

 

 

<script>
let symbol_float = document.querySelector('a[title="Instant Landing Page Builder for Shopify"]');
if(symbol_float) {
    symbol_float.style.display = "none";
}
</script>

 

 

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

 

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

Daniel19901
Shopify Partner
296 2 88

@BSSCommerce-HDL thank you for your reply. I tried it in the theme.lq as suggested, but it didn't work 😞

Daniel19901_0-1721652564964.png

 

BSSCommerce-HDL
Shopify Partner
2305 835 909

Hi @Daniel19901 , Pls try again with this code: 

<script>
window.onload = () => {
let symbol_float = document.querySelector('a[title="Instant Landing Page Builder for Shopify"]');
if(symbol_float) {
    symbol_float.style.display = "none";
}
}
</script>

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

Daniel19901
Shopify Partner
296 2 88

@BSSCommerce-HDL Almost PERFECT! it shows for a split of a second and then disappears. Can we maybe make it to not show at all? I guess this is because the code that comes from "add ons" is being read after the original one 

BSSCommerce-HDL
Shopify Partner
2305 835 909

Hi @Daniel19901, Pls try again with this code: 

 

<script>
let timeoutId = setTimeout(() => {
    let symbol_float = document.querySelector('a[title="Instant Landing Page Builder for Shopify"]');
    if(symbol_float) {
       symbol_float.style.display = "none";
       clearTimeout(timeoutId);
    }
}, 1000);

setTimeout(() => {
   clearTimeout(timeoutId);
}, 10000); 
</script>

 

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

 

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

Daniel19901
Shopify Partner
296 2 88

@BSSCommerce-HDL not yet  :((