Forum Replies Created
-
@mercime Thanks a ton, updating fixed the issue! Looks like the wrong js is still being loaded though. Oh well.
@mercime Hey thanks a ton for the reply.
I haven’t hardcoded the link, do you think updating may fix this? I only hesitate because of changes i have made in the back end.
@mercime Like I said in my original post, “Enable group creation for all users” is enabled in buddypress settings. Non-admins still cannot create groups for some reason, they are redirected to the front page.
Just an FYI to anyone curious, here is the solution:
<?php do_action( 'bp_before_profile_loop_content' ); ?> <?php if ( bp_has_profile('hide_empty_fields=0') ) : ?> <?php while ( bp_profile_groups() ) : bp_the_profile_group(); ?> <?php if ( bp_profile_group_has_fields() ) : ?> <?php do_action( 'bp_before_profile_field_content' ); ?> <div class="bp-widget <?php bp_the_profile_group_slug(); ?>"> <h4><?php bp_the_profile_group_name(); ?></h4> <table class="profile-fields"> <?php while ( bp_profile_fields() ) : bp_the_profile_field('hide_empty_fields=0'); ?> <?php if ( bp_field_has_data() ) : ?> <tr<?php bp_field_css_class(); ?>> <td class="label"><?php bp_the_profile_field_name(); ?></td> <td class="data"><?php bp_the_profile_field_value(); ?></td> </tr> <?php elseif ( !bp_field_has_data() ) : ?> <tr<?php bp_field_css_class(); ?>> <td class="label"><?php bp_the_profile_field_name(); ?></td> <td class="data"><?php bp_the_profile_field_value(); ?></td> </tr> <?php endif; ?> <?php do_action( 'bp_profile_field_item' ); ?> <?php endwhile; ?> </table> </div> <?php do_action( 'bp_after_profile_field_content' ); ?> <?php endif; ?> <?php endwhile; ?> <?php do_action( 'bp_profile_field_buttons' ); ?> <?php endif; ?> <?php do_action( 'bp_after_profile_loop_content' ); ?>
TO be honest I’m not exactly sure which file I would have to copy/modify to change anything. The header and footer are perfectly intact save for the widgets (and just in specific member view).
@mercime Thank you, that is very interesting but I can’t seem to figure out how it fixes my issue.
Compare:
http://www.thesojo.net/members/
to
http://www.thesojo.net/members/jesse/
What would cause the widgets to appear on the directory page but not individual users?
Err, sorry I had those two reversed.