By problue solutions on
How can i do this on a specific page or content type? Triggers and actions are useless because they apply to ALL comments, i need to redirect to a certain page after a comment is posted only on a specific page or node type. Any ideas?
Comments
Take a look at the rules
Take a look at the rules module, I found it quite flexible. http://drupal.org/project/rules
You could write a module that
You could write a module that acts on hook_comment, checks the node type and then, based upon the node type the comment is associated with, uses drupal_redirect_form to push the user to the new location.
Perhaps a module already exists (http://drupal.org/project/comment_redirect)?