Hi Stephen, thank you for your reply! 🙂
The user is indeed successfully subscribe, the button is working fine except for the redirection.
Sorry my message was lacking one useful info! I’m using it from a theme file’s code, using
echo do_shortcode('[bbp-single-tag id=19]');
(19 is a correct topic tag id)
It’s printing the same content that’s in the page I’m looking at (ex: in a forum I see the topics of the forum instead of the topics with the tag). It’s working if I update the query before calling the shortcode:
$wp_query = new WP_Query(array('post_type' => 'topic'));
I thought it should be working without having to add this but now it works so I’m happy!
Thanks for your help!