Viewing 1 replies (of 1 total)
  • Plugin Author Marcel Pol

    (@mpol)

    Hi, untested, but this code should work. You can add it to functions.php or add it to an own plugin.

    function my_gwolle_gb_write( $output ) {
            $old = 'Absenden';
            $new = 'Nachricht senden';
            $html = str_replace( $old, $new, $output );
    
            //var_dump($html);
            return $output;
    }
    add_filter( 'gwolle_gb_write', 'my_gwolle_gb_write' );
Viewing 1 replies (of 1 total)

The topic ‘Change the "Send"-Button?’ is closed to new replies.