Skip to content

Modify Subscription style of Jetpack

I just started to use the Subscription feature from Jetpack. I was checking how it looks like and I noticed that the checkbox and the text were in different lines. There was a space between checkbox and "Notify me of follow-up comments by email." and the same with "Notify me of new posts by email."

This bug, does not happen on all themes, so I can't guarantee that this is the solution for everybody. To fix it on my theme I changed the file "wp-content/plugins/jetpack/modules/subscriptions.php"

I updated lines 433, 434, 435:

[code lang="php"]
$str .= '

';

$str .= '';

$str .= '

';
[/code]

And the lines 439, 440, 441 too.

[code lang="php"]
$str .= '

';
$str .= '';
$str .= '

';
[/code]

Maybe this help you to fix this.

Matheus

Published inphpwordpress

5 Comments

  1. I'm having this exact problem.... I did what was listed here, but it didn't fix my problem. 🙁

  2. My Jetpack and WordPress are the latest ones available - I just switched over to a self-hosted site a week ago.

    Jetpack is 2.1.1 and WordPress is 3.5

  3. Maybe I didn't do it right because I can't see the line numbers? I edited that file through the WordPress dashboard through Plugin Editor.

  4. you could edit on an external editor (copy paste, edit, and copy paste back). Just to make sure.

    I`m not using latest jetpack update, I will update it asap and will let you know.

    Have a good one

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.