-
Don’t wrap define in a function.
-
@modemlooper replied to the forum topic Buddypress Stalker - Possible Additions? in the group Creating & Extending
Some of these suggestions are being added to a future release.
-
@modemlooper replied to the forum topic Struggling with child themes in the group Creating & Extending
No, do not copy. Create a blank functions.php file and add your own custom functions.
-
Some people are wanting the old my topics forum page. You can get at your past forum support topics via your profile activity page. Use the activity filter drop down to select forum topics or forum replies.

-
I know there are links but page is blank. It may get a dedicated page like before, I’m showing you how to get to that content now.
-
@modemlooper replied to the forum topic Struggling with child themes in the group Creating & Extending
BuddyPress still loads the core CSS you are better off creating a functions.php file in your child theme folder and enqueueing a custom.css file
`function add_my_stylesheet() {
wp_enqueue_style(‘custom’, […] -
@modemlooper replied to the forum topic Just looking for some guidance or suggestions.. in the group How-To and Troubleshooting
All of these things are possible with modification and existing plugins.
-
@modemlooper replied to the forum topic Can we use BuddyPress and charge members subscriptions? in the group Miscellaneous
Welcome to open source, you’re going to love it as there are many pieces of the code puzzle already created for you,especially with WordPress and BuddyPress. If you do get involved in open source projects please […]
-
@modemlooper replied to the forum topic How to create group? in the group How-To and Troubleshooting
Go to URL.com/groups and on this page is a create group button
-
@modemlooper replied to the forum topic Difference between bp_loggedin_* and bp_displayed_* functions in the group Creating & Extending
If it’s a members page use bp_core_fetch_avatar()
-
@modemlooper replied to the forum topic Buddypress WIDGET THEME in the group How-To and Troubleshooting
It’s not the widget theme this is a bug with BuddyPress CSS
-
@modemlooper replied to the forum topic Buddypress WIDGET THEME in the group How-To and Troubleshooting
It’s a bug. reported it: http://buddypress.trac.wordpress.org/ticket/3868
-
@modemlooper replied to the forum topic BuddyPress Mobile: editing the profile layout in the group How-To and Troubleshooting
The template files are on the plugin folder, you can change whatever you want.
-
@modemlooper replied to the forum topic Buddypress WIDGET THEME in the group How-To and Troubleshooting
You have something installed that is messing with the CSS. I activated this theme on my dev site http://dev.buddiphone.com.
I’m not getting the same issue. The widget theme is using the CSS and header from […]
-
@modemlooper replied to the forum topic bp_core_new_subnav_item won't create item under Profile section? in the group Creating & Extending
Get rid of user_has_access and site_admin_only
use:
if ( !is_user_logged_in() && !is_super_admin() )
return false; -
@modemlooper replied to the forum topic a single interface for all posting on a site in the group How-To and Troubleshooting
WordPress as well as BuddyPress has little hooks that when certain actions are accomplished it will run a function. So BuddyPress as hooked in the the post hook and posts an activity update about that blog post. […]
-
@modemlooper replied to the forum topic Auto generating blank member profiles in the group How-To and Troubleshooting
1) users can edit their own profile link is below the profile tab
2) post this topic in the followers plugin forum
3) when you create a user it bypasses the WordPress activation sequence. You will need to create […] -
@modemlooper replied to the forum topic a single interface for all posting on a site in the group How-To and Troubleshooting
Activity items are saved in a separate db table so they are completely disconnected from WordPress posts. The activity streams is meant more for quick short status updates.
-
@modemlooper replied to the forum topic Auto generating blank member profiles in the group How-To and Troubleshooting
Create a page in admin titled bp-mobile and add stuff as you would when creating a page
-
@modemlooper replied to the forum topic Unusual Problem with Favorites in the group How-To and Troubleshooting
Did you add these:
Set a custom user database table for BuddyPress (and WordPress to use):
define ( ‘CUSTOM_USER_TABLE’, $tablename );Set a custom usermeta database table for BuddyPress […]
- Load More