Replies
- Brajesh Singh on May 7, 2017 at 11:11 pm in reply to: [Resolved] Insert 'Member Type' in the Title of Member Directories #9021
Hi Lavish,
Thank you for using the BuddyPress Members Type plugin.
For member type directory title, since BuddyPress currently does not support it, you can put the following in your bp-custom.php to make it work
/** * Modify members directory title for the member types * * @param array $title title parts * * @return array */ function bpdev_modify_page_member_directory_title( $title ) { if ( ! bp_is_members_directory() ) { return $title; } $member_type = bp_get_current_member_type(); if ( ! $member_type ) { return $title; } $type_object = bp_get_member_type_object( $member_type ); $sep = apply_filters( 'document_title_separator', '-' ); $title['title'] = $title['title'] . ' ' . $sep . ' ' . $type_object->labels['singular_name']; return $title; } add_filter( 'document_title_parts', 'bpdev_modify_page_member_directory_title', 1000 );Hope that helps.
Hi Nitin,
Welcome to BuddyDev.
I had a look at your site.The problem is with the pagination links. It is incorrect.
It should be like this
http://new.ichars.com/members/ichars-admin/buddyblog/my-posts/page/2/Any chance you have a modified pagination/template for BuddyBlog.
Thank you
Brajesh- Brajesh Singh on May 5, 2017 at 4:11 pm in reply to: Custom gallery and media Search on buddypress/directory template #9012
Hi Nash,
I am sorry I could not offer the help in time. I am glad you figured it.The problem with lighbox is it needs the media to be displayable/playable.Though It is possible to embed the video player or the doc viewer, we haven’t added the support for it.
We are using Magnific Popup
http://dimsemenov.com/plugins/magnific-popup/If you see an easy way to do it, please let me know and I will support.
Thank you
Brajesh Hi Justin,
Please copy the contents of this fileAnd put it in yourtheme/buddyblog/posts.php
Does it work? It will need more changes for adding the editing link. Also, I have left the GhostPool’s pagination. I am not sure if that will work. Please do check that.
Thank you
Brajesh- Brajesh Singh on May 5, 2017 at 12:40 am in reply to: [Resolved] BuddyBlog shows "Uncategorized" when using tags #9005
Hi Gibby,
Thank you for posting.Are you using BuddyBlog to allow users create content in a new post type. If you are using it for blogging, you don’t have to worry about that setting.(You will see the check boxes like Category, tags, Post Format etc).
About Uncategorized, WordPress will always assign a category. The Uncategorized is the default category. That’s why you are seeing it.
Hi Devin,
I have finally tested it.I am sorry but the comments are working properly.
Since this is an old topic, I am closing it. Please open a new topic and provide me your site details. I will like to test it(you can give me guest access there).Thank you
BrajeshHi Justin,
I had a look at the pages again.In your theme you have a blog-template.php
Please post its content on paste bin and link me. I can extract some section from it and post the new posts.php for you.
Thank you
BrajeshThank you for marking it as resolved.
I have replied to your last question on the other thread
https://buddydev.com/support/forums/topic/removing-drop-box-from-activity-stream/
Regards
Brajesh- Brajesh Singh on May 4, 2017 at 10:21 pm in reply to: [Resolved] Removing Drop box from activity stream #8999
Hi Randlel,
Please use the following css#mpp-upload-dropzone-activity { display:none !important; }Hope that helps.
Hi Lulu,
Did you delete the old one? Also, is there any caching plugin active? if yes, Please clear it.And if that does not work too, Can you please link me to the screenshot of the screen?
Thank you
Brajesh