Forum Replies Created
-
Author
-
May 2, 2015 at 21:58 in reply to: HTML Tag for Page Titles Seems Broken for Buddypress & bbPress #57074bradhParticipant
Reflect Growth, the following code is an update to your fix that includes a dynamic call…
COPY CODE/* BuddyPress & bbPress: Page Title fix */ add_filter( 'bp_modify_page_title', 'my_page_title', 10); add_filter('bbp_title', 'my_page_title'); function my_page_title( $title) { return $title.' ' .get_bloginfo( 'name', 'display' ); }
May 2, 2015 at 21:52 in reply to: HTML Tag for Page Titles Seems Broken for Buddypress & bbPress #57072bradhParticipantSorry, correction listed below…
COPY CODE/* BuddyPress & bbPress: Page Title fix */ add_filter( 'bp_modify_page_title', 'my_page_title', 10); // Works for BP pages fine :) add_filter('bbp_title', 'my_page_title'); // Doesn't work for BB pages :( function my_page_title( $title) { return $title.' Reflect Growth'; // TODO: Change to dynamic WP func call. }
May 2, 2015 at 21:51 in reply to: HTML Tag for Page Titles Seems Broken for Buddypress & bbPress #57071bradhParticipantReflect Growth, the following code will correct your issue for bbPress pages…
COPY CODE/* BuddyPress & bbPress: Page Title fix */ add_filter( 'bp_modify_page_title', 'my_page_title', 10); // Works for BP pages fine :) add_filter('bb_title', 'my_page_title'); // Doesn't work for BB pages :( function my_page_title( $title) { return $title.' Reflect Growth'; // TODO: Change to dynamic WP func call. }
May 2, 2015 at 04:10 in reply to: HTML Tag for Page Titles Seems Broken for Buddypress & bbPress #57008bradhParticipantAn response to this thread would be most appreciated — the issue I have presented is limited to bbPress and I would like to correct the SEO of my website.
April 29, 2015 at 03:33 in reply to: HTML Tag for Page Titles Seems Broken for Buddypress & bbPress #56554bradhParticipantI should note that I am only having issues with bbPress.
April 29, 2015 at 03:11 in reply to: HTML Tag for Page Titles Seems Broken for Buddypress & bbPress #56552bradhParticipantI am encountering this problem but do not have the Yoast (or any) SEO plugin. Any idea what this could be?
bradhParticipantIf it is possible, I would request that the KLEO theme be better compatible with the BuddyPress Global Search Plugin (http://www.buddyboss.com/product/buddypress-global-search/). These search results are very powerful but the current integration of the design is not visually appealing.
September 1, 2014 at 16:39 in reply to: Footer text blinks and re-renders on hover of user icons #27251bradhParticipantHere is a screencast of the issue. I’m using Safari 7 for Mac.
Attachments:
You must be logged in to view attached files.August 29, 2014 at 18:30 in reply to: Activity Stream Not Showing Links In Blog Posts Correctly #27144bradhParticipant@sharmstr Thanks for the fix.
bradhParticipantA feature I would like would be to be able to link to Buddypress pages (such as the logged in member’s activity stream) through a button.
bradhParticipantRegarding my last post, I’ve installed this plugin, however the short codes do not work in links inside a button.
bradhParticipantI would like to be able to have the ability to add content to pages and links such as the name or username of a user.
bradhParticipantMy colours were not updating but now I have determined how to change this in the admin panel.
bradhParticipantAnother request: the correction of personal pronouns in the activity stream. IE: “User changed their profile picture” should become “User changed his profile picture” or “User changed her profile picture” depending on gender. This would require the addition of gender profile fields but perhaps that could be done from the theme admin panel?
bradhParticipantA small tweak requested: On the edit profile page, the field description should be listed directly under the field name, not after the visibility preferences. The most likely use of field descriptions is to describe what type of information is being sought and it’s present location does not make it immediately known.
-
AuthorPosts