Remove themeblvd_get_comment_form_args and replace with modified version
-
Topic
-
Hi Jason, I would like to alter the Comments area through an entire site, and I see I could change themeblvd_get_comment_form_args inside framework / includes / helpers.php
Since I want to upgrade and take advantage of the child theme system, I want to make all my changes, even though they are small, in the functions.php of my child (default) theme.
So I place this into my child functions.php file:
1) function my_get_comment_form_args() {
// do something… (this includes my small changes)2) remove_all_actions( ‘themeblvd_get_comment_form_args’ );
3) add_action( ‘themeblvd_get_comment_form_args’, ‘my_get_comment_form_args’ );
And nothing changes.
What am I doing wrong or not seeing here?
Thanks, -SS
- You must be logged in to reply to this topic.