Search Results for 'buddypress'
-
AuthorSearch Results
-
May 12, 2015 at 10:42 pm #239009
In reply to: Does BuddyPress works?
luketapis
ParticipantSorry I didn’t want to be rude, there is so many scams online so I wasn’t sure.
Thank you for your links. I’m studding it now.
In required section I found this information:
WordPress should be installed manually i.e. via FTP, cpanel, etc. and NOT via webhost scripts (fantastico, softalicious, etc.)which bring about numerous issues when BuddyPress is activated.
I use zyma.com for hosting my website. I downloaded WP in my cpanel, but when I click on WP (in my cpanel) it redirect me to…softalicious.
Is that mean that I cannot use BuddyPress correctly?May 12, 2015 at 10:23 pm #239007In reply to: Does BuddyPress works?
Henry Wright
ModeratorIs BuddyPress really works?
It sure does 🙂
May 12, 2015 at 10:14 pm #239005In reply to: Does BuddyPress works?
shanebp
ModeratorDid you read this:
May 12, 2015 at 8:22 pm #238996In reply to: [Resolved] Posting Links BP Activity Stream
danbp
ParticipantI was unable to reproduce this on a single install with Twenty Twelve.
Simply copy/pasted your link into the what’s new form, and published.
Are yu sure that group admin hasn’t tried to use a<a>tag ?FYI read also here:
https://buddypress.trac.wordpress.org/ticket/6430
https://buddypress.trac.wordpress.org/ticket/6432May 12, 2015 at 4:17 pm #238984In reply to: No Sidebar on Profile Page
maddogprod
ParticipantIn case anyone has this problem, here’s how I fixed it (I’m still not sure why it wouldn’t work as intended automatically):
– I registered the sidebar in fucntions.php
– Added a copy of page.php to the child theme directory: /wp-content/themes/wellness/buddypress/members/single using the name: index.php
– Where the code in that page calls the Sidebar, I changed it to:
<?php dynamic_sidebar( 'new_members_area' ); ?>which of course includes the registered name of the sidebar– For some reason it wasn’t picking up the Sidebar CSS so I enclosed it in a div:
<div id="sidebar"> <?php dynamic_sidebar( 'new_members_area' ); ?> </div>-VOILA!
May 12, 2015 at 3:07 pm #238981In reply to: Minimum password strength
mase857
ParticipantHenry Wright gave a good explanation, that is the exact same way that I implemented user password and validation on my php classifieds website, which used to be a wordpress site. Can buddypress work easily with a PHP website that is not wordpress-based? It would be a cool feature to add.
May 12, 2015 at 2:55 pm #238980In reply to: How to edit the blog display
shanebp
ModeratorYou can create template overloads of the files you want to change.
The single group templates are here:
buddypress\bp-templates\bp-legacy\buddypress\groups\single\May 12, 2015 at 7:52 am #238971In reply to: Minimum password strength
Security
Participantplus found this as well after some googling
https://github.com/mgmartel/BuddyPress-Password-Strength-Meter/blob/master/bp-password-strength-meter.phpMay 12, 2015 at 7:37 am #238970In reply to: Minimum password strength
Security
Participant@@lisame
Try this i hope this resolves the issue out
limit-min-max-characters-buddypress-registration-formMay 12, 2015 at 1:48 am #238964In reply to: Editing group role permissions
shanebp
ModeratorCreate a template overload of this file:
buddypress\bp-templates\bp-legacy\buddypress\groups\single\activity.phpIn the overload, change this:
<?php if ( is_user_logged_in() && bp_group_is_member() ) : ?>to this:
<?php if ( is_user_logged_in() && bp_group_is_admin() ) : ?>May 12, 2015 at 12:10 am #238959In reply to: [Resolved] change bp_activity_content_body
Ruhul Amin
Participant@modemlooper, Can you please have a look this problem https://buddypress.org/support/topic/how-to-add-a-title-for-activity-post-2/#post-238958
May 11, 2015 at 11:26 pm #238955modemlooper
ModeratorMay 11, 2015 at 9:14 pm #238950In reply to: HIde BuddyPress and bbPress items from guests
caniwigirl
ParticipantHi @minglonaire,
The forum part is easy because that is built into bbPress in the first place. If you read the “Getting Started with bbPress” page https://codex.bbpress.org/getting-started-with-bbpress/ you will note that there are three settings for forum visibility:
Public – Anyone can see these forums
Private – Only logged in registered users can see these forums
Hidden: Only Moderators/Admins can see these forumsI made my base forum (which is actually a category) Private, and the majority of sub-forums Public – but tied into the BuddyPress groups so you required membership to each particular group to access each of the forums. This only works if BuddyPress is hidden from logged out users.
If you don’t want to use BuddyPress groups… just make all your forums Private.
Note that BuddyPress defines Public, Private and Hidden slightly differently than bbPress
I had issues with my theme not displaying Hidden Groups to the people it should… If this is an issue for you, check out another thread… https://buddypress.org/support/topic/hidden-groups-and-forums-not-showing-for-members-of-them/
All the best! 🙂
May 11, 2015 at 8:36 am #238927In reply to: Minimum password strength
Lisa
ParticipantI tried your code and it does not work for password strength, when users try to change their password on the front-end.
I also tried to change it to signup_password, but that also does not work. It seems to only work on signup and not once members are logged in and try to change their password. This is the code I used.
function my_validation() { global $bp; if ( !empty( $_POST['signup_password'] ) ) if ( strlen( $_POST['signup_password'] ) < 9 ) $bp->signup->errors['signup_password'] = __( 'Your password is not strong enough and needs to be at least 9 characters long', 'buddypress' ); } add_action( 'bp_signup_validate', 'my_validation');May 11, 2015 at 5:20 am #238923In reply to: Custom Post Type Support for Activity
mvp13585
ParticipantHi,
i have similar problem.
i have a custom post type “dwqa-question”i try the above code but the activity use default output.
here my code in bp-custom :
//dwqa-question function dwqa_question_activity_args() { if ( ! bp_is_active( 'activity' ) ) { return; } add_post_type_support( 'dwqa-question', 'buddypress-activity' ); bp_activity_set_post_type_tracking_args( 'dwqa-question', array( 'component_id' => 'activity', 'action_id' => 'new_dwqa_question', 'bp_activity_admin_filter' => __( 'Published a new Question', 'text-domain' ), 'bp_activity_front_filter' => __( 'Question', 'text-domain' ), 'contexts' => array( 'activity', 'member' ), 'activity_comment' => true, 'bp_activity_new_post' => __( '%1$s posted a new Question: <a href="%2$s">[Question]</a>', 'text-domain' ), 'bp_activity_new_post_ms' => __( '%1$s posted a new Question: <a href="%2$s">[Question]</a>, on the site %3$s', 'text-domain' ), 'position' => 101, ) ); } add_action( 'init', 'dwqa_question_activity_args' ); function dwqa_question_include_post_type_title( $action, $activity ) { if ( empty( $activity->id ) ) { return $action; } if ( 'new_dwqa_question' != $activity->type ) { return $action; } preg_match_all( '/<a.*?>([^>]*)<\/a>/', $action, $matches ); if ( empty( $matches[1][1] ) || '[Question]' != $matches[1][1] ) { return $action; } $post_type_title = bp_activity_get_meta( $activity->id, 'post_title' ); if ( empty( $post_type_title ) ) { switch_to_blog( $activity->item_id ); $post_type_title = get_post_field( 'post_title', $activity->secondary_item_id ); // We have a title save it in activity meta to avoid switching blogs too much if ( ! empty( $post_type_title ) ) { bp_activity_update_meta( $activity->id, 'post_title', $post_type_title ); } restore_current_blog(); } return str_replace( $matches[1][1], esc_html( $post_type_title ), $action ); } add_filter( 'bp_activity_custom_post_type_post_action', 'dwqa_question_include_post_type_title', 10, 2 );do you know what’s wrong with this code?
May 10, 2015 at 7:19 am #238913In reply to: Minimum password strength
Lisa
ParticipantI tested it on my site and on a clean installation and both do not work on members/member_name/settings/ . Users do see a password strength meter, but can still change their password into something simple as 1 or A. How did you get it to work on members/member_name/settings/?
With WordPress there are many plugins (none that work with buddypress frond-end settings page) that set a minimum strength for passwords. Such as Login Security Solution and iThemes Security. You can force users to change their password or set an amount of days when users must change their password.
It seems like a major security problems (that has existed for a few years) that Buddypress allows simple passwords such as 1 and A on members/member_name/settings/
May 10, 2015 at 4:45 am #238910In reply to: Installed Buddypress but several things won’t work.
DewFL
Participant@modemlooper thanks for the suggestion, I will change that from “register” to something else 🙂 I have tried changing the url on permlinks to a handful or different possibilities and still I get the 404 page, I have also tried all suggestions at: https://buddypress.org/support/topic/the-requested-url-register-was-not-found-on-this-server/ including adding a .htaccess file which was not in my WordPress root directory for some reason, I have also tried enabling mod_rewrite in Apache to no avail, I’m stocked 🙁
May 10, 2015 at 4:16 am #238909In reply to: Automatic links in profile fields
Klosurdo
ParticipantThese are the errors I receive when trying to activate buddypress
Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in /home1/cmpgorg/public_html/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php on line 28
Fatal error: Cannot redeclare kleo_bp_replace_placeholders() (previously declared in /home1/cmpgorg/public_html/wp-content/themes/kleo/lib/theme-functions.php:1894) in /home1/cmpgorg/public_html/wp-content/themes/kleo/lib/plugin-buddypress/config.php on line 105
May 10, 2015 at 3:50 am #238905In reply to: Automatic links in profile fields
Klosurdo
ParticipantOk got most of my site back however, when I activate buddypress I go to a white screen. Any suggestions
May 10, 2015 at 2:51 am #238904In reply to: [Resolved] change bp_activity_content_body
shavonn4prez
Participantbtw- that’s Buddypress Follows that I get the following IDs from.
May 9, 2015 at 11:47 pm #238902In reply to: Installed Buddypress but several things won’t work.
DewFL
ParticipantThe registration page for instance has been created and can be reached at:
http://www.witnessescity.com/index.php/register-4/
You can reach it from my navigation menu, but the BuddyPress widget for some reason sets it to http://www.witnessescity.com/register-4/
How do I correct that? also I no clue why the page is blank, am I supposed to input code of some sort in the page after it has been created?
May 9, 2015 at 10:39 pm #238899In reply to: Show Activity Comments To Everybody
danbp
ParticipantYou’re using kleo theme.
Many related topics related to it are avaible on this forum.
One of the latest:
https://buddypress.org/support/topic/buddypress-activities-overlaps-on-post-click/And about third party premium themes, read here
https://buddypress.org/support/topic/when-asking-for-support-2/May 9, 2015 at 10:31 pm #238898In reply to: Installed Buddypress but several things won’t work.
danbp
Participantwitnessescity.com/registration/ = 404 error
means that you have no page called registration.
When activation and registration pages are not automatically created, you should do this manuallySee on BP settings Page tab. Check also the other components pages.
Have you set up pretty permalinks ?
Please read the doc
May 9, 2015 at 9:34 pm #238892In reply to: Installed Buddypress but several things won’t work.
modemlooper
Moderatorif you have registration turned off in WordPress settings you will have registration troubles. When you got to settings > BuddyPress and on the pages tab do you have the pages assigned to components?
May 9, 2015 at 6:37 pm #238884In reply to: Display one activity post by ID
danbp
ParticipantSee here how you can do that
https://buddypress.org/support/topic/calling-a-post-authors-activity-stream/ -
AuthorSearch Results