Forum Replies Created
-
In reply to: YouTube videos not embedding
Even using [embed], it doesn’t work..
Check it out: http://www.arkade.com.br/comunidades/anime/forum/topic/melhores-animes-que-voces-ja-assistiram/?I tried with vimeo and it works OK, youtube embedding works on the rest of the website too, everywhere but the forums..
Maybe the precedence of making it a clickable link is doing its thing before it can embed?In reply to: Thousands of spam subscribersWhat I use is buddypress captcha for registration, works like a charm!
In reply to: Group avatar losing PNG transparencyThe thing is that wp-crop-image has changed with the new editor in 3.5, now every web page showing how to do that trick is outdated..
In reply to: Group avatar losing PNG transparencyI had changed something in the code that was saving it as a JPG, but was still a PNG, keeping the transparency. Maybe I had changed something in the wp core, according to some website I found on the web, but now I can’t find it again
Do you have any idea on how I can get this back?
In reply to: Group avatar losing PNG transparencyok this might sound weird.. but.. the JPEG saved actually had transparent background, take a look at this: http://www.arkade.com.br/wp-content/uploads/group-avatars/16/c57713e3bfea3eec42c644783894570c-bpfull.jpg
So, the thing is, it used to keep the bg transparent, even converting to a jped file. Now it converts to a black bg.. any thoughts on that?
In reply to: Group avatar losing PNG transparencyps: the image is converted to JPG after the cropping
ps2: I have a 24bit pngIn reply to: Add a character limit to fields in registration formbump, again
In reply to: Edit profile data validationActually I think it is impossible without modifying the core files. Any character limit or other custom validation is lost in the edit profile page, and since the $error is a local variable on xprofile_screen_edit_profile, there is no way to set it. Can you confirm that @djpaul?
I don’t know if this is planned for future releases, but I could help build a better validation code for user registration and edit profile. Adding a character limit to fields would be nice.In reply to: Edit profile data validation@djpaul thanks for the reply
I found what is going on: xprofile_check_is_required_field bypasses if user is administrator, that’s why I was able to save required fields empty.
Now I am trying to hook xprofile_check_is_required_field to a bp-custom function called check_and_validate that also checks the fields for a character limit (another very important missing security feature I pointed out on another post.) But somehow it is not working.. any ideas on how to do it?By the way Paul, how can I submit tickets on bug tracking? I’ve been messing around with buddypress a lot lately and found a couple.
Sure, sorry if I was not clear..
I have a small community, approx 60 members, and everyone know each other in real life, so for this case it’s pointless to enable friends connection, since everyone are already friends..Well, for the private messages, I want users to be able to communicate with messages, but only 1 on 1 conversations, no group conversations. When a user sends a message, I whant them to be able to send only to one person, no more than that.
Good plugin, but not exactly what I am looking for..
I have ‘friends’ disabled on my site, but I have messaging enable (my community is too small to divide by friends). I want messaging to only happen between 2 people. Any ideas?So, should I submit this as a bug ticket?
In reply to: Add a character limit to fields in registration formbump, can anyone help?
In reply to: Add a character limit to fields in registration formbump
In reply to: Editing Group and Forum page title tagsI got this guys, here is the code I ended up with..
Code:function my_page_title( $title) {
global $bp;if ( $bp->current_action == ‘forum’ && $bp->action_variables[0] == ‘topic’ ) {
return bp_get_the_topic_title(). ‘ | ‘ . bp_current_action() . ‘ ‘. bp_get_current_group_name(); ;
}
else
return $title;
}
add_filter( ‘bp_modify_page_title’, ‘my_page_title’, 10);bump.
In reply to: Add a character limit to fields in registration formI found out people limit the output of the data.
Not a very good solution.. An unlimited field is a potential security risk to a website.In reply to: Add a character limit to fields in registration formanyone? I believe this is an important flaw..
bump..
In reply to: Post sticky in all group forums with one topicHave you had any success with this? I am also looking for it.. My solution for now is to create a ‘Read this first’ page, not a topic post.