Spree::Store
model is the center of the Spree ecosystem. Each Spree installation can have multiple Stores. Each Store operates on a different domain or subdomain, eg.
us.example.com
eu.example.com
another-brand.com
Spree multi-store setup
Attribute | Description | Example Value |
---|---|---|
name | The name of the store, typically displayed in the browser title bar and throughout the site. | Spree Demo Site |
url | The URL or domain associated with the store. | shop.example.com |
meta_description | A brief description of the store for SEO purposes. | An exclusive selection of high-quality products. |
meta_keywords | Relevant keywords associated with the store for SEO. | fashion, electronics, books |
seo_title | A custom SEO title for the store. | Shop the Best Deals Online - Spree Store |
mail_from_address | The email address used for sending emails from the store. | noreply@example.com |
default_currency | The default currency for prices within the store. | USD |
code | A unique code to identify the store. | spree-001 |
default | Indicates if the store is the default store. | true |
supported_currencies | A list of currencies supported by the store, separated by commas. | USD, EUR, GBP |
supported_locales | A list of locales supported by the store, separated by commas. | en, fr, de |
customer_support_email | The email address for customer support inquiries. | support@example.com |
facebook | The store’s Facebook page URL. | spree |
twitter | The store’s Twitter handle. | @spreecommerce |
instagram | The store’s Instagram profile URL. | https://www.instagram.com/spree |
default_locale | The default locale/language for the store. | en |
description | A detailed description of the store. | Your one-stop shop for everything you need. |
address | The physical address of the store. | 123 Example St, San Francisco, CA |
contact_phone | The contact phone number for the store. | +1 234-567-8900 |
new_order_notifications_email | The email address to send notifications of new orders. | orders@example.com |
current_store
method which returns the Store
matching the current URL.
All parts of Spree (API v1, API v2, Storefront, Admin Panel) have this implemented. This method is also available in views and JSON serializers.
current_store
calls Spree::Stores::FindCurrent.new(url: url).execute.This logic can be easily overwritten by settingconfig/initializers/spree.rb
fileAdmin Panel -> Configurations -> Store
or via Rails console:
Attribute | Description | Example(s) |
---|---|---|
default_currency | This is the default currency that will be pre-selected when visiting the store the first time. | USD |
supported_currencies | If there is more than one supported currency, visitors will be able to choose which currency they browse in. | USD , CAD , EUR |
default_locale | This is the default locale/language which will be pre-selected when visiting the store the first time. | en |
supported_locales | If there is more than one supported locale, visitors can choose which locale they browse in. Locales are available upon installing Spree I18n. | en , fr , de |
Store
resource allows for translating many of its fields. Translations are enabled when selecting more than one locale in supported_locales
. The following fields are translatable:
name
meta_description
meta_keywords
seo_title
facebook
twitter
instagram
customer_support_email
description
address
contact_phone
new_order_notifications_email
checkout_zone_id
attribute which holds the ID of the selected Zone record.
Available Shipping Methods on the Checkout are determined based on the Zone and Shipping Methods configuration.
This will also have an effect on what Shipping / Billing Addresses user can add/ select during Checkout. Only Addresses from Countries or States available in the selected Zone can be used and will be visible in the User’s Address Book.
Resource | Relationship |
---|---|
Order | One Order belongs to one Store |
Product | One Product can be associated with many Store(s), you can pick and choose in which Store(s) each Product will be available |
Payment Method | One Payment Method can be associated with many Store(s), you can select in which Stores given Payment Method will be available on Checkout |
Taxonomy | One Taxonomy belongs to one Store |
Promotion | One Promotion can be associated with multiple Stores |
Store Credit | One Store Credit belongs to and can be used in one Store |