Title: quotation mark problems
Last modified: August 22, 2016

---

# quotation mark problems

 *  Resolved [Tiibz](https://wordpress.org/support/users/tiibz/)
 * (@tiibz)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/quotation-mark-problems/)
 * Hi,
    I’m using the last theme of Customizr. i’ve a child theme, of course.
 * So, my problem is that :
    When someone reply or create a topic on my forum ([http://venenum.be/forum/](http://venenum.be/forum/))
   and customize the format, there is a problem because the theme remplace ” by »(
   exemple: <p style= »text-align: center; »><span style= »color: #ff0000; »>-‘e-
   </span></p>) so we can’t see the correct format of the post.
 * I tried to fix this by adding this on my child theme’s functions.php
 *     ```
       function replace_text($text) {
       $text = str_replace('«', '"', $text);
       $text = str_replace('»', '"', $text);
       return $text;
       }
       add_filter('the_content', 'replace_text');
       remove_filter('the_content', 'wptexturize');
       remove_filter('comment_text', 'wptexturize');
       remove_filter('the_excerpt', 'wptexturize');
       remove_filter('the_title', 'wptexturize');
       ```
   
 * But it doesn’t work and i always see » instead of ” …
 * How can I fix that please?
 * Sorry for my bad english .. Have a nice day and thank’s in advance 🙂

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * (@d4z_c0nf)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/quotation-mark-problems/#post-5935736)
 * Hi,
    look it’s not the theme doing that. I tried also with twentyfifteen, same
   thing. So I assume it’s a bbpress behavior. Also I see that when I’m admin I 
   see a message saying: `Your account has the ability to post unrestricted HTML
   content.` just above the reply form, so it’s bbpress which prevents to non authorized
   users to put html content. [https://bbpress.org/forums/topic/allow-html-from-users/](https://bbpress.org/forums/topic/allow-html-from-users/)
 *  Thread Starter [Tiibz](https://wordpress.org/support/users/tiibz/)
 * (@tiibz)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/quotation-mark-problems/#post-5935811)
 * Perfect !
    I followed your link and found the solution in it
 * Thanks 🙂
 *  [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * (@d4z_c0nf)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/quotation-mark-problems/#post-5935812)
 * You’re welcome 😉
    Glad you solved!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘quotation mark problems’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/customizr/4.4.24/screenshot.png)
 * Customizr
 * [Support Threads](https://wordpress.org/support/theme/customizr/)
 * [Active Topics](https://wordpress.org/support/theme/customizr/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/customizr/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/customizr/reviews/)

## Tags

 * [mark](https://wordpress.org/support/topic-tag/mark/)
 * [Quotation](https://wordpress.org/support/topic-tag/quotation/)

 * 3 replies
 * 2 participants
 * Last reply from: [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * Last activity: [11 years, 2 months ago](https://wordpress.org/support/topic/quotation-mark-problems/#post-5935812)
 * Status: resolved