• Resolved dtburleigh

    (@dtburleigh)


    I am hoping to set a pre-existing (theme) button class for the Testimonials submit button to match the rest of my site, but I cannot find where to set the class for just the button in the form editor.

Viewing 2 replies - 1 through 2 (of 2 total)
  • anonymized-13171256

    (@anonymized-13171256)

    There is no setting for that. You can use a filter instead.

    function my_testimonial_form_button_class( $class ) {
      // Replace 'button' with your theme class name.
      return "button";
    }
    add_filter( 'wpmtst_submit_button_class', 'my_testimonial_form_button_class' );

    Where to put that? Try Code Snippets.
    https://ww.wp.xz.cn/plugins/code-snippets/

    Thread Starter dtburleigh

    (@dtburleigh)

    Thanks for such a fast response, Chris!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Set css class for the submit button’ is closed to new replies.