Search Results for 'buddypress'
-
AuthorSearch Results
-
November 18, 2011 at 5:17 pm #124647
@mercime
Participant@prasanth-p do clarify if you made a WP theme or a bp-default child theme. Solution would be different depending on scenario.
@JackVD do be more specific. BP/WP versions? Using bp-default child theme or a WP theme with BP template pack plugin? New install? Check out System and Server Requirements as well as WordPress configuration https://codex.buddypress.org/getting-started/before-installing/#system-server
November 18, 2011 at 5:09 pm #124646In reply to: How to remove www.HubTank.com sidebar of BBPress :D
@mercime
ParticipantYou’re welcome.
Which version of IE are you using? The bbPress (Forums), Members, and Groups Pages are full width and aligned in IE 8/9. You just might want to remove the negative left and right margins for div#item-list-tabs, div#subnav, and div.pagination as well as add top and bottom paddings to #forums tr. Check out modifications made in this tutorial for some more styling tips/corrections.
It’s your site’s Activity Pages that are not rendering properly. I suggest you open up activity/index.php and change
``
back to
``
as that center alignment breaks down layout of activity stream.November 18, 2011 at 4:25 pm #124643In reply to: How to activate
@mercime
ParticipantThe only bundled theme that comes with BuddyPress is the bp-default theme.
To activate a theme, go to Appearance > Themes > choose Canvas – and activate. For more information about your theme, please contact theme author/s.
November 18, 2011 at 4:05 pm #124642In reply to: Highlighting Activity Search Terms
chr313
Member@nahummadrid This is something that I would want as well. I’m going to try to develop this, I’ll post something if I get something working.
Thanks,
November 18, 2011 at 1:07 pm #124637Philipp
ParticipantSome more ideas?!
November 18, 2011 at 12:24 pm #124635broniors
MemberHi. I have found a similar thing. I have migrated a multisite to a new buddypress multisite installation.
Wordpress 3.2.1
Buddypress 1.5.1I imported a site from my old multisite (without buddypress). I found that when I allowed wordpress to create the users from the xml export data (ie import posts and it gives you the option to create the users) that all of the users could not see my sites in the admin bar and also all of their sites where not visible under my account sites.
I have found that if you create the users first (like a new user) and then assign the posts to the new users … they can operate normally (can see sites in admin bar and all sites are visible under my account).
November 18, 2011 at 5:33 am #124630In reply to: Changing Widths
pcwriter
ParticipantFirst, set the entire shebang to fill the screen with a maximum width of 100% like so:
`body {
max-width:100%;
}`Then, set the page container div element (it sits inside the body element) to the smaller width you want and set the margins to auto so the content gets centered on-screen like so:
`div#container {
width:60%;
margin:auto;
}`EDIT: you may want to set the container div to a fixed width instead, for example:
`div#container {
width:900px;
margin:auto;
}`November 18, 2011 at 2:04 am #124626In reply to: Forum not working ..
@mercime
ParticipantNovember 17, 2011 at 10:14 pm #124619In reply to: How to edit the Buddypress default theme navigation?
aces
ParticipantIf your child theme hasn’t got a functions.php file then create your own in a simple text editor such as notepad++.
The first line should be just “ with nothing after it. ( The same php tags as the bp-custom.php file )
Then place something like the above nav menu function and action in between the tags….
For more info check the codex link above or http://justintadlock.com/archives/2010/06/01/goodbye-headaches-hello-menus
November 17, 2011 at 9:36 pm #124617In reply to: How to edit the Buddypress default theme navigation?
dude
Memberoh right so this is the way to add my own secondary menu !! great
sorry to be a pain aces, is there any particular place to nest this..? or am I deleting / replacing existing code..?
I haven’t copied a functions.php file to my child theme yet..I guess I should do this first and make the edits in there right !
November 17, 2011 at 7:11 pm #124614In reply to: Profile Page Elements Edit
ryans213
Memberif people need more information to give feedback, I am using WPMU 3.2.1., BuddyPress default theme, with s2member.
November 17, 2011 at 6:49 pm #124613In reply to: Multi-language edition
Eddie
ParticipantIt would really be great to let our users chose which language they’d like to see our website on. It’s a pitty that such a great software as BuddyPress lacks this option that many others consider as basic.

There’s always numerous Google translate implementations, but that just isn’t what we need.
I’m guessing some hack could be made with an XProfile field called “language” and a hook to WordPress profile language settings. Unfortunately, I’m not able to code it by myself.
November 17, 2011 at 6:44 pm #124612iblbuilder
MemberHi Andrea
Yes, I have an existing 3.2.1 multisite network. I added buddypress a week ago and am still tweaking the changes. I received support tickets from members who had signed up to just to get a username for commenting, how they could add a blog. I realised that the “my sites” menu in buddypress toolbar does not show for members without a blog.
So I cannot see a way to allow existing members without a blog to add one, which seems really odd.
November 17, 2011 at 6:01 pm #124610In reply to: Cant get 1.5 site wide forum to work.
junglejinge
MemberNovember 17, 2011 at 5:36 pm #124609In reply to: Remove the “DashBoard” from the adminbar
aces
Participantbp-custom.php goes into the plugins folder immediately under /wp-content/plugins/ not in a theme folder/directory….
November 17, 2011 at 5:19 pm #124607In reply to: How to edit the Buddypress default theme navigation?
aces
Participant( https://codex.wordpress.org/Navigation_Menus )
In your child theme’s functions.php file:
`function register_my_menus() {
register_nav_menus( array(
‘primary’ => __( ‘Header Navigation’ ),
‘secondary-menu’ => __( ‘Alternative Menu’ ),
‘another-menu’ => __( ‘Another Menu’ )
) );
}
add_action( ‘init’, ‘register_my_menus’ );
`November 17, 2011 at 5:02 pm #124606In reply to: How to edit the Buddypress default theme navigation?
dude
MemberThanks for that!
I just deleted the bp-mobile plugin due to technical problems and I’m back with just a single menu now..? (primary) seems like bp-mobile creates a secondary theme location. I guess I could just use the plugin to create the secondary location / menu and choose my custom logged-out menu from the drop down right?
November 17, 2011 at 4:37 pm #124603In reply to: Comment (Reply) button problem: Page not found!
allwest
MemberI deleted buddypress all togehter and reinstalled with the standard theme and receive the same message.
November 17, 2011 at 4:00 pm #124600In reply to: Group forums won’t uninstall
Sandra l***
Participant@mercime That fixed my problem. Thank you so much!
November 17, 2011 at 3:53 pm #124598chr313
MemberThank you @johnjamesjacoby @DJPaul for the replys, it’s a clean install with only the style.css customized in a child theme. 1.5.1 bp, 3.2.1 wp. No plugins installed besides bp and bbpress which I installed using the site wide forums selection within forums settings in buddypress. Forum updates or new forum posts do not show in activity stream at all.
Mentions and favorites for the forum are not showing on a user profile or activity stream as well, other wise mentions and favorites work with update posts. So mentions and favorites function just not within forums. This makes me believe it has to do with bbpress. Otherwise buddypress is working as it should.
What type of database update would I need to preform on bp if that’s the case? Any other solutions?
Thank you for your help all,
November 17, 2011 at 3:29 pm #124596James Carroll
MemberI, too, would appreciate such a feature.
@hnla, @mercime, How do I add a tag a forum post? I’d like to tage this one, but I don’t see how. Also, I’d like to “follow” or “subscribe” to this forum post, but I don’t see how. Will you please show me the way? (I am posting this “me too” reply in hopes that it will trigger a “follow” or “subscribe” function.)
Thanks!
P.S. I believe bug 1949 [1] relates to this issue; if I am mistaken, please let me know. Thank you!
November 17, 2011 at 1:19 pm #124593In reply to: Google reader and sitewide activity
Boone Gorges
KeymasterI’m afraid I don’t know how Google selects which RSS feed to display. It probably just picks the first one it finds. Make sure there is a line like the one that @modemlooper suggests, and make sure it appears high in header.php – immediately after the `
` tag. November 17, 2011 at 1:10 pm #124592Paul Wong-Gibbs
KeymasterI believe the best way is to not update BPDefault in 1.7, keep it bundled with core (for now), and ship an all-new theme. BPDefault is pretty old now.
November 17, 2011 at 11:48 am #124589In reply to: Changing Tab Text Colour
pcwriter
ParticipantIf your theme does not have a custom css area, you’ll need to edit your theme’s style.css file. Add the following to that file and adjust the color to suit:
`div.item-list-tabs ul li.selected a, div.item-list-tabs ul li.current a {
color:#212121;
}`November 17, 2011 at 10:21 am #124586iblbuilder
MemberPaul – should I be adding this to the bug tracker, or is it specific to my site?
Anyone – how do your existing members without a blog add one? I have more than 200 members who did not have blogs (hust for commenting), but now I have added buddypress several want to get more involved, and until I find out how they can add a blog, they can’t!
-
AuthorSearch Results