How I can change path from /comment/reply/11#comment-form to /node/$node->nid/#comment-form in node $links?
|
feedback
|
|
I'm guessing this is a Drupal 6 issue: The Comment module create the links with hook_links(). You can alter those in a custom module using hook_links_alter(). | ||||
|
feedback
|
|
In Drupal 7, you can add something like this to your template.php:
| ||||
|
feedback
|
protected by Community♦ Jan 6 at 11:22
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
/node/nid/#comment-forminstead of/comment/reply/cid#comment-form? I don't think just changing the path in the link is going to still get you to the comment form. – Chaulky Mar 14 '11 at 2:14