This theme changes the order in which WordPress’s wpautop filter is run. Changing this will negatively affect any plugin that displays content on a page or post such as Connections. A simple, and safe, option is to disable this code in the theme.
Look for this line in the theme’s function.php file:
add_action( 'init', 'shortcode_formatting' ); // prevent disruptive <p> tags and enable shortcodes in widgets |
Comment this code out by adding to forward slashes in front, like so:
//add_action( 'init', 'shortcode_formatting' ); // prevent disruptive <p> tags and enable shortcodes in widgets |
NOTE: This FAQ was written based on Risen 1.10 by Steven Gliebe