-
modemlooper replied to the topic [Resolved] Is it possible to force BP to use page templates? in the forum How-to & Troubleshooting 12 years, 12 months ago
That type of template overriding wont work yet. You would need to create a buddypress.php file in your theme folder that contains your themes page.php code and then wrap the sidebar with an if is not register page statement.
https://codex.buddypress.org/developer/theme-development/a-quick-look-at-1-7-theme-compatibility/
-
modemlooper replied to the topic Spam Signups? in the forum Installing BuddyPress 12 years, 12 months ago
The reason for that is so many installs are not customized enough and that makes it easy for bots.
No system is safe from spam.
-
modemlooper replied to the topic Spam Signups? in the forum Installing BuddyPress 12 years, 12 months ago
Google around for options. http://wp.tutsplus.com/tutorials/security/best-practices-for-preventing-buddypress-spam-user-registrations/
-
modemlooper replied to the topic Admin Control in the forum How-to & Troubleshooting 12 years, 12 months ago
If you go to your messages and compose a new message, you have the option to send the notice to all users.
-
modemlooper replied to the topic Buddypress to Facebook Notifications in the forum Creating & Extending 12 years, 12 months ago
Closest thing you will get. No other plugin sends anything to Facebook. This plugin sends status updates. You can have it modified to send notices.
-
modemlooper replied to the topic Buddypress to Facebook Notifications in the forum Creating & Extending 12 years, 12 months ago
-
modemlooper replied to the topic [Resolved] Is there any codex documention on hooking in to the bp notifications? in the forum Installing BuddyPress 12 years, 12 months ago
buddypress/bp-members/bp-members-notifications.php
Look through this file to get an understanding.
-
modemlooper replied to the topic Is buddypress 1.7 going to have share icon to replace bp share it? in the forum How-to & Troubleshooting 12 years, 12 months ago
No need to update or replace, you can get it here. http://shop.taptappress.com/downloads/buddyshare
-
modemlooper replied to the topic Get group by creator_id? in the forum Creating & Extending 13 years ago
email me modemlooper @ gmail
-
modemlooper replied to the topic Get group by creator_id? in the forum Creating & Extending 13 years ago
@designnz you can use the groups loop and retrieve the group id’s and then pass those to the loop.
-
modemlooper replied to the topic Get group by creator_id? in the forum Creating & Extending 13 years ago
Depends on how you want to display results. I left it with less markup just to show a more pure function. I would put most html in your theme.
function bp_group_creator_groups( $user_id ) {global […]
-
modemlooper replied to the topic Get group by creator_id? in the forum Creating & Extending 13 years ago
There isn’t a function for that so you will have to access the database and get the info
place this in bp-custom.php
function bp_group_creator_groups( $user_id ) {global $wpdb;
$groups = […]
-
modemlooper replied to the topic Get group by creator_id? in the forum Creating & Extending 13 years ago
where are you displaying and what is the “post”
-
modemlooper replied to the topic Is Buddypress right for me and my project? in the forum Miscellaneous 13 years ago
no worries! 😉
-
modemlooper replied to the topic Redirect tab from mobile site back to main site don't work ! in the forum Miscellaneous 13 years ago
Are the files for the mobile site just static (no wordpress just html)?
If that is the case then just redirect to a subfolder
url.com/mobile
-
modemlooper replied to the topic Is Buddypress right for me and my project? in the forum Miscellaneous 13 years ago
My concerns about BuddyPress – it’s open source, which is risky to build a business around when you’re looking to customize it and add plugins.
BuddyPress IS WordPress AND is also open source and WP powers a […]
-
modemlooper replied to the topic Redirect tab from mobile site back to main site don't work ! in the forum Miscellaneous 13 years ago
use a browser cookie to save if link is clicked. Show the mobile or regular site based on cookie.
-
modemlooper replied to the topic Buddypress default theme in the forum Creating & Extending 13 years ago
You can turn off the responsive CSS
function my_bp_no_responsive() {remove_theme_support( 'bp-default-responsive' );
}
add_action( 'bp_head', 'my_bp_no_responsive');
-
modemlooper replied to the topic Fixed link that redirects to BuddyPress profile in the forum How-to & Troubleshooting 13 years ago
create your page with slug/url bp-profile and then use this code
- Load More
@modemlooper
Active 7 months, 3 weeks ago