How to setup instore pickup
With Packrooster Shipping you can create a dedicated shipping method for in-store pick-ups.
This is done from Packrooster Shipping -> Settings -> Shipping carrier settings -> Shipping carrier "store". Start by filling all the necessary information of your store/stores here.
After you have filled the information, proceed to Packrooster Shipping -> Settings -> Shipping methods & Pick-up Points -> Add a Pick-up point and choose ”In-store pickup” as the carrier.
It is important to notice that if you have two or more locations for pick-up like in the example photo, create only one local pickup -method and set the amount of locations to the right amount! Packrooster searches for the closest location depending on the customers postal code so if you create more than one local pick-up method the same closest location get shown twice.
In Shopify Notification settings there must be an if function to send the right message to the customer, for example:
{% case delivery_method %}
{% when 'pick-up' %}
You’ll receive an email when your order is ready for pickup.
{% when 'local' %}
Hi {{ customer.first_name }}, we're getting your order ready for delivery.
{% else %}
Hi {{ customer.first_name }}, we're getting your order ready to be shipped. We will notify you when it has been sent.
{% endcase %}