Title: [Plugin: Super Simple Quotes] Displaying punctuation
Last modified: August 20, 2016

---

# [Plugin: Super Simple Quotes] Displaying punctuation

 *  [andersongirl57](https://wordpress.org/support/users/andersongirl57/)
 * (@andersongirl57)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/plugin-super-simple-quotes-displaying-punctuation/)
 * Whenever there is any punctuation in the quote itself, particularly apostrophes
   and quotation marks, a back slash appears. I tried using html code instead of
   the typed punctuation mark, but it still does it. Can you fix this?
 * [http://wordpress.org/extend/plugins/super-simple-quotes/](http://wordpress.org/extend/plugins/super-simple-quotes/)

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

 *  [deadelvis](https://wordpress.org/support/users/deadelvis/)
 * (@deadelvis)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/plugin-super-simple-quotes-displaying-punctuation/#post-2176989)
 * Love the simplicity of this plugin (tested quite a few before picking this one)…
   but am experiencing the exact same issue here! Backslashes before special char
   show both on admin side (input field) and display side (widget).
 * Please please please fix?
 *  [deadelvis](https://wordpress.org/support/users/deadelvis/)
 * (@deadelvis)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-super-simple-quotes-displaying-punctuation/#post-2177113)
 * Since author doesn’t seem to care about it anymore.. here’s the fix…
 * Replace:
    `<td><textarea name="super_simple_quotes[quotes]" cols="150" rows="
   25"><?php echo implode("\n", $options['quotes']) ?></textarea></td>` with: `<
   td><textarea name="super_simple_quotes[quotes]" cols="150" rows="25"><?php echo
   stripslashes(implode("\n", $options['quotes'])) ?></textarea></td>`
 * Replace:
    `$input['quotes'] = explode("\n", wp_filter_nohtml_kses($input['quotes']));`
   with: `$input['quotes'] = explode("\n", stripslashes(wp_filter_nohtml_kses($input['
   quotes'])));`

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

The topic ‘[Plugin: Super Simple Quotes] Displaying punctuation’ is closed to new
replies.

 * ![](https://s.w.org/plugins/geopattern-icon/super-simple-quotes.svg)
 * [Super Simple Quotes](https://wordpress.org/plugins/super-simple-quotes/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/super-simple-quotes/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/super-simple-quotes/)
 * [Active Topics](https://wordpress.org/support/plugin/super-simple-quotes/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/super-simple-quotes/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/super-simple-quotes/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [deadelvis](https://wordpress.org/support/users/deadelvis/)
 * Last activity: [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-super-simple-quotes-displaying-punctuation/#post-2177113)
 * Status: not resolved