-
modemlooper replied to the forum topic Admin Bar and Spacing Issues in the group How-To and Troubleshooting 14 years, 2 months ago
@karmatosed I was going to put in a ticket for this issue. Maybe you could come up with a fix?
-
modemlooper replied to the forum topic Show two different static page to logged in and unregisted user in the group How-To and Troubleshooting 14 years, 2 months ago
This isn’t a buddyPress issue. Google this for WordPress. There may even be a plugin already.
If not you create an if statement on e same page template:
If user_is_logged_in {
}else{
}
-
modemlooper replied to the forum topic BP mobile different home page? in the group BuddyPress Mobile 14 years, 2 months ago
The page template route works you just have to set it up correctly. if you have a static page turn the page into page template and then duplicate this in the mobile theme folder by duplicating page.php and adding the same page […]
-
modemlooper replied to the forum topic Phantom Name autofills in Buddypress Registration Form in the group How-To and Troubleshooting 14 years, 2 months ago
I find this completely odd because BuddyPress does not auto create a username on the registration page from the database. Maybe you have mal-ware or something? Also it could be the browser auto filling.
-
modemlooper replied to the forum topic BP mobile different home page? in the group BuddyPress Mobile 14 years, 2 months ago
currently it will use whatever page you specify in the WordPress admin. I haven’t worked out a good solution to this.
-
modemlooper replied to the forum topic Replacing landing page in BP in the group How-To and Troubleshooting 14 years, 2 months ago
You choose a front page just like creating a static page in WordPress.
-
modemlooper replied to the forum topic Having a institution profile, like the Facebook Fan Pages in the group Creating & Extending 14 years, 2 months ago
So you basically want someone to develop a site for you? If you do not no how to develop a custom BuddyPress component then hire a developer.
-
modemlooper replied to the forum topic Having a institution profile, like the Facebook Fan Pages in the group Creating & Extending 14 years, 2 months ago
You can also create your own BuddyPress component that way things you post into it will work similar to Facebook’s activity stream.
-
modemlooper replied to the forum topic Asking the impossible? in the group How-To and Troubleshooting 14 years, 2 months ago
The answer is still the same. There is no OOTB way of doing this and it would require some coding skills to pull off right. If this isn’t something you could manage you might need to hire a developer.
-
modemlooper replied to the forum topic Asking the impossible? in the group How-To and Troubleshooting 14 years, 2 months ago
Didn’t you already ask this in another forum post?
As stated in other thread this is not currently possible OOTB. You would have to code your own plugin to handle this type of thing.
-
modemlooper replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 14 years, 2 months ago
The code I provided is a way to go but you need to figure out the correct if statement to make it work on sitewide activity and not a user profile.
-
modemlooper replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 14 years, 2 months ago
The loop has never been easy to pick out individual items. The filtering is mainly for type AND to top it off the user activity stream is the same stream as the sitewide just filtered to an individual
Maybe someone else can […]
-
modemlooper replied to the forum topic Adding Custom Fields to Groups in the group How-To and Troubleshooting 14 years, 2 months ago
@sirspacey I’m already working on a plugin for this. You can read the discussion here: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-add-fields-to-group-creation-with-group-extension-api-please-read/
-
modemlooper replied to the forum topic How can I create a moderator without giving him super admin? in the group How-To and Troubleshooting 14 years, 2 months ago
-
modemlooper replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 14 years, 2 months ago
Try something like this:
if ( $bp->current_component != $bp->activity->slug || $bp->current_component == $bp->members->slug )
-
modemlooper replied to the forum topic How can I create a moderator without giving him super admin? in the group How-To and Troubleshooting 14 years, 2 months ago
Only in groups cam users be moderators. In a groups admin you click manage members and promote or demote members to moderators.
-
modemlooper replied to the forum topic Existing WordPress users and BuddyPress usernames and URL issues in the group How-To and Troubleshooting 14 years, 2 months ago
why not post a notice to have users change their username using this plugin
Allow Your Users to Change their Username on your BuddyPress Based site
-
modemlooper replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 14 years, 2 months ago
oh the code above should be placed in a file bp-custom.php in the plugins folder
-
modemlooper replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 14 years, 2 months ago
Hmm getting somewhere…..
if ( $activity->type ==’activity_update’ && $activity->item_id == ’34’ ) {
the item_id number is the id of the group.
-
modemlooper replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 14 years, 2 months ago
Maybe someone else can suggest something. I’m not sure you can exclude something that specific in the activity loop.
I tried this code but it doesn’t exclude a specific group just each content type
`function bp_my_activity_filter( […]
- Load More
@modemlooper
Active 3 months, 2 weeks ago