• Hi there! The plugin’s shortcode has been working smoothly with another shortcode inside the attribute “none_text” . I had another shortcode to return a list of default posts when no custom, handpicked post is given. Now it’s not working anymore. Any clue?

Viewing 1 replies (of 1 total)
  • Plugin Author Brecht

    (@brechtvds)

    Could be because of a theme update as we did not change anything related to that on our end. Try adding the following code to your theme’s functions.php file:

    function crp_output_shortcode( $output ) {
        return do_shortcode( $output );
    }
    add_filter( 'crp_output_list', 'crp_output_shortcode' );
Viewing 1 replies (of 1 total)

The topic ‘Nested Shortcode not working anymore’ is closed to new replies.