Flemming Madsen

Results 11 comments of Flemming Madsen

using `gem 'css3buttons', :git => 'git://github.com/johnrees/css3buttons_rails_helpers.git'` and afterwards clearing out tmp/cache/ and tmp/sass-cache/ solved the problem for me. Icons are showing again

I can [Reproduction repository for 1.8](https://github.com/leflings/sylius_statemachine_1_8) Same methodology as in issue ([modification](https://github.com/leflings/sylius_statemachine_1_8/commit/9e683c2f95f1c256d6977cf013e0260e4bff8324)) Result of `bin/console debug:config winzou_state_machine sylius_order_checkout` [before](https://gist.github.com/leflings/e143b10a14db215b629a5b5e9746b7d9) and [after](https://gist.github.com/leflings/a9cdceaad80dd119ee5576b057aef2a3)

I have tried both of those approaches, but they don't work. Problem is, as soon as they are provided "regularly" under `config/` all yaml nodes are merged, so you can't...

> > > I don't think this file is loaded: https://github.com/leflings/sylius_statemachine/blob/master/src/Resources/SyliusCoreBundle/config/app/state_machine/sylius_order_checkout.yml Yeah, it would seem like that is the case. Why, I don't get though. It would seem to be...

Ah, that is a very helpful bit of detective work. Thank you! So in this particular case it seems the problem can be solved by re-adding the override of `getContainerLoader`...

> > > Here's a relevant thread: [winzou/StateMachineBundle#32](https://github.com/winzou/StateMachineBundle/issues/32) > [This comment](https://github.com/winzou/StateMachineBundle/issues/32#issuecomment-258336052) shows how to disable a state thanks to a special handling in the container extension, but it doesn't work...

Ah, it seems it is not possible to just override `getContainerLoader` again, since the `FileLocator` no longer allows for providing custom paths. I guess a solution would be to just...

I don't think there's anything for Sylius to fix either, except for maybe their documentation, to stop someone from scratching their head for too long. Maybe a link to this...

For anyone who comes across this issue, needing to completely modify state machines, as described in [the docs](https://docs.sylius.com/en/latest/customization/state_machine.html#how-to-remove-a-state-and-its-transitions), here's how I solved it with a compiler pass. Overriding files can...

> Hello @leflings , > > I need to override the state machine. Where do you put this **AlterStateMachineConfigurationPass** class ? > > @Rafikooo Is the feature still in backlog?...