Tom Wilson
01/04/2023, 11:24 PMGiven Reed
01/11/2023, 10:07 PM# If shipping country isn't in the US, we skip it
next unless order.ship_address.country.iso.eql?('US')
before it creates the shipment adjustment.
I'm sure there's something simple I'm missing, I think I've been staring at this for too long to see what it is.Ben
01/12/2023, 7:55 PMSteven Chao
01/14/2023, 4:52 AMuser = Spree::User.find_by(email: '<mailto:spree@example.com|spree@example.com>')
user.confirm!
But there isn't this method in solidus gem. How can I fix this?Abby Hudson
01/18/2023, 9:51 AMpending
(I assume because they need to confirm with the external provider). At the moment we check for a status of succeeded before creating the refund in Solidus. What would be the best way to handle this? I think that we should listen to the refund.updated
event from Stripe. But should we only create the refund in Solidus once we receive this? Or would it be better to add a column onto Spree::Refund
for status, set it to pending when created and update when we hear from stripe that it has succeeded? My concern on only creating the refund once we receive this webhook is confusion for customer service because the refund isn't showing for the order in Solidus once requested.Oleksandr Pozniak
01/18/2023, 1:56 PMZyad A
01/19/2023, 4:46 PMGeorg Keferböck
01/20/2023, 12:07 AMBFX462heo
01/20/2023, 8:06 AMZyad A
01/21/2023, 12:45 PM<%= javascript_include_tag 'solidus_starter_frontend' %>
and replaced it with <%= javascript_include_tag 'spree/frontend/all.js' %>
. I have also added `//= link_tree ../../../vendor/assets/javascripts/spree/frontend`to my manifest.js file.
Still not sure that it is working as expected. Am I on the right track here? Would appreciate if someone could point me in the right direction or link me to a useful resource.
Thanks!Oleksandr Pozniak
01/23/2023, 9:28 AMAlex Trimper
01/23/2023, 3:21 PMjakemumu
01/25/2023, 12:47 AMChromico
01/30/2023, 12:07 PMMarie Lamoureux
01/31/2023, 10:25 AMbenmorganio
01/31/2023, 6:08 PMHaris
01/31/2023, 6:08 PMHaris
01/31/2023, 6:09 PMbenmorganio
01/31/2023, 6:09 PMHaris
01/31/2023, 6:10 PMHaris
01/31/2023, 6:10 PMHaris
01/31/2023, 6:10 PMbenmorganio
01/31/2023, 6:10 PMbenmorganio
01/31/2023, 6:14 PMSarah Naas
02/01/2023, 1:12 AMedmunteanu
02/01/2023, 3:28 PMsolidus_multi_domain
to Solidus 3.0. This extension is said on https://solidus.io/extensions/ to support Solidus 3.1 and 3.2, but when I try to bump up my versions, the Bundler complains saying that the extension only accepts solidus_core
versions lower than 3. Am I missing something?
Thank you in advance!Oliver Vokoun
02/06/2023, 7:57 AMGeorg Keferböck
02/09/2023, 11:00 PMSabo
02/10/2023, 12:36 PMSpree::Backend::Config.configure do |config|
# ...
config.menu_items << config.class::MenuItem.new(
[:rejected_orders],
'ban',
url: '/admin/orders?q[rejected_eq]=true',
position: 0
)
end
How only show the menu item after admin login like the others ?Zyad A
02/13/2023, 5:17 PM