Learn how to customise Drupal Development profile edit type of Drupal Development Profile2 module utilizing a template?
Profile2 has Drupal Development important profile (admin/construction/profiles/handle/important
), and it’s set to supply a separate web page for enhancing profiles (profile-main/1/edit
).
In Drupal 7, for a content material sort resembling faq, I can use a template to personalised its edit kind.
In template.php
, I’m utilizing Drupal Development following code:
perform MYTHEME_theme(&$current, $sort, $theme, $path) { return array( 'faq_node_form' => array( 'arguments' => array('kind' => NULL), 'template' => 'node--faq--edit', 'render component' => 'kind', ), ); }
I then create node--faq--edit.tpl.php
, the place I can customise it.
What’s Drupal Development equal methodology I may use for a Profile2 profile edit kind?