Display a text message if the shortcode is found?
Try this: <article> <div class=”entry-content”> <?php $current_user = wp_get_current_user(); if ( isset( $current_user->user_email ) ) { echo ‘<p>’ . sprintf( __( ‘%s, here is your client area’, ‘my-theme’ ), $current_user->display_name ) . ‘:</p>’; $output = do_shortcode( ‘[picu_list_collections email=”‘ . $current_user->user_email . ‘”]’ ); // the shortcode returns an empty <ul> tag, if there is no … Read more