Forum Replies Created
-
I mean on my site, when I upload a new picture, the picture goes back to my avatar associated with my gravatar instead of the picture I uploaded
anyone know how to fix it?
no, thats not what I mean.
I mean that when I post on the forums on my site, the post takes like 10 minutes to appear on the page. For god knows why.. but I obviously can’t have that…
same with the buddypress avatar I’m trying to upload
What?
Nevermind… it appeared… but 10 minutes later….
why?
Nevermind! Changed it to `bp_get_profile_field_data(` and it worked, thanks!
Uhh it sort of worked how I wanted. I want to have an image associated with the profile field, so the field is a link when clicked. But I only want the image to appear if the user has filled it out: so I tried:
` 66, ‘user_id’ => my_topic_poster_id() ) ) ) : ?>
<a href="”>
`but all it does is display the link, not the image. What am I doing wrong?
I also tried:
`function profile_field_topic( $args = ” ) {
global $topic_template;$defaults = array(
‘field’ => false, // Field name or ID.
‘user_id’ => $topic_template->post->poster_id
);$r = wp_parse_args( $args, $defaults );
extract( $r, EXTR_SKIP );return apply_filters( ‘bp_get_profile_field_data’, xprofile_get_field_data( $field, $user_id ) );
}`
but no go…
*update** the code I tried above ^^ does not work.
So…. something like:
“
bump
bump
guess I’m back to bumping!
why can’t you help me?
I’m going to keep bumping until someone answers me
wow…. why won’t anyone answer me?
bump again
bump
BUMp again
Bump
I’m trying to pass the current poster ID for the forums.., but it’s NOT WORKING!!! with the get_profile_data
Bump ^^^ would like this also.
Worked Great thanks.
@r-a-y, I would love to use this, but I get: `Fatal error: Class ‘BP_Core_User’ not found in`
Here is what I came up with
`<?phpif( bp_is_groups_component() && ‘Support’ == bp_current_item() ):
// New Group Template Here…
<a href="” title=””><a href="” title=””>
Support Group
?>`
But I get: `Parse error: syntax error, unexpected ‘<'`
so like maybe:
`<?php
if( bp_is_groups_component() && ‘Support’ == bp_current_item() ):
// New Group Template Here…
?>
`
was this fixed in 1.2.8?