Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Srini G

    (@srinig)

    The shortcodes don’t generate any paragraph tag to enclose the quote inside blockquote. Looks like you introduce the p tag for other quotes when you added/edited the quotes. Please check up.

    Thread Starter crocowhile

    (@crocowhile)

    I have just checked the mySQL entries using phpmyadmin and could not find any p tag. I have also tried to change theme and they are still there.
    Any idea?

    That’s the wpautop filter doing its “magic”. For a generic solution use a plugin to disable wpautop for that page, like this one.

    For a plugin specific solution, add:

    remove_filter( 'the_content', 'wpautop' );
    remove_filter( 'the_excerpt', 'wpautop' );

    to all the if cases in function quotescollection_inpost (quotes-collection.php lines 867-892)

    Thread Starter crocowhile

    (@crocowhile)

    Thank you. That was it.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Quotes Collection] The first quote of a series is formatted differently.’ is closed to new replies.