Skip to content

Instantly share code, notes, and snippets.

@mdeering
Created August 18, 2010 21:42
Show Gist options
  • Save mdeering/536277 to your computer and use it in GitHub Desktop.
Save mdeering/536277 to your computer and use it in GitHub Desktop.
class SchoolManagerHooks < Spree::ThemeSupport::HookListener
# Hook is getting called as expected in the user form.
# http://github.com/railsdog/spree/blob/0-11-stable/vendor/extensions/theme_default/app/views/shared/_user_form.html.erb
# But both give 'undefined local variable or method `f'
# Partial Rendering Hook.
insert_after :signup_below_password_fields, 'form_fields'
# Also tried a block rendering hook.
insert_after :signup_below_password_fields do
"<%= f.label :school %><br />"
"<%= f.select School.all %>"
end
end
@mdeering
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment