Atelier theme issues - out of stock / local pick up

Hi,

I’m having multiple issues with my store in the Atelier theme.

I’m trying to integrate with Prodigi, but when I chose Prodigi as fulfillment location on the product page, it makes the product go Out of stock, even if inventory is not tracked. I’ve also tried setting inventory at 100 but that didn’t help. The only way to get the out of stock message off is to set “Fulfill at multiple locations”. But then, a message saying “Pickup currently not available” will appear under each product. I don’t want this option at all, as I’m only dropshipping.

I’ve tried googling and reading previous post, adding code etc but nothing has worked.

Could someone please help

Maybe you should just hide the “Pickup currently not available” message on product pages permanently especially if you’re only dropshipping and never offer local pickup.

A custom CSS class is enough to do this cleanly without editing your theme’s Liquid files.

Could you share the URL of a product page where this message appears?

Hi @lovisarcreative ,

Here’s how to fix both the out-of-stock issue and the pickup availability message:

The Out of Stock Problem

This happens because Shopify gets confused about fulfillment locations when you add Prodigi. Here’s the fix:

First, check your location settings:

  • Go to Settings → Locations in your admin
  • Make sure your Prodigi location has “Fulfill online orders from this location” enabled
  • This is crucial - without it, Shopify thinks nothing can be fulfilled

Then fix the product inventory:

  • Go to each affected product
  • In the Inventory section, you have two options:
    1. Set a high inventory number (like 999) and enable “Continue selling when out of stock”
    2. Or just uncheck “Track Quantity” entirely (recommended for dropshipping)

Since you’re dropshipping, option 2 makes more sense. Let Prodigi handle the inventory tracking on their end.

## Removing the Pickup Messages

For the “Pickup currently not available” text, the cleanest solution is to disable the pickup availability section completely:

Method 1 (recommended):

  • Online Store → Themes → Actions → Edit Code
  • Look in Sections for pickup-availability.liquid
  • Wrap the entire file content in comment tags:
    • Add {% comment %} at the top
    • Add {% endcomment %} at the bottom
  • Save

Method 2 (if the above file doesn’t exist):

  • Find styles.css.liquid in Assets
  • Add this CSS at the bottom:
.pickup-availability-preview {
    display: none !important;
}

## Why This Works

The root issue is that when you enable “Fulfill at multiple locations” to fix the first problem, Shopify automatically assumes you want to offer pickup. But for pure dropshipping, you don’t want customers seeing pickup options at all.

These changes basically tell Shopify: “Yes, fulfill from Prodigi, but no, don’t show pickup options to customers.”

Worth testing with a small order first to make sure everything flows correctly, but it should work fine.

Let me know if you run into any problems with these steps.

Cheers!
Shubham | Untechnickle

Thank you! The first method worked! Although I put it under assets/local-pickup.js as I couldn’t find either of the other ones

Thank you