Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Bozo problem

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.

Skip to toolbar