web-dev-qa-db-ja.com

パスを変更/ comment / reply / 11#comment-form

パスを/ comment/reply/11#comment-formから/ node/$ node-> nid /#comment-formノード$ links内?

3
Stan79

Drupal 7では、次のようなものをtemplate.phpに追加できます。

function yourtheme_preprocess_comment(&$vars) {
  // Update 'reply' link to make it go to the comment form page anchor instead of some weird comment post page
  if (isset($vars['content']['links']['comment']['#links']['comment-reply'])) {
    $vars['content']['links']['comment']['#links']['comment-reply']['href'] = url('node/' . $vars['node']->nid, array('fragment' => 'comment-form', 'absolute' => TRUE));
  }
}
2
VictoriaChan

これはDrupal 6の問題だと思います:

Commentモジュールは hook_links() でリンクを作成します。カスタムモジュールで hook_links_alter() を使用してそれらを変更できます。

2
googletorp