Title: Page Title &#8211; Missing Website Title
Last modified: April 19, 2017

---

# Page Title – Missing Website Title

 *  Resolved [bmcconach](https://wordpress.org/support/users/bmcconach/)
 * (@bmcconach)
 * [9 years ago](https://wordpress.org/support/topic/page-title-missing-website-title/)
 * For starters, this is one amazing plugin! Offering a Buddypress-esque feel to
   my non-Budypress site is exactly what the doctor ordered!
 * I am currently running into one slight snag though. When navigating to the “Messages”
   page, the title of the website is shown as “Messages | ” instead of the intended“
   Messages | Site Name”.
 * I’ve found the code manipulating this within the functions.php, but do not see
   anything that would enable me to change this to the desired effect.
 * Any help would be most appreciated!

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Contributor [Ismail](https://wordpress.org/support/users/elhardoum/)
 * (@elhardoum)
 * [9 years ago](https://wordpress.org/support/topic/page-title-missing-website-title/#post-9046796)
 * Hi,
 * Thank you for that!
 * I believe there is this filter you can use `bbpm_get_dynamic_page_title` to add
   the site tag name after the messy document title:
 *     ```
       add_filter('bbpm_get_dynamic_page_title', function($title){
           return "{$title}Site Name";
       }, 10);
       ```
   
 * (the code should be added to child theme’s functions file or a custom plugin)
 * I haven’t tested it but I am confident it should work. Let me know.
 * Thanks,
    Samuel
 *  Thread Starter [bmcconach](https://wordpress.org/support/users/bmcconach/)
 * (@bmcconach)
 * [9 years ago](https://wordpress.org/support/topic/page-title-missing-website-title/#post-9046930)
 * Samuel,
 * Thank you so much for your prompt reply!
 * Using your code, I was able to achieve the desired effect. I did modify it slightly
   so if my site’s name changes in the future, it will update automatically.
 * That code, for anyone interested:
 *     ```
       add_filter('bbpm_get_dynamic_page_title', function($title){
           return "{$title}".get_bloginfo( 'name' );
       }, 10);
       ```
   
 * Again, thank you for such a quick response and an amazing plugin!
    -  This reply was modified 9 years ago by [bmcconach](https://wordpress.org/support/users/bmcconach/).

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Page Title – Missing Website Title’ is closed to new replies.

 * ![](https://ps.w.org/bbp-messages/assets/icon-256x256.png?rev=1365804)
 * [bbPress Messages](https://wordpress.org/plugins/bbp-messages/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/bbp-messages/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/bbp-messages/)
 * [Active Topics](https://wordpress.org/support/plugin/bbp-messages/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bbp-messages/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bbp-messages/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [bmcconach](https://wordpress.org/support/users/bmcconach/)
 * Last activity: [9 years ago](https://wordpress.org/support/topic/page-title-missing-website-title/#post-9046930)
 * Status: resolved