![]() |
Replace some characters in User Profile Field content (Many people should need it)
I need to replace some characters in User Profile Field content,
for example aaa to be bbb maybe there is two way, please help to make one of them or both works : 1. i see in User Profile Field Manager, there is regex function, what is the regex function patern to search and replace there? 2. or using a plugin with profile_updateprofile hook, but looks like below variable code in red are still wrong, so this is still not working Quote:
|
I think you may need to use
HTML Code:
$this->registry->userinfo['fieldx']) |
thank you for replying, Simon Lloyd, i already tried it :
Quote:
Quote:
i already tried this too Quote:
please help guys, make this plugin working, or using regex function patern to search and replace in the profile fields |
It might work if you use hook profile_start and code like this:
Code:
if ($_POST['do'] == 'updateprofile') but of course you need to set $field to something. |
thank you for replying too, i already tried the code and using profile_start hook
but its looks like still not working do you mean change $field, to using field id like this right : $field1, or is it need other variable? please help guys, i think this is basic thing that needed for vb, it will be rare characters that we want to replaced, but its should be patched too |
It wouldn't be $field1 but rather ['field1'] so the id of the field you are trying to manipulate :)
|
Hmm i am afraid still not working
using this Quote:
or this Quote:
how is it the code actually? |
Have you thought about leaving out you IF condition and see if you can get a replacement every time the hook is called?
|
If you mean removing the if condition, i already tried it too
Quote:
or this Quote:
but still not replacing too, you can try it in your vb3 test site, or i can give a vb3 test site access if you like |
Sorry, I left something out in the code I posted. It should have been:
Code:
$vbulletin->input->clean_gpc('p', 'userfield', TYPE_ARRAY); By the way, the reason that I thought profile_start would be better is that at profile_updateprofile the datamanager fields have been set already, so just doing a replace won't work. |
Dear kh99, i am sorry, so is it like this
Quote:
or this one Quote:
i tried both got error message like this Parse error: syntax error, unexpected '=' in /home/username/public_html/profile.php(156) : eval()'d code on line 22 |
No, just the one change, like this:
Code:
if ($_POST['do'] == 'updateprofile') Where you replace the 2 occurrences of 'fieldX' with the real field name that you want to change. Quote:
Code:
$fields = array('field4', 'field7', 'field8'); |
Dear kh99, thank you for explaining it again, but its looks like still not working
Quote:
is it working in your vbulletin test? if needed i can give a vb3 test site access |
Well, I have a vb3 test site, but I haven't actually tried this code. But now I see that I've misled you again with another mistake. The last line should be:
Code:
$vbulletin->GPC['userfield']['field1'] = str_replace($fieldcontentbefore, $fieldcontentafter, $vbulletin->GPC['userfield']['field1']); ETA: ...and that seems to work for me. I used 'field4' (Occupation) and when I edited my details and put in "aaa" it was set to "bbb". Also, that will obviously only work if the entire sting matches. If you want substrings, I think this should work: Code:
if ($_POST['do'] == 'updateprofile') Note the before array needs '/' before and after the string to be matched. |
Gorgeus!! many thanks kh99!!
i recommend release a mod for it we already have global replacement variable we already have replacement in postbit and this one is replacement in profile field |
All times are GMT. The time now is 01:35 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|