• Resolved the_tim

    (@the_tim)


    I’m not sure when it happened exactly, but some recent WordPress update caused the submit button on my comment form to disappear. I’ve switched on Jetpack comments as a workaround, but would like to know how to get the default comment submit button back up.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter the_tim

    (@the_tim)

    Never mind, I found the answer here: Comment submit button disappeared after 4.2 update

    Adding the two lines below to functions.php inside here:

    function oxygen_commentform_args( $args ) {
    [...]
    $args = array(

    did the trick for me.

    'submit_button'        => '<input name="%1$s" type="submit" id="%2$s" class="%3$s" value="%4$s" />',
    'submit_field'         => '<p class="form-submit">%1$s %2$s</p>',

    thanks man! saved me hours of looking for the resolution!

    Hello dudes. I have the same problem. My theme is Oxygen and there is no comment button. I didn’t understand how you guys solve this problem. Can you explain me step by step?

    @the_tim thank you so much for your valuable answer. So simple explained what not even the codex does/have.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘comment submit button disappeared’ is closed to new replies.