Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author advanpix

    (@advanpix)

    Currently – no.

    I suppose WP-QuickLaTeX needs some adjustments to be compatible with bbPress.

    Let me know if you decide to do the modifications yourself.

    antonv

    (@antonv)

    Add this custom function to WP and render QuickLaTex in bbPress

    function bbp_quicklatex( $content ) {
            return quicklatex_parser( $content );
    }
    add_filter('bbp_get_reply_content', 'bbp_quicklatex', 10, 2);
    add_filter('bbp_get_topic_content', 'bbp_quicklatex', 10, 2);
    Plugin Author advanpix

    (@advanpix)

    Thank you Anton for your help!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Quick Latex with bbpress’ is closed to new replies.