-
modemlooper replied to the topic BPAZ in the forum Requests & Feedback 11 years, 2 months ago
BuddyPress would need some core changes to make privacy work on things like individual activity items. You can get some type of privacy by blocking pages. BuddySuite has a few options for users to block certain profile pages to friends only.
-
modemlooper replied to the topic Why are display name char amounts not limited? in the forum How-to & Troubleshooting 11 years, 2 months ago
You still need to use a maxlength on input for the user. If you want to block a bypass then you can filter
http://etivite.com/api-hooks/buddypress/trigger/apply_filters/xprofile_data_value_before_save/
-
modemlooper replied to the topic Plugin Dev – Group Admin Add subnav form nonce fails in the forum Creating & Extending 11 years, 2 months ago
all a nonce does is send a parameter in the POST and then on the back end it verifies the value. There isn’t much that would cause an error. Where and what is the error?
-
modemlooper replied to the topic Why are display name char amounts not limited? in the forum How-to & Troubleshooting 11 years, 2 months ago
If you don’t want to edit core files then create the same files in your theme folder with the same folder structure and those files will override BP.
copy file from:
buddypress/bp-templates/bp-legacy/buddypress/members/single/profile/edit.php
to:
your-theme-folder/buddypress/members/single/profile/edit.php
-
modemlooper replied to the topic Why are display name char amounts not limited? in the forum How-to & Troubleshooting 11 years, 2 months ago
open file edit.php in buddypress/bp-templates/bp-legacy/buddypress/members/single/profile/edit.php
find:
<?php if ( ‘textbox’ == bp_get_the_profile_field_type() ) : ?>
<label for=”<?php bp_the_profile_field_input_name(); ?>”><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( ‘(requi…[Read more]
-
modemlooper replied to the topic Plugin Dev – Group Admin Add subnav form nonce fails in the forum Creating & Extending 11 years, 2 months ago
A form only needs one nonce, are you trying to add all these to one form?
-
modemlooper replied to the topic Guidance with Streaming Data from Facebook etc.. in the forum Third Party Plugins 11 years, 2 months ago
Those two plugins are the only known facebook integration plugins. Facebook does not allow you to pull content from it’s site. You can only post to Facebook
-
modemlooper replied to the topic Buddypress Activity Hashtag Plugin – Tags Go to Blank Page in the forum How-to & Troubleshooting 11 years, 2 months ago
HashBuddy or the outdated plugin?
-
modemlooper replied to the topic difference between get_header and get_header buddypress? in the forum How-to & Troubleshooting 11 years, 2 months ago
if you dont have header-buddypress.php file then it falls back to the default header.php
-
modemlooper replied to the topic Easy way to add tab to profile in the forum Creating & Extending 11 years, 2 months ago
-
modemlooper replied to the topic Private Portal with BuddyPress in the forum Creating & Extending 11 years, 3 months ago
bp_is_profile is used to test if its a profile page. try that in a conditional.
-
modemlooper replied to the topic Need to resize avatar images to 50×50 in the forum How-to & Troubleshooting 11 years, 3 months ago
Avatar specific settings can be changed:
define ( ‘BP_AVATAR_THUMB_WIDTH’, 50 );
define ( ‘BP_AVATAR_THUMB_HEIGHT’, 50 );
define ( ‘BP_AVATAR_FULL_WIDTH’, 150 );
define ( ‘BP_AVATAR_FULL_HEIGHT’, 150 );
define ( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’, 640 );
define ( ‘BP_AVATAR_ORIGINAL_MAX_FILESIZE’, $max_in_kb );
define ( ‘BP_AVATAR_DEFAULT’, $img_url…[Read more] -
@modemlooper updated the bp_member_user_id() page, on the BuddyPress Codex 11 years, 3 months ago
Description
Outputs ID number of user. If placed outside of a Members loop, it will default to the ID of the logged in user.Usage
Parameters
None.Example
To get the current user’s […]
-
modemlooper replied to the topic Allow all characters in a PHP “explode” function in the forum Creating & Extending 11 years, 3 months ago
In that plugin does it have an admin option you enter for specific extensions? Also, it’s a bit dangerous to allow everything accept a few file types. Could open up a security flaw.
-
modemlooper replied to the topic Allow all characters in a PHP “explode” function in the forum Creating & Extending 11 years, 3 months ago
or use pathinfo() to get extension
-
modemlooper replied to the topic Allow all characters in a PHP “explode” function in the forum Creating & Extending 11 years, 3 months ago
shouldn’t you check type at the upload point? This is an example not tested
$array = array( one, two, three );
$type = $_FILES[‘upload_file’][‘type’];if ( in_array( $type, $array ) ) return false;
-
modemlooper replied to the topic How web browser knows that specific select field was selected in the forum How-to & Troubleshooting 11 years, 4 months ago
browser cookie is saved when you select and then if cookie exists BP displays that content
-
modemlooper replied to the topic Verified accounts? in the forum Creating & Extending 11 years, 4 months ago
LOL auto correct in osx grrr!
-
modemlooper replied to the topic Verified accounts? in the forum Creating & Extending 11 years, 4 months ago
You can still get plugins after a donation http://shop.taptappress.com
-
modemlooper replied to the topic Private BP without a plugin in the forum How-to & Troubleshooting 11 years, 4 months ago
like I said all that header info breaks page when you try to do a redirect before page load. You can always do a javascript redirect but that is after page load and not any faster than using one of the plugins. You maybe able to remove the header comment text.
- Load More
@modemlooper
Active 9 months, 4 weeks ago