spree-promotions icon indicating copy to clipboard operation
spree-promotions copied to clipboard

Extension for spree for handling diffirent kinds of promotions

Results 3 spree-promotions issues
Sort by recently updated
recently updated
newest added

I've modified /lib/promoted_products.rb with: def promoted_products # promoted.is_a?(Product) ? [promoted] : promoted.products.all if promoted.is_a?(Taxon) Product.in_taxon(promoted) elsif promoted.is_a?(Product) [promoted] else promoted.products.all end end

There appears to be a mismatch between what parm name is submitted (first_purchase_promotion) vs. what resource_controller attempts to retrieve(product_promotion), resulting the 'update' of a promotion not having any effect. From...

Hi, I have a problem creating user promotions (in Edge version of spree) using the admin ui, After fill in the fields when clicked create it always give me the...