Search Results for 'buddypress'
-
AuthorSearch Results
-
July 11, 2012 at 1:52 am #137106
In reply to: [Resolved] Buddypress Pages not working as expected
sindbad_chen
MemberI have just tried to install BuddyPress on my WP version 3.4.1 and using the salutation theme.
On click Finish and I get the below error:
Warning: Illegal offset type in
AppServwwwwordpresswp-contentpluginsbuddypressbp-coreadminbp-core-update.php on line 642.
Any ideas / suggestions ?July 11, 2012 at 1:51 am #137105In reply to: Fatal error on installing
sindbad_chen
MemberI have just tried to install BuddyPress on my WP version 3.4.1 and using the salutation theme.
On click Finish and I get the below error:
Warning: Illegal offset type in
AppServwwwwordpresswp-contentpluginsbuddypressbp-coreadminbp-core-update.php on line 642.
Any ideas / suggestions ?July 11, 2012 at 12:04 am #137103kraigg
ParticipantOkay, I was able to fix it. If anyone else is having problems integrating bbPress 2.1 and Buddypress 1.6, and getting the group forums to work, here is what I did.
– Install Buddypress 1.6
– Enable all the components of Buddypress EXCEPT ‘Discussion Forums’
– Install bbPress 2.1
– Go into the bbPress settings (in Admin dashboard > Settings > Forums) and tick the box “Allow BuddyPress Groups to have their own forums”. And then select the Group Forums Parent from the dropdown list. If you don’t already have an existing forum, create a new one (in Admin dashboard > Forums > New Forum).
– Your group forums should now be operational.– If you go into your group forum, and you see a message that no forums exist for this group, and it doesn’t allow you to create a new forum, you may have to recreate your group by clicking the Create Group button on the group page. I had to recreate all my groups, fortunately it is still a new site so not many posts were lost.
– If your group forum posts don’t appear in the activity stream, make sure that the privacy settings (in Admin dashboard > Settings > Privacy) for “Allow search engines to index this site” is ticked
July 10, 2012 at 11:12 pm #137102In reply to: Can’t see my forum activity (topics started)
Roger Coathup
ParticipantYes, significant chunks of this site don’t work. Particularly those relating to forums. It used to work somewhat better, but a new design was introduced which reduced the functionality.
However, try not to let that put you off BuddyPress though — the sites you can build with the platform are far more impressive and consistent. It also integrates well with the new bbPress plugin, allowing you to deliver standard forum behaviour.
July 10, 2012 at 11:09 pm #137101shanebp
ModeratorThis approach might be safer for most people.
It adds to the recorded post_types instead of replacing them.`
add_filter ( ‘bp_blogs_record_post_post_types’, ‘activity_publish_custom_post_types’,1,1 );
function activity_publish_custom_post_types( $post_types ) {
$post_types[] = ‘videos’;
$post_types[] = ‘pictures’;
return $post_types;
}
`And if you go thru the trouble of creating a CPT, why not filter the activity action so it isn’t the generic ‘…wrote a new post’. For example:
`
add_filter(‘bp_blogs_activity_new_post_action’, ‘record_cpt_activity_action’, 1, 3);
function record_cpt_activity_action( $activity_action, $post, $post_permalink ) {
global $bp;
if( $post->post_type == ‘videos’ ) {
if ( is_multisite() )
$activity_action = sprintf( __( ‘%1$s created a new Videos post, %2$s, on the site %3$s’, ‘buddypress’ ), bp_core_get_userlink( (int) $post->post_author ), ‘‘ . $post->post_title . ‘‘, ‘‘ . get_blog_option( $blog_id, ‘blogname’ ) . ‘‘ );else
$activity_action = sprintf( __( ‘%1$s created a new Videos post, %2$s’, ‘buddypress’ ), bp_core_get_userlink( (int) $post->post_author ), ‘‘ . $post->post_title . ‘‘ );}
return $activity_action;
}
`July 10, 2012 at 11:04 pm #137100In reply to: n00b confused as $%#*
Asynaptic
Participantok, now I understand, this is a measure in place to prevent spam, thanks @modemlooper and @mercime appreciate the help
I’m not entirely clear why the 3 things are linked together:
1)stopping spammers’ posts from appearing in activity streams
2)username and name variables
3)activity stream not shown in a person’s profile page (https://buddypress.org/community/members/USER-NAME/activity/If the key issue is stopping spammers from polluting activity streams (1) why not do that? why involve (2) and (3)?
is it just how buddypress is coded that makes it a necessity that if we want to implement 1, then 2 and 3 must also happen?
July 10, 2012 at 10:37 pm #137099In reply to: Can’t see my forum activity (topics started)
Asynaptic
ParticipantCompare:
https://buddypress.org/community/members/mercime/
(list of activity…………………..)
https://buddypress.org/community/members/synaptic/
(Sorry, there was no activity found. Please try a different filter.)
why?
July 10, 2012 at 8:37 pm #137096In reply to: Buddypress 1.6 feedback
Paul Wong-Gibbs
KeymasterThanks for the feedback, and thank you for testing!
I’m sure someone will create a plugin to do this very soon
July 10, 2012 at 8:10 pm #137095Roger Coathup
ParticipantThese forums don’t notify people of follow up comments — so, no surprise that Boone didn’t pick up on a further question several months later.
You can try the @username approach in your comment to notify them
July 10, 2012 at 8:00 pm #137092Roger Coathup
ParticipantFor questions 2 and 3 — yes, you can customise these aspects of your site — there are many ways of doing it, and to some extent it depends on the approach you take to developing your site’s theme.
You can remove tabs, and add new tabs through the BuddyPress API
You can also remove them by developing your own custom template files (and similarly for the avatar sizes)If you look on the showcase tab on this site, or visit bpinspire.com for more up to date examples, you can get a feel for what you can achieve based on BuddyPress.
Much the same as a WordPress site doesn’t have to follow the basic blog structure, similarly a BuddyPress site doesn’t have to follow the generic bp-default theme structure and UX.
July 10, 2012 at 7:43 pm #137090In reply to: Update Wizard Blank Screen
alex35
MemberHi, I have the same exact problem!
This is what I get in my PHP log file:`[10-Jul-2012 19:39:48] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 77824 bytes) in /var/www/wordpress/wp-admin/includes/upgrade.php on line 1559
[10-Jul-2012 19:39:48] PHP Stack trace:
[10-Jul-2012 19:39:48] PHP 1. {main}() /var/www/wordpress/wp-admin/admin.php:0
[10-Jul-2012 19:39:48] PHP 2. require() /var/www/wordpress/wp-admin/admin.php:106
[10-Jul-2012 19:39:48] PHP 3. require_once() /var/www/wordpress/wp-admin/menu.php:233
[10-Jul-2012 19:39:48] PHP 4. do_action() /var/www/wordpress/wp-admin/includes/menu.php:97
[10-Jul-2012 19:39:48] PHP 5. call_user_func_array() /var/www/wordpress/wp-includes/plugin.php:403
[10-Jul-2012 19:39:48] PHP 6. bp_core_setup_wizard_init() /var/www/wordpress/wp-includes/plugin.php:0
[10-Jul-2012 19:39:48] PHP 7. BP_Core_Setup_Wizard->__construct() /var/www/wordpress/wp-content/plugins/buddypress/bp-core/admin/bp-core-update.php:1103
[10-Jul-2012 19:39:48] PHP 8. BP_Core_Setup_Wizard->save() /var/www/wordpress/wp-content/plugins/buddypress/bp-core/admin/bp-core-update.php:45
[10-Jul-2012 19:39:48] PHP 9. BP_Core_Setup_Wizard->step_db_update_save() /var/www/wordpress/wp-content/plugins/buddypress/bp-core/admin/bp-core-update.php:103
[10-Jul-2012 19:39:48] PHP 10. bp_core_install() /var/www/wordpress/wp-content/plugins/buddypress/bp-core/admin/bp-core-update.php:771
[10-Jul-2012 19:39:48] PHP 11. bp_core_install_notifications() /var/www/wordpress/wp-content/plugins/buddypress/bp-core/admin/bp-core-update.php:1116
[10-Jul-2012 19:39:48] PHP 12. bp_core_set_charset() /var/www/wordpress/wp-content/plugins/buddypress/bp-core/admin/bp-core-schema.php:20`Please help me! How can I fix this issue?
July 10, 2012 at 7:43 pm #137091In reply to: 3 major issues with my template Please Help.
digibluez
Membergo to your current themes directory, open up functions.php
add
`
register_sidebar(array(
‘name’ => __( ‘Sidebar2’ ),
‘id’ => ‘sidebar2’,
‘description’ => __( ‘Widgets in this area will be shown on sidebar2.’ ,’buddypress’ ),
‘before_widget’ => ‘‘,
‘before_title’ => ‘‘,
‘after_title’ => ‘‘
));Open up sidebar.php
add after`
go to wp-admin and add widgets in sidebar2, done
you have to change the theme styles and html yourself though to make it work.for comments search the codex plugins db
https://wordpress.org/extend/plugins/tags/comments
that dose the job.July 10, 2012 at 6:21 pm #137089Splendorrise
MemberAnyone?
July 10, 2012 at 6:17 pm #137087candy2012
Memberhmmmm !??! I don’t think I need the network just for my contacts

Simply need to do that, as building a multi-pages registration form seems million times more difficult than that and nobody here knows how to do that anyways
So … the question is basically a php question about how to pull the values from a session and pre-populate the BP-extended form fields from the registration page with that.
That’s no problem to populate stand-alone fields (like username or email for ex) the problem comes with those extra fields which are dynamically generated and I have no clue how to replace the values !??!?
Seems like nobody knows ?!? Not even those who programmed that stuff ?!?!
July 10, 2012 at 5:18 pm #137085frank tredici
MemberYeah, it’s very annoying, discouraging and a deterrent to want to use it. Thanks @RogerCoathup
July 10, 2012 at 5:16 pm #137084shanebp
ModeratorI’ll bet it’s something in your theme.
Try switching to the default BP theme.July 10, 2012 at 5:05 pm #137083Roger Coathup
ParticipantCouple of things to look at:
Have you got anything unusual in your wp-config.php or bp-custom.php file, perhaps redefining the site URL or ‘root slug’.
Have you de-activated the components (groups, activity, etc.) in your BuddyPress settings?
The line that’s falling over is: if ( empty( $bp->{$id}->root_slug ) || $bp->{$id}->root_slug != $bp->current_component )
July 10, 2012 at 4:41 pm #137082Hugo Ashmore
ParticipantThese are not theme issues, they are php errors in the page you need to look at your syntax and ensure it’s correct.
July 10, 2012 at 4:37 pm #137081In reply to: Image upload with voting system from members
Prince Abiola Ogundipe
Participant@rowefx, yes its one of my site am still working on it but i can give you the plugin free of charge.
Regards
July 10, 2012 at 4:28 pm #136954edgarestradac
MemberHello, sorry for the time it takes to answer. I was moving my wordpress server.
I made the adjustments you suggested, but it shows these errors:
In the header:
http://www.sinaloagay.mx/members/admin/Parse error: syntax error, unexpected $ end in / home/content/99/9335499/html/SINALOAG-MX/wp-content/themes/metrolo/header-buddypress.php on line 201
In the post:
http://www.sinaloagay.mx/llama-pena-nieto-a-la-unidad-y-reitera-respeto-a-la-diversidad/Warning: Missing argument 2 for bp_modify_page_title () in / home/content/99/9335499/html/SINALOAG-MX/wp-content/plugins/buddypress/bp-core/bp-core-filters.php on line 277
Warning: Missing argument 3 for bp_modify_page_title () in / home/content/99/9335499/html/SINALOAG-MX/wp-content/plugins/buddypress/bp-core/bp-core-filters.php on line 277
July 10, 2012 at 3:40 pm #137080Roger Coathup
Participant@frank13 — unfortunately those standard forum features aren’t available on this site, so it’s very difficult to track anything, and questions often get re-asked, and re-answered.
Not sure why the site hasn’t been updated to use e.g. the bbPress plugin @johnjamesjacoby
July 10, 2012 at 3:22 pm #137078In reply to: 3 major issues with my template Please Help.
Roger Coathup
ParticipantIt’s sounds you need a developer to work on your general site build, rather than having specific BuddyPress questions.
You can hire a developer by posting here: http://jobs.wordpress.net
You can also try posting on the jobs board on this site: https://buddypress.org/community/groups/bp-jobs-board/July 10, 2012 at 3:06 pm #137077In reply to: Combining Gravity Forms With Buddypress
Roger Coathup
Participantturn off AJAX based submission on your gravity form — does that fix the problem?
July 10, 2012 at 2:29 pm #137076In reply to: bbPress 2.1 and BuddyPress 1.6 beta 2 Group Forums
Paul Wong-Gibbs
KeymasterTechnically, it’s the other way around: bbPress 2.1 supports BuddyPress for Group Forums (but **only** if you deactivate the Group Forums component).
You can use the bbPress 1.1 convertor that comes with bbPress 2 (it’s under the Tools menu) to move your content from old bbPress to new bbPress.
If the forum doesn’t appear in the BuddyPress group, it’s probably best to feed this back to the bbPress team on the bbpress.org forums.
July 10, 2012 at 12:53 pm #137073newpress
ParticipantI tried Buddypress User Account Type Lite plug in. But it doesnt work either. Nothing is capable of overwriting Buddypress default user capabilities. First I left Elgg because of a stupid “Privacy Access Option” built into it, now I think history is taking a fresh turn. Both scripts are useless for content driven social networks or “should be well moderated sites”
-
AuthorSearch Results