Search Results for 'wordpress'
-
AuthorSearch Results
-
October 11, 2012 at 6:00 pm #143313
r-a-y
KeymasterThis should be fixed in the latest trunk version of BuddyPress.
However, if you need to fix this for BP 1.6.1, apply this change to your 1.6.1 install:
https://buddypress.trac.wordpress.org/changeset/6332If that doesn’t work, let us know.
October 11, 2012 at 3:48 pm #143296In reply to: Role Difference Between WordPress and BuddyPress
@mercime
Participant@bjwangschowe Yes, for BP, it is Admin and everything else. There’s of course the Group Admin/Mods which are limited to the Group Forums only.
October 11, 2012 at 3:30 pm #143293In reply to: E-mail attachment
Paul Wong-Gibbs
KeymasterI’ve heard of people building this for their own sites, but I’ve not seen any plugins that offer this. But I haven’t search through wordpress.org/extend/plugins/ to check — have you?
October 11, 2012 at 3:28 pm #143290Paul Wong-Gibbs
KeymasterYou can have 1 BuddyPress per WordPress network (a standard multisite gives you one network). You need to enable it sitewide, and set up the configuration from the root blog (the blog with ID = 1).
You do not need to enable multiblog. I wish that setting didn’t exist.
October 11, 2012 at 10:42 am #143277In reply to: Suitability of BuddyPress
neekolaus
Participant@modemlooper thanks for the advice! will try it out.
Roger Coathup, could you point me in the direction of some resources? am i right to say this implementation is different from what modemlooper has suggested, in that you are customising wordpress posts instead of buddypress groups?To update, I’ve set up a localhost using XMAPP on OS X. Still trying to sort out some issues with the Buddypress install – am getting a “Object not found” 404 error when clicking on links from the home page.
October 11, 2012 at 9:28 am #143273In reply to: Suitability of BuddyPress
Roger Coathup
Participant@neekolaus – you can build a directory site with reviews on top of BuddyPress.
http://plazaa.de (built by Poolie) and http://enterprisenation.com (our own work) are good examples built on BuddyPress.
You would use WordPress custom post types to model the studios, with BuddyPress handling the user accounts. The custom posts types can be integrated with BuddyPress based profiles giving you a seamless experience. For ratings / reviews, GD star rating is one of the more complete plugin solutions.
Unfortunately, it’s not something you could tackle with basic web development skills – it would require fairly advanced PHP, WordPress, BuddyPress knowledge. We’ve built a number of bespoke directory type sites, but I don’t know of anyone providing a good ‘off the shelf’ solution (yet!!).
October 11, 2012 at 3:20 am #143246In reply to: Rate members
kaformedia
ParticipantIt has been done with 5 star rating system here: http://kaformedia.com/site/user-rating-and-reviews-plugin-rate-user-by-profile-wordpressbuddypress/
Of course a point system you can create with cubepoints https://wordpress.org/extend/plugins/cubepoints/
October 10, 2012 at 10:47 pm #143248In reply to: Suitability of BuddyPress
modemlooper
Moderatorhttps://wordpress.org/extend/plugins/bp-group-reviews
This works like the plugin reviews on this site. Example: https://buddypress.org/community/groups/buddypress-xprofile-custom-fields-type/reviews/
You can turn groups into “Studios” by creating a language file and changing all instances of Group/Groups to Studio https://codex.buddypress.org/translations/
October 10, 2012 at 7:00 pm #143237In reply to: Author Plugin
r-a-y
KeymasterCan WordPress even handle multiple authors of the same post by default? I’m quite sure it cannot.
Are you using the Co-Authors Plus plugin? If so, that plugin comes with some template tags that you could use with that Code Canyon plugin:
https://wordpress.org/extend/plugins/co-authors-plus/other_notes/You could bug the Code Canyon author to add BP support as well.
October 10, 2012 at 6:49 pm #143236In reply to: Buddypress Pages Broken
r-a-y
KeymasterJessykuh – Try navigating to your WordPress Menu screen to manually add the trailing slash:
https://codex.wordpress.org/Appearance_Menus_ScreenOctober 10, 2012 at 6:30 pm #143234In reply to: Buddypress Pages Broken
Jessykuh
ParticipantHi I have the same problem,
When I try to click ‘Activity’ ‘Members’ or ‘Groups’ on my menu, it says ‘profile.php’ can not be found on my server. However if I add a ‘/’ to the end of the link or if I click on the pages elsewhere, it works fine. I’m not sure how to fix it on my main menu though.
I have re-installed BuddyPress and WordPress already and nothing changed.
Can someone please help?
My website is http://www.fosterfriends.org
October 10, 2012 at 2:50 pm #143220In reply to: How to enable Breadcrumb for BuddyPress?
Paul Wong-Gibbs
KeymasterNot aware of any, but you can search on wordpress.org/extend/plugins/
October 10, 2012 at 11:11 am #143214In reply to: How to download buddypress 1.5.1?
Paul Wong-Gibbs
KeymasterIf they’re not letting you upgrade WordPress to the latest secure version, why do you consider your data safe? Find a better host.
October 10, 2012 at 10:17 am #143209In reply to: How to download buddypress 1.5.1?
9087877
Inactive@djpaul is right but have at it at your own risk:
https://wordpress.org/download/release-archive/
Edit:
https://wordpress.org/extend/plugins/buddypress/developers/October 10, 2012 at 9:11 am #143208In reply to: [Resolved] Shortcode to show number of members
angslycke
ParticipantFor anyone looking for the working code to create the shortcode [member_count] which can be inserted anywhere in pages or posts, here it is:
`function show_number_of_members() {
$count = bp_get_total_site_member_count();
return $count;
}function register_shortcodes() {
add_shortcode(‘member_count’, ‘show_number_of_members’);
}add_action( ‘init’, ‘register_shortcodes’);`
Insert the above code in your functions.php or custom functions.php-file in your WordPress theme.
October 10, 2012 at 8:01 am #143207In reply to: BuddyPress Media component
@mercime
Participant@a-swede-in-greece there are two BuddyPress Media plugins which have own forums
– BP Media plugin -> https://buddypress.org/community/groups/bp-album/forum/
– BP Media Component plugin -> https://wordpress.org/extend/plugins/buddypress-media/ and click on support tab== blog- as well as(or) a business directory plugin which we can ad ==
I assume you mean external blogs. Try https://wordpress.org/extend/plugins/buddypress-links/screenshots/ or adapt it to fit to your needs.October 10, 2012 at 7:50 am #143204In reply to: How to download buddypress 1.5.1?
Sudeep Acharya
ParticipantPaul-Thank you for the reply.
I am a newbie so I am using free host to start with and they only allow up to wordpress 3.2.1.
Regards,
Sudeep AcharyaOctober 9, 2012 at 11:08 pm #143188In reply to: Before Installing: WPTouch Pro
modemlooper
ModeratorWP touch doesnt have the theme files to work with BuddyPress.
Options are to use a responsive theme, create your own custom solution or use https://wordpress.org/extend/plugins/buddypress-mobile
WP Touch might work with BP 1.7 as BP 1.7 will use page templates to output markup. 1.7 is probably at least a few months away.
October 8, 2012 at 7:58 am #143148In reply to: mashant.com community site for developers
Nicolas Crocfer
ParticipantHi,
Thank you both ! Mashant is indeed created with WordPress & Buddypress. When we decided to create a social network for developers, we immediately opted for BuddyPress.
This plugin has saved us a lot of time. Moreover it is very flexible, we do not regret our choice
October 8, 2012 at 1:14 am #143144LabSecrets
ParticipantHope this helps: http://labzip.com/develop-wordpress-sites-locally-then-deploy-with-git-tower-beanstalk-thanks-chris-coyier-mark-jaquith/
Feel free to contact me at help@labsecrets.com for more info or advice

Cheers,
SpenceOctober 8, 2012 at 12:38 am #143142Devilish Concept
Participant“
erm does this need adding via a css style sheet or can it be done via wordpress menu page
October 7, 2012 at 6:02 pm #143128In reply to: Is someone to help me Fei way this step
@mercime
Participanthttps://mercime.files.wordpress.com/2012/08/bp16-swforums-02.jpg
You have to create forums first. See picture above, Forums > Add New then create name of the forum and publish the post. Add new forums as needed.October 7, 2012 at 8:52 am #143102In reply to: Is someone to help me Fei way this step
forfuture
ParticipantI’m in trouble I have I encountered some problems during installation in the control panel for the forum
what i do there on my install
All done! Configuration settings have been saved to the file bb-config.php in the root of your WordPress install.Need help deciding between Group Forums and Site Wide Forums? Visit the BuddyPress codex for more information.
and i want add new Forum how i do for open new Forum on my wordpress i can’t get him and serch what i do she is not on my screipt can any one help me ??http://www14.0zz0.com/2012/10/07/08/430124704.jpg
i waiting….
http://www14.0zz0.com/2012/10/07/08/430124704.jpgOctober 7, 2012 at 2:25 am #143095@mercime
Participant@algecas this is not the instruction for the wowway theme. I’ve responded to your post in this topic https://buddypress.org/community/groups/installing-buddypress/forum/topic/i-have-several-problems-to-fit-buddypress-to-wowway-theme/
October 7, 2012 at 2:22 am #143094 -
AuthorSearch Results