Viewing 2 replies - 1 through 2 (of 2 total)
  • 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?

    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.