-
-
Save kumekay/5563240 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Deface::Override.new(:name => "remove billing address form", | |
:virtual_path => "spree/checkout/_address", | |
:remove => "#billing[data-hook]" | |
) | |
Deface::Override.new(:name => "remove use billing address checkbox", | |
:virtual_path => "spree/checkout/_address", | |
:remove => "[data-hook='use_billing']" | |
) | |
Deface::Override.new(:name => "remove second address", | |
:virtual_path => "spree/checkout/_address", | |
:remove => "p#saddress2" | |
) | |
Deface::Override.new(:name => "remove zip code", | |
:virtual_path => "spree/checkout/_address", | |
:remove => "p#szipcode" | |
) | |
Deface::Override.new(:name => "remove state", | |
:virtual_path => "spree/checkout/_address", | |
:remove => "p#sstate" | |
) | |
Deface::Override.new(:name => "remove country", | |
:virtual_path => "spree/checkout/_address", | |
:remove => "p#scountry" | |
) | |
Deface::Override.new(:name => "remove city", | |
:virtual_path => "spree/checkout/_address", | |
:remove => "p#scity" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment