I want to edit the comments code and am not sure how to do this in the functions file. Any help would be appreciated.
ThemeShaper Forums » Power Blog
How do I edit the comments code
(6 posts)-
Posted 2 years ago #
-
Hi,
what would you like to change?
Chris
Posted 2 years ago # -
I need to add this <?php if (function_exists('gravbox')) gravbox(); ?> to the code
Posted 2 years ago # -
.. need to check this later today.
Chris
Posted 2 years ago # -
This would be something like this in your child theme's functions.php:
function my_gravbox() { if (function_exists('gravbox')) gravbox(); } add_action('comment_form', 'my_gravbox');Posted 2 years ago # -
Hi everyone - Pls excuse if I hijack (partially) the thread.
What should I do if I wanted the input box to appear always at the top of the comment queue?
I'd like to use the comments feature to do a sort of guest book - but forcing a user to have to scroll to the end of the posted comments doesn't seem very elegant...Kind regards
Paul
Posted 2 years ago #
Reply
You must log in to post.