Not sure if anyone else has this issue but the page which is commentable has a few querystrings needed for displaying proper information, but whenever a comment is being submitted, it redirects to the same page but it does not maintain the parameter in the quesrystring. [no approval needed for comments]
Is there any way to either modify the process_comment tag or make it redirect to the exact same link ?
I have attempted redirecting upon success of comment processing but it will not fire...
Update:
For the time being, I have set the auto_redirect to 0 in functions.php -> insert_comment function
Is there any way to either modify the process_comment tag or make it redirect to the exact same link ?
I have attempted redirecting upon success of comment processing but it will not fire...
Update:
For the time being, I have set the auto_redirect to 0 in functions.php -> insert_comment function
- Code: Select all
extract( $this->get_named_vars(
array(
'auto_redirect'=>'0',
),
$params)
);