Tagged: buddyblog, buddypress, redirect, title
Hello all,
I am using latest WP + latest Buddypress + latest Buddyblog with custom Blog Post Type (Our trips).Everything is great, except 2 little problems:
1. Problem:
I set in buddyblog settings this: Where to redirect after creating/updating post? -> Archive page.
But it does not work, no redirect, only message with meassage done.. so user is still on /edit/ page in buddypress profile.2. Problem:
I set in buddyblog settings: Show single posts on user profile? To Yes and it works, but this nice post title in browser head:
https://buddydev.com/wp-content/blogs.dir/1/files/2013/07/buddyblog-better-page-titles.png
does not work for me. In my title there is “Our trips*” – Blog – “Username” – “Sitename”.
Not pretty post title name, only title name of my *Blog Post Type.Please, it is possible to help me with this? Thank you very much !
Hi trolinof,
Welcome to BuddyDev.
Please allow me to check this today and get back to you.
Thank you
BrajeshHi trolinof,
I have checked the plugin now.1. The redirect is working fien for me. I will suggest trying deactivating some of the plugins and check it.
2. Title:- It has 2 parts
a). Separator. What you say ‘|’ was the old separator specified by the theme. WordPress currently uses ‘-‘ as the default separator.
You can change this by the following code/** * Change WordPress page title separator. * * @param string $sep separator. * * @return string */ function buddydev_update_wp_page_title_separator( $sep ) { return '|'; } add_filter( 'document_title_separator', 'buddydev_update_wp_page_title_separator' );
b) Order of title parts:- This will need some modifications as the current order is posts|Blog|Username| Page-xyz|Sitename
This part needs improvement. We will push it in our next update.
Thank you
BrajeshHello Keymaster,
thanks for your reply and time 🙂1. Ok, I will try to disable plugins this week and I will let you know.
2. Great, but my main problem is, that there is no post title from user post.
Every user blog post is same:<Head> <title>Our trips - Blog - user - sitename</title>
Our trips = custom blog post type name.. no post title name and bad for my seo 🙁
I think it should be right as follows, but it does not work:
<Head> <title>My super trip to Japan - Blog - user - sitename</ title>
<Head> <title>Our trip to USA - Blog - user - sitename</ title>
Thank you very much again, I really appreciate it.
Hi trolinof ,
Thank you.Yes, I have noticed the title issue while testing. We will push an update this week and let you know.
Thank you
BrajeshHi trolinof,
My apologies. It got off our radar.I or @ravisharma will push an update by Sunday and let you know here.
Thank you
BrajeshHello Trolinof,
We have updated the plugin. Please download the latest plugin version from the following url and let me know if it works or not.
https://buddydev.com/plugins/buddyblog/
Thank you
Ravi
The topic ‘ [Resolved] BuddyBlog – head title and redirect problem’ is closed to new replies.