Quote:
Originally Posted by chuchukuttie
Hey,
Why not make the "Age" & "Date of Birth" be clickable. That'll be cool.
P.S - If possbile, can you please make it searchable by "word" ? One of my member has this as his interest: I love music and I love to dance. < Your product makes the sentence clickable, can you please make every word in that sentence clickable? That will be amazing.
Thanks.
|
I will look into birthday search.
It would not be ideal to make words like "I", "to", "have" clickable, instead ask users to separate each word or sentence they want linked with a comma.
but if you really want to you can edit the plugin and change the code
find all instances of
PHP Code:
$fieldvalues = explode(",", $profilefield['value']);
and replace with
PHP Code:
$fieldvalues = explode(" ", $profilefield['value']);
that should work.