Shortcode conflicts
When you define your shortcode, you might try one of a couple “if” statements to fix this issue, until you have time to create separate shortcodes. function cfgeo_shortcode( $atts, $content = “” ) { if (!isset($content) || stristr($content,’cfgeo’)!==FALSE){ // do short shortcode stuff here } else { // do ‘Container’ shortcode stuff here } return … Read more