Noah Summers
02/25/2022, 10:59 PMNoah Summers
02/25/2022, 11:00 PMNoah Summers
02/25/2022, 11:01 PMNoah Summers
02/25/2022, 11:02 PMNoah Summers
02/25/2022, 11:04 PMJared Norman
Mateus Resende
02/26/2022, 9:05 PMIfechuwku
02/28/2022, 8:21 AMrenodor
02/28/2022, 5:01 PMlocalized do
mount Spree::Core::Engine, at: '/'
end
Anyone faced similar issue and came up with an alternative?Manu
02/28/2022, 5:45 PMChromico
02/28/2022, 6:44 PMGustavo Iglesias
02/28/2022, 10:56 PMNameError (uninitialized constant SolidusStarterFrontend::Config
Did you mean? RbConfig):
app/controllers/spree/store_controller.rb:21:in `config_locale'
has anyone experienced this before?Sandeep Ravichandran
03/01/2022, 2:16 PMTyler Kocheff
03/01/2022, 3:27 PMIf you're using a Solidus version minor than 3.2, the content on this page is still applicable. However, you might want to look at the previously recommended approach through decorators .
The Decorators page it links to has this text:
Automatic autoloading will only work for Solidus versions minor than 3.2. Take a look at monkey patches for the current recommended approach.
They both seem to imply that the other method is the recommended way. I think the monkey patch method is recommended, but the text is a bit confusing so just want to confirm and point out that the wording might throw some people off.Sajid Ali
03/02/2022, 8:04 AMGustavo Iglesias
03/03/2022, 12:29 AMrails generate solidus:install \
--migrate=true \
--sample=true \
--seed=true \
--with-authentication=true \
--payment-method=none \
--auto-accept=true \
--admin-email=admin@example.com \
--admin-password=test123
I get a solidus_auth_devise
added to my gemfile:
gem 'solidus_auth_devise'
gem 'solidus_auth_devise'
gem 'solidus_auth_devise'
gem 'solidus_auth_devise'
gem 'solidus_auth_devise'
gem 'solidus_auth_devise'
is there a way to prevent this?Tom Wilson
03/04/2022, 12:58 AMin_stock
, which uses the Rails cache - you really need to be either on one machine or using a distributed cache. 🙂Tom Wilson
03/04/2022, 12:59 AMconfig.inventory_cache_threshold
Jimmy Nguyen
03/04/2022, 2:17 AMSajid Ali
03/04/2022, 10:40 AMgem 'searchkick'
gem 'solidus_searchkick'
when I run this command "*bundle exec rails g solidus_searchkick:install*" I got this error.
in `method_missing': undefined method `parent_name' for PRojectNAME::Application:Class (NoMethodError)
Xan
03/04/2022, 3:18 PMRAJEEV G
03/04/2022, 5:55 PMRAJEEV G
03/04/2022, 5:57 PMfaraz
03/04/2022, 8:03 PMBenjamin J
03/05/2022, 3:35 PMsolidus:views:override
Benjamin J
03/05/2022, 3:57 PMAndre Schweighofer
03/05/2022, 10:55 PMcreate_proposed_shipments
but that seems to depend on a ship_address
which is collected only later.
What’s the most elegant way to display the shipping rate already in the shopping cart and address step?Manu
03/07/2022, 10:34 PMmodule Myapp::ProductDecorator
def self.prepended(base)
base.has_rich_text :description
end
Spree::Product.prepend self
end
The backend view (app/spree/admin/products/_form.html.erb) is set like so:
<%= f.field_container :description do %>
<%= f.label :description %>
<%= f.rich_text_area :description %>
<% end %>
The product show :
<div class="trix-content">
<%= @product.description %>
</div>
The CORS policy set on S3 :
[
{
"AllowedHeaders": [
"*"
],
"AllowedMethods": [
"PUT",
"GET",
"POST"
],
"AllowedOrigins": [
"*"
],
"ExposeHeaders": [
"Origin",
"Content-Type",
"Content-MD5",
"Content-Disposition"
],
"MaxAgeSeconds": 3600
}
Spree.rb
config.image_attachment_module = 'Spree::Image::ActiveStorageAttachment'
config.taxon_attachment_module = 'Spree::Taxon::ActiveStorageAttachment'
Development.rb
config.active_storage.service = :amazon
Gemfile
gem "aws-sdk-s3", require: false // S3 keys are properly set in the credentials file
gem "image_processing", ">= 1.2"
Manu
03/07/2022, 10:35 PMOleksandr Pozniak
03/09/2022, 11:39 AM