Search Results for 'buddypress'
-
AuthorSearch Results
-
June 27, 2014 at 3:26 am #184464
In reply to: buddypress tool count total number not working
@mercime
Participanti used this buddypress tool count total number
@jrzwv you mean https://codex.buddypress.org/buddypress-components-and-features/buddypress-repair-tools-admin-screen/ ? Is the actual member count more OR less than what is showing on your screen? Are you using a cache plugin? If so, have you cleared cache and/or deactivated that plugin?June 27, 2014 at 3:20 am #184463In reply to: BuddyPress Multisite
@mercime
ParticipantI only want multiple child sites with serparated BP instances
@plose2009bx in that case, http://buddydev.com/plugins/buddypress-multi-network/June 27, 2014 at 3:18 am #184462In reply to: Dating 404 Error Message
@mercime
Participant@jlent14 it is likely a theme issue. Have you tried deactivating all other plugins except BuddyPress to exclude the possibility of plugin/widget conflict?
June 27, 2014 at 2:21 am #184459@mercime
Participant@jrzwv Some of the issues associated with using premium framework themes is that there are more chances of plugin conflicts and that we have no access to the theme. Good thing is, you should be able to get free support for your premium theme.
Change your theme to Twenty Fourteen. If the issue is resolved with the change, then please contact the theme author about the conflict with BuddyPress plugin.
June 26, 2014 at 8:12 pm #184452In reply to: Activity Meta Buttons show up Vertically
mixtapela
ParticipantHello @mercime
The url is: mixtapeLA.net/activity
Please use the following credentials:
Username: bpuser
password: bpuser1I’ve reinstalled a fresh unmodified copy of the theme, I’ve even completely removed buddypress and deactivated all the plugins but the issue is still there.
Please help!
ThanksJune 26, 2014 at 7:09 pm #184451blauweogen
ParticipantFound answer, sorry. https://buddypress.org/support/topic/buddypress-default-theme-missing-from-1-9-2/
June 26, 2014 at 3:43 pm #184446In reply to: How do I move profile subnavs to Settings subnav
juhanib
ParticipantI was able to get the avatar form to show up with this snippet:
function setup_custom_nav() { global $bp; bp_core_new_subnav_item( array( 'name' => __( 'Change Avatar', 'buddypress' ), 'slug' => 'change-avatar', 'parent_url' => $bp->loggedin_user->domain . 'settings/', 'parent_slug' => 'settings', 'screen_function' => 'ca_screen_function', 'position' => 30, ) ); } add_action( 'bp_setup_nav', 'setup_custom_nav'); function ca_screen_function() { add_action( 'bp_template_content', 'change_profile_picture_screen_content' ); bp_core_load_template( apply_filters( 'xprofile_template_change_avatar', 'members/single/plugins' ) ); xprofile_screen_change_avatar(); } function change_profile_picture_screen_content() { bp_get_template_part( 'members/single/profile/change-avatar' ); }But when I try to upload a new avatar the resizing/cropping screen doesn’t show up.
June 26, 2014 at 1:28 pm #184444In reply to: Add ad code into activity stream
sg107
ParticipantWere you able to solve your issue? I think there is a plugin for this. Try a Google search for adsense in BuddyPress activity stream etc.
June 26, 2014 at 8:10 am #184436In reply to: How to have Two Sign up forms?
dzung
ParticipantFor now, I’ve come to another solution, where I allow users to Register new account with base Fields and a Role selection (Student or Lecturer in my case). They then fill in only base field and then after account creation they can update their Student or Lecture xProfile Group Fields in their profile page edit.
I do these above by using 3 plugins:
1. https://wordpress.org/plugins/wpfront-user-role-editor/
This will allow me to add new Role: Student and Lecturer in my case (I have tried other Role plugin but they conflict with other plugins on my site, this one doesn’t).2. https://wordpress.org/extend/plugins/wp-roles-at-registration/
This one allow me to add a Drop down for New user to choose their wanted role : Student or Lecturer3. https://wordpress.org/extend/plugins/buddypress-xprofiles-acl/
This plug in allow me to set buddypress xProfile group to a specific user role. In my case, I created two xProfile Group fields named “Student” and “Lecture” each has different fields. Then using this plugin I assigne the xProfile Student to Student Role, and the xProfile Lecturer to Lecturer Role.That’s all done!
Meanwhile I will use this, but I still want to be able to have two sign up forms with different fields so that I can require New user to fill in the Required field to make the profile better. I can’t code much so hope someone will help!
June 26, 2014 at 2:22 am #184426In reply to: How to viewing profiles
aces
Participant@gt-director
You wrote:(I’m using WordPress v3.4.4 and BuddyPress v2.0.1)
Buddypress v2.0.1 requires at least wordpress 3.6 – see https://codex.buddypress.org/developer/releases/
June 26, 2014 at 1:39 am #184422Andrea Reed
ParticipantI used this in my child theme stylesheet and it worked on the Members Directory page:
#buddypress #members-dir-list a.friendship-button.is_friend.remove { display: none; }What is nice is that when you click on the profile of someone who is a friend, you can still cancel the friendship there if you need to.
June 25, 2014 at 10:00 pm #184420maddogmcewan
Participantexcellent got it working. I added this to the footer area in create.php
<?php get_footer( 'buddypress' ); $blogname = esc_attr( $_REQUEST['site'] ) ; ?> <script language="javascript"> var blogname; blogname = document.getElementById('blogname'); if(blogname){ blogname.value = "<?php echo $blogname;?>"; } </script>June 25, 2014 at 9:23 pm #184417In reply to: Pinterest-style Activity Feed
Henry Wright
ModeratorIf you take a look at the docs on the Masonry website you’ll see that you can do something like this with jQuery
<script> jQuery('#container').masonry({ columnWidth: 200, itemSelector: '.item' }); </script>#containerand.itemare used in the example but in BuddyPress they will be something like#membersand.member. For example your BuddyPress page source code might look like this<div id="members"> <!-- this is the #container --> <div class="member"> <!-- this is the .item --> <!-- various stuff happens here for a particular member --> </div> <div class="member"> <!-- this is the .item --> <!-- various stuff happens here for a particular member --> </div> <div class="member"> <!-- this is the .item --> <!-- various stuff happens here for a particular member --> </div> </div>Note I’ve made up these selectors, they will be something different so check your BP templates.
June 25, 2014 at 8:53 pm #184416In reply to: BuddyPress Multisite
@mercime
Participant@plose2009bx there is one instance of BuddyPress per WP multisite. You would see the BP admin screens via Network Admin settings. There are plugins to have separate instances of BP per WPMS subsite like those mentioned in this trac ticket.
@mercime
Participant@bluesharp I’ve never used WAMP However for blank pages, you might want to check out https://codex.buddypress.org/getting-started/troubleshooting/blank-pages/ Also, please make sure that you have “pretty permalinks” set up (not the pseudo-pretty permalinks with /index.php appended).
June 25, 2014 at 8:15 pm #184412In reply to: How to have Two Sign up forms?
piratescott
ParticipantI don’t use buddypress for my user account sign up even though I use buddypress, you might want to give this a look http://wordpress.stackexchange.com/questions/15954/separate-registration-and-login-for-different-roles
June 25, 2014 at 9:04 am #184392@mercime
Participant@sillery4ever Where are you hosted – locally or shared/vps/dedicated hosting? What other plugins are activated in your installation? Have you tried deactivating all plugins except BuddyPress?
WordPress 3.5.1 – Buddypress 2.0.1
If the 3.5.1 version is not a typo, know that that WP version is compatible up to BP 1.8.1 only. https://codex.buddypress.org/developer/releases/
June 25, 2014 at 5:51 am #184389sillery4ever
ParticipantWordPress 3.5.1
Buddypress 2.0.1All my users are displayed in …wordpress/wp-admin/users.php before i activated BP.
during BP is activated, …wordpress/wp-admin/users.php don’t display any user, the list is empty. I see only the title of the column (User/name/email/role/…) and the number of user by role. 0 line is display 🙁
after i deactivated BP, all the data are correctly displayed as before i activate of BP !
I don’t understand. I can’t continue to use BP if i can’t manage my user list.
Somebody to help me ?
TY
Nano
dzung
ParticipantI’ve re-installed many times to test and found that if bbPress installed and I try to enable the setting for Component User Groups by checking it. That will make error. I use the Latest versions of wp, buddypress, bbpress and default wp theme.
This is my 3rd times post so I hope someones will give some info that helps me to fix this.
June 25, 2014 at 3:07 am #184384In reply to: Add sidebar to Registration Page
@mercime
ParticipantI’m advised by Buddyboss support to call the sidebar on this page: /buddypress/bp-themes/bp-default/registration/register.php … I am editing the right file?
@style960 No idea why their support is advising you to call the sidebar on the bp-default theme instead of using BP theme compatibility as we have no access to the premium theme. Perhaps you just need to clarify what they really meant by asking them to provide you with an example. Surely, you are not the only on who wants a sidebar in that theme.June 25, 2014 at 2:51 am #184383@mercime
Participantall my users are in database, but i cant edit them by this page ….wordpress/wp-admin/users.php
@sillery4ever Surprised. WP/BP versions? BuddyPress adds BP-specific admin panels and some filters, etc. only and doesn’t remove anything in wp-admin. So what happens when you deactivate BP, do the users show up again in wp-admin/users.php?June 24, 2014 at 8:37 pm #184375In reply to: Activity Meta Buttons show up Vertically
mixtapela
ParticipantHere’s a temporary fix for the meta buttons showing vertically:
Add this to your style.css:
#buddypress #activity-stream p
However the spacing is way off and my “Share” (Buddypress Social) button is not working unless I click on “Load more”.
I hope this helps.
June 24, 2014 at 2:08 pm #184368In reply to: Order members by specific ID set
June 24, 2014 at 4:00 am #184355In reply to: Having a bug in my browser title bar…
@mercime
Participant@barniseun Have you checked the forums of the theme author re compatibility with BuddyPress or any template solutions? I can imagine that there are users of the theme or those from the same theme author who would like to install BP in their sites.
June 24, 2014 at 12:43 am #184351In reply to: Pinterest-style Activity Feed
Henry Wright
ModeratorUsing Masonry with the BP activity feed would be possible. It’s a loop of data just like a loop of blog posts. You might need to change some of the default selectors to match the BuddyPress markup but aside from that I see no problems.
-
AuthorSearch Results