Quick and dirty solution for jetpack subscription widget issue
-
Solution for <label for=”subscribe-field”> Issue
If you can’t wait for a solution, do one yourself and wait for an official update by jetpack
Replace in jetpack/modules/subscriptions.php
echo $args['before_title'] . '<label for="subscribe-field">' . esc_attr( $instance['title'] ) . '</label>' . $args['after_title'] . "\n";
with
echo $args['before_title'] . esc_attr( $instance['title'] ) . '</label>' . $args['after_title'] . "\n";
- The topic ‘Quick and dirty solution for jetpack subscription widget issue’ is closed to new replies.