Halo agan2 sekalian,
Mo tanya, gimana caranya mengubah template halaman edit user profile di Drupal 7?
Ini code gw di custmod.module:
<?php
/**
* Implementation of hook_theme().
*/
function custmod_theme(){
return array(
'user_profile_form' => array(
'render element' => 'elements',
'template' => 'user-profile-form',
'variables' => array('form' => NULL,),
),
);
}
?>
Trus gw buat template file bernama user-profile-form.tpl.php, dan code di dalamnya gw kasi ini:
<?php print render($form); ?>
Dari sini form nya masih tampil.
Tapi pas gw kasi code kya gini:
test...
<?php print render($form); ?>
Form nya gk tampil, dan cuma ada tulisan test...
Terima kasih sebelumnya

Akhirnya solved jg, silahkan cek disini bwt solusinya ;)
http://drupal.org/node/302130#comment-5351606
Thanks