A candidate is someone who gets money from the rich and votes from the poor to protect them from each other
8608142Inactive
Ass loaded with gold climbs to the top of the castle
8608139Inactive
Between two stools one goes to the ground
8608127Inactive
Easier said than done ????? ???????, ??? ???????
I have had the same issue today. I am using WordPress 3.2.1 and BuddyPress 1.5.1.
I am running WordPress 3.2.1 and installed BuddyPress, activated it, ran the activation wizard accepting all the defaults and changed the theme to the default BuddyPress theme. All of my pages are no longer accessible or found (menu links return 404 not found error).
I did install and activate bbPress as well to cater for site wide forums. I de-activated this but it did not help fix the issue.
I have since de-acitvated BuddyPress but the issue remains.
I have created new pages since deactivating BuddyPress but this has not fixed the issue either.
Lost patience.
8608041Inactive
Every solution breeds new problems
8608035Inactive
Failure does not mean that you have abandoned me; It does mean that you must have a better idea
8608031Inactive
Every English poet should master the rules of grammar before he attempts to bend or break them
8608016Inactive
Half of the American people have never read a newspaper. Half never voted for President. One hopes it is the same half
8607978Inactive
Half of the American people have never read a newspaper. Half never voted for President. One hopes it is the same half
8607978Inactive
Every bullet has its billet
8607892Inactive
Drowning man will catch at a straw
8607891Inactive
All human actions have one or more of these seven causes: chance, nature, compulsion, habit, reason, passion, and desire
8607868Inactive
Better a little fire to warm us, than a great one to burn us!
8607862Inactive
Failure does not mean I have accomplished nothing; It does mean I have learned something
That can be easily accomplished with a group loop:
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-groups-loop/
The “Post New Topic” button just links directly to the group forum’s new topic form.
This is more of a WordPress question rather than a BuddyPress one.
Here’s a post that will get you started:
http://wpmu.org/8-wordpress-plugins-that-enable-posting-and-editing-from-the-front-end/
Add the following in your theme’s functions.php:
`remove_filter( ‘bp_get_activity_action_pre_meta’, ‘bp_dtheme_activity_secondary_avatars’, 10, 2 );`
Great stuff, cheers for the update @djpaul
As on https://buddypress.trac.wordpress.org/ticket/3747, we’ve fixed this in BuddyPress 1.5.2 and BuddyPress 1.6. 1.5.2 will come out same day as WordPress 3.3. If anyone needs this fix sooner, try to backport it from that ticket.
@pcwriter: thanks for your help, still having some trouble displaying. I think the trouble is lying within the
on the edit.php where all of these fields are displaying. I added a border to the wrapper just to see what was happening. It looks like the loop is actually looping the profile-wrap, even though I only have it for first name, middle name, last name. I tried removing the while loop all together, and then no fields are visible. Any ideas on what I can do here?
`#profile-wrap{
width:100%;
border:1px solid #dbdbdb;
}
#profile-wrap #edit-profile-right-column-firstname, #profile-wrap #edit-profile-right-column-middlename, #profile-wrap #edit-profile-right-column-lastname{
display:inline-block;
width:50%;
margin-right:2%;
}`
In my html, I’m referencing as shown below , but BP is just defaulting to the standard profile page formatting putting those 3 fields one below each other instead of on the same line. You can login again and see what I mean (un: jahmakan5 , pw:test)
`
<label for="”>
<input type="text" name="” id=”” value=”” />
<label for="”>
<input type="text" name="” id=”” value=”” />
<label for="”>
<input type="text" name="” id=”” value=”” />
`