Drupal Questions - How do you change the 'Post New Comment", "submit", etc text on comment form just like on drupalsn? | DrupalSN.com - http://drupalsn.com/learn-d...
// Set comment function function MYTHEME_theme() { return array( 'comment_form' => array('arguments' => array('form' =>NULL),) ); } // Alter the comment form function MYTHEME_comment_form($form) { // unset($form['homepage']); // This was my reason. return drupal_render($form); } // Alter the box wrapper function MYTHEME_preprocess_box(&$vars, $hook) { switch($vars['title']) { // This was my reason. case 'Post new comment': $vars['title'] = t('Suggestion'); break; } }
- Alejandro Prieto
Hi, i was trying to set up Google Docs with Browsa-Browsa to have the list of documents as a sidebar, but i can't get the iPhone version in the plugin pane, just the plain, ugly mobile version. Is there a way to make it work?
Disturbing, because in the long term it hurts Drupal. A good back-end is only one half of a site, a good front end is needed as well. The fact that custom themes seem harder to make certainly hurts there being more designs in the first place. Seems harder = people less likely to do it. I'm hoping, at least from what I'm seeing right now, that the Drupal 7 UX project will help to solve some of these problems.
- Dean Clark