XTRA Theme, Remove Free Pick up from a product with variants

Solved
ttg7
Tourist
11 0 1

I added a product with variants. For some reason it shows "Free pickup in our shop(s)" next to color and size (image attached below).

I would like to get rid of those because I don't offer local pick-up.

I am using the Xtra Theme.

Local pick-up was already disabled in my settings. 

https://jeffreysrestaurantsupplies.com/products/super-soaker-diamond-rubber-border?_pos=1&_psq=super...

 

ttg7_0-1699545677219.png

 

Accepted Solution (1)
BSS-Commerce
Shopify Expert
2851 383 405

This is an accepted solution.

Hi @ttg7 

Let's follow the following steps:

1. Go to Theme -> Edit code, find file name "screen.css"

2. Add this code

span#f8pr-pickup-4 {
    display: none !important;
}

the result will be:

view (58).png

Hope it helps @ttg7 !

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

For B2B solutions and custom pricing, check out B2B Solution & Custom Pricing |
For adding product labels/badges, visit Product Labels by BSS

BSS Commerce - Shopify Apps & Store Development Service Provider

Hire a Shopify expert | Shopify Plus Store Development

View solution in original post

Replies 2 (2)
BSS-Commerce
Shopify Expert
2851 383 405

This is an accepted solution.

Hi @ttg7 

Let's follow the following steps:

1. Go to Theme -> Edit code, find file name "screen.css"

2. Add this code

span#f8pr-pickup-4 {
    display: none !important;
}

the result will be:

view (58).png

Hope it helps @ttg7 !

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

For B2B solutions and custom pricing, check out B2B Solution & Custom Pricing |
For adding product labels/badges, visit Product Labels by BSS

BSS Commerce - Shopify Apps & Store Development Service Provider

Hire a Shopify expert | Shopify Plus Store Development

ttg7
Tourist
11 0 1

Amazing! That worked! Thank you very much.