[ASK] Bagaimana caranya mengubah template di halaman edit user profile di Drupal 7?

2 posts / 0 new
Last post
ardnet
ardnet's picture
Offline
Joined: 31 Mar 2011
Points: 44
[ASK] Bagaimana caranya mengubah template di halaman edit user profile di Drupal 7?

 

Halo agan2 sekalian,
Mo tanya, gimana caranya mengubah template halaman edit user profile di Drupal 7?
Gw ud coba cara yg tertera di link ini: http://drupal.org/node/302130 tp gk bisa juga.
 
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
ardnet
ardnet's picture
Offline
Joined: 31 Mar 2011
Points: 44
Akhirnya, solved jg ;)

Akhirnya solved jg, silahkan cek disini bwt solusinya ;) 

http://drupal.org/node/302130#comment-5351606

Thanks

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.