Topic and reply URLs in notification messages
-
I love this plugin. We’re using bbPress for an event planning site, so being able to get everyone on the team copied on every topic and reply is great.
However, the URLs in the notification messages were not very useful. They linked to a page that displayed the topic or reply as an individual post. I wanted them to link directly to the topic or to the new reply within the topic.
Here are the changes that I made to the code where the shortcodes are replaced.
For the topic URL:
// $url = bbp_get_topic_permalink($post_id);
$url = bbp_get_topics_url() . $title;For the reply URL:
// $url = bbp_get_reply_permalink($post_id);
$url = bbp_get_reply_url($post_id);I hope this is useful for others.
- The topic ‘Topic and reply URLs in notification messages’ is closed to new replies.