spree-multi-domain icon indicating copy to clipboard operation
spree-multi-domain copied to clipboard

Multiple Spree stores on different domains - single unified backed for processing orders

Results 40 spree-multi-domain issues
Sort by recently updated
recently updated
newest added

We currently do this in the products controller for frontend, but not in the api. This makes sure we're not showing products for different stores through the ProductsController in the...

Updated the mailer to use same site name for subject as what Spree 2.3 is using. Put in example of "[email protected]" as placeholder for "send mail as" field to avoid...

When i save a logo for a domain, it is not saved. Going back into the admin screen shows the image is 404 - its looking for the right file,...

It's ok that the Cart is shared between different domains? I don't know if this is the default behavior or is a bug. In any case, is there a way...

Product will loose its Association with the Shops after updating the Product Properties. weired behavior

applicable? is not implemented. This will fix it, or you guys might add it your next commit ``` Spree::Promotion::Rules::Store.class_eval do def applicable?(promotable) promotable.is_a?(Spree::Order) end end ```

I'm not good on forking/pushing, so might be please somebody feel free to implement it into the master. currently we are able to populate EVERY variant_id to an order. customers...

I installed SpreeCommerce and added multi-domain-support setted up the domains - store-a.local (store_id 1) - store-b.local (store_id 2) i created 2 taxonomies - store-a-taxonomie (store_id 1) - store-b-taxonomie (store_id 2)...

Inside the Searcbar the "select#taxon" needs to show just the Taxonomies from current_store. Also the searchfilter needs to be reviewed. If we choose "All Departments" the lookup needs to be...

The by_domain scope uses a like %domain% ``` ruby scope :by_domain, lambda { |domain| where("domains like ?", "%#{domain}%") } ``` This can cause problems if you have for example 3...