Yeah, when I looked at the source code I noticed that "
‘s were being used instead of "
‘s only on the checkbox and value attributes.
I don’t know if people are still having this problem, but the same thing happened to me and I used a simple hack to fix it. So for anyone who wants a solution, here goes:
Open the ‘bb-includes/template-functions.php’ file
Go to line 1228 where it reads: echo attribute_escape( $label[2] );
Replace it with: echo str_replace('"','"',attribute_escape( $label[2] ));
The problem I found was that it was using "‘s instead of “‘s for some unexplainable reason, so I just used a simple str_replace() function to solve the problem. I hope this helps some people, I know the last post was 3 months ago.