Search Results for 'wordpress'
-
AuthorSearch Results
-
May 26, 2012 at 11:25 pm #135103
In reply to: the “support forums” sidebar widget
@mercime
ParticipantMay 26, 2012 at 8:34 pm #135101In reply to: the “support forums” sidebar widget
creaturis
Participantaha thanks. no problem I can probably make something like it with the text/html widget in wordpress
May 26, 2012 at 5:12 pm #135093@mercime
Participant@nickharambee Remove the BP Component Pages you want to make private from the custom menu https://codex.buddypress.org/extending-buddypress/how-to-set-up-your-main-site-navigation-using-the-built-in-wordpress-menus/
Add the following to your theme’s or child theme’s functions.php file
add_filter( 'wp_nav_menu_items', 'mme_loggedin_only_links' ); function mme_loggedin_only_links($items) { if (!is_user_logged_in()) return $items; else $ouractivity = '<li><a href="' . home_url('/') . 'activity' . '">' . __('Activity', 'buddypress' ) . '</a></li>'; $ourmembers = '<li><a href="' . home_url('/') . 'members' . '">' . __('Members', 'buddypress' ) . '</a></li>'; $ourgroups = '<li><a href="' . home_url('/') . 'groups' . '">' . __('Groups', 'buddypress' ) . '</a></li>'; $ourgroupforums = '<li><a href="' . home_url('/') . 'forums' . '">' . __('Forums', 'buddypress' ) . '</a></li>'; $items = $items . $ouractivity; $items = $items . $ourmembers; $items = $items . $ourgroups; $items = $items . $ourgroupforums; return $items; }May 26, 2012 at 12:29 am #135075In reply to: Custom post Types in Activity Stream
@mercime
ParticipantMay 25, 2012 at 7:32 pm #135067thirstcard
MemberThis is probably what you want:
http://pastie.org/3967744May 25, 2012 at 12:31 pm #135057rkread59
Member@mercime, thank you very much for this. Please forgive my ignorance, but to be clear, would these plugins need to be installed in the specific WordPress part of the site?
May 25, 2012 at 6:17 am #135052In reply to: Multiple BP Sites one user database? Possible
@mercime
Participant@michaeljdornan There are two plugins for multiple BP sites in one WPMultisite installation
1. BP MultiNetwork – https://wordpress.org/extend/plugins/bp-multi-network/ which requires WP MultiNetwork or Networks+
2. BuddyPress Multi-Network – http://buddydev.com/buddypress/introducing-buddypress-multi-network-plugin-create-multiple-separate-social-networks-on-a-single-buddypress-install/ which you can use with Join Blog Widget plugin which you’ll find in the same site.
May 25, 2012 at 5:21 am #135049In reply to: Anonymous User Comments Defaulting to Site Admin
Tommy White
ParticipantSorry here are my versions. Buddypress Version 1.5.5 + WordPress Version 3.3.2
Yes if I disable Buddypress then the comments are attributed to the correct posters.
Yes I disabled EVERYTHING except buddypress and also switched to the default Buddypress theme.May 25, 2012 at 5:01 am #135047@mercime
ParticipantWhat versions of BP/WP did you upgrade from? You mentioned webpages from two years ago. If you upgraded from BP 1+/WPMU, then you have to upgrade major version by major version as in BP1.0+ to BP1.2/WPMU 2.9.1 to BP1.5/WP3.2.1 to BP1.5.5/WP3.3.2
WP versions download – https://wordpress.org/download/release-archive/
BP versions download – https://buddypress.trac.wordpress.org/browser/tagsMay 25, 2012 at 2:22 am #135044@mercime
ParticipantJust posting trac ticket you created https://buddypress.trac.wordpress.org/ticket/4217
May 25, 2012 at 2:08 am #135041In reply to: Problems with Layout of profiles
@mercime
Participant@gatoresg I know what you mean. You need to go through Step 3 of the BP Compatibility process https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/ and make the HTML structure of the BP template files compatible with your Leetpress theme like many other themes listed at the lower half of the webpage I linked to above.
May 24, 2012 at 8:28 pm #135031In reply to: Problem with Simple WP Community Theme
@mercime
Participant@oklamokla – that theme has not been updated for some time and support for that theme has been dropped by the developers. You can use a WP theme and install the BP Template Pack plugin to go through the BP compatibility process. Check out the list of WP themes we’ve template-packed so far near end of the page https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
May 24, 2012 at 7:58 pm #135029@mercime
ParticipantNot specifically BP, but on WP
Download Monitor – https://wordpress.org/extend/plugins/download-monitor/
Activity Monitor – https://wordpress.org/extend/plugins/threewp-activity-monitor/ or https://wordpress.org/extend/plugins/wp-activity/May 24, 2012 at 7:10 pm #135023In reply to: Moving from WordPress to Buddypress
@mercime
Participant@hellsailor you do not “move” to BuddyPress. BuddyPress is a WordPress plugin, so you add this plugin to your WordPress installation.
May 24, 2012 at 2:43 am #135006In reply to: I need a few custom modules ($)
@mercime
ParticipantMay 24, 2012 at 2:11 am #135004May 24, 2012 at 12:05 am #134998In reply to: BP Profile field help needed
biggienyc1
Participantthe ID im trying to have linked is a bowling member id on an external website, not the user id given in wordpress. its a different id member and wouldnt link to the other website.
May 23, 2012 at 8:25 pm #134992In reply to: BP Profile field help needed
kaformedia
ParticipantWhy don’t you use the built in wordpress ids? If you view all users and hover over a user it will show the user ids. https://codex.wordpress.org/Function_Reference/get_userdata
May 23, 2012 at 5:09 pm #134979In reply to: register for wordpress and buddypress 1 form
Jon Hardison
MemberHi:
Sounds like you’ve got everything set up right. Do you have the “Disable BuddyPress to WordPress profile syncing?” in BussyPress settings set to No? Once the WordPress registration page is pointed at the BuddyPress registration page, no one should have to register on both, and the option above should keep those registrations ‘in sync’.You said:
“I have the buddypress register associated with the wordpress register page, but it still does not work.”If you’ve done this within BuddyPress Page settings, you’re actually associating WordPress’s Registration and activation pages with BuddyPress. Not the other way around as you stated. Is this what you’ve done?
May 23, 2012 at 10:13 am #134962becskr
ParticipantHi Boone,
Right thanks for the var dunp stuff, that’s got the first bit working and the correct info is stored in the variables.
I’m having some trouble now with the actual function itself. I changed the function name and changed the `item id` value to $groupid but nothing happens. I took the blog_record_activity from the core files and changed to groups_record_activity but am wondering whether it’s the component bit that’s the issue? I noticed in this post: https://wordpress.org/support/topic/plugin-buddypress-groupblog-adding-an-entry-to-group-activity-stream that the component is set to “groups” .Progress so far: http://pastebin.com/LTWSDM2i
May 23, 2012 at 6:40 am #134954In reply to: Need help with theme
@mercime
Participant@mac02 check if we have “template-packed” your WP theme from list near bottom of https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
May 23, 2012 at 3:21 am #134946In reply to: Allow users to join only one group?
mrjarbenne
ParticipantDepending on the size of your userbase, you could make all the groups Hidden, then use the Invite Anyone plugin to manually invite (or have established group admins manually invite) the users who belong in each separate group. Don’t get thrown by the first bullet in the description of the plugin, in this instance the power of this plugin will be in your ability to invite people to a group even if you aren’t friends with them (bullet 2 in the description on the link below). Perfect if you are using the Followers plugin as well and have Friend Connections turned off:
https://wordpress.org/extend/plugins/invite-anyone/
https://wordpress.org/extend/plugins/buddypress-followers/May 23, 2012 at 3:16 am #134945mrjarbenne
ParticipantYou need this plugin: http://etivite.com/wordpress-plugins/buddypress-restrict-group-creation/
May 23, 2012 at 2:26 am #134940@mercime
Participant@elangley sorry, I understated what was expected. For example, WordPress.com is a custom Multisite installation with around 35Million+ user blogs spread over several DB’s and supported by multiple paid topnotch frontend and backend developers, server admins, etc. Even if you would only have e.g. 100 Networks with WP Multi-Network and you’ve allowed user blogs in each Network and then go BP MultiNetwork, that would require a serious developer skills where making some changes in DB is just child’s play since by that time you’d have to use SharDB, HyperDB, or MultiDB to maintain, sustain and grow the Networks over several servers and DB’s.
May 23, 2012 at 2:21 am #134937mrjarbenne
ParticipantIn the Buddypress Settings menu, do you have the “Disable BuddyPress to WordPress profile syncing?” set to “No”?
-
AuthorSearch Results