Hey guys I was wondering how I can make this a valid link that people can click on.
![[Image: 8ec54deee131bc7e2462727f707532ba.png]](https://camo.mybb.com/8757ff9b4cf3c2fbb406cf608c279ced3206f021/68747470733a2f2f692e6779617a6f2e636f6d2f38656335346465656531333162633765323436323732376637303735333262612e706e67)
Where it says Amazon Profile Link. This is a Custom Profile Field.
I tried to enter it with HTML and I got this:
My website is:
http://www.AmazonReviewCentral.com
Thanks in advance!
in your link, remove &pid=7#pid7 and check
You can't include HTML in profile field descriptions. They're escaped:
https://github.com/mybb/mybb/blob/featur...r.php#L898
$profilefield['description'] = htmlspecialchars_uni($profilefield['description']);
You can remove the escaping function from there and other places (usercp.php, ACP), but it's not recommended as it's a security risk.
(2016-01-11, 12:49 PM)Destroy666 Wrote: [ -> ]You can't include HTML in profile field descriptions. They're escaped: https://github.com/mybb/mybb/blob/featur...r.php#L898
$profilefield['description'] = htmlspecialchars_uni($profilefield['description']);
You can remove the escaping function from there and other places (usercp.php, ACP), but it's not recommended as it's a security risk.
Where can I find this "usercp.php"? I've been looking for it in the ACP but I guess I don't really know where to look.