A
|
alang 4/11/2010 |
Use "Custom" field type in the visual editor and construct the link appropriately using $data["your_other_fields"] as appropriate. ie $value="<a href=...>Link Text</a>"; |
M
|
mdorren author 4/12/2010 |
Thanks for the reply. I have a conceptual understanding of what you just wrote (thus the concat) however, I'm a bit "iffy" regarding the syntax for separating html code from $data[] markers (especially regarding double quotes) For instance, in the case of: |
![]() |
Sergey Kornilov admin 4/13/2010 |
Try this: $value = "<a href="mailto:" . $data["aemail"] . ">" . $data["afullname"] . "</a>";
|
M
|
mdorren author 4/13/2010 |
Try this: $value = "<a href="mailto:" . $data["aemail"] . ">" . $data["afullname"] . "</a>";
|
![]() |
Sergey Kornilov admin 4/13/2010 |
Update: $value = "<a href='mailto:" . $data["aemail"] . "'>" . $data["afirstname"]." ".$data["alastname"] . "</a>"; |
M
|
mdorren author 4/13/2010 |
Update: $value = "<a href='mailto:" . $data["aemail"] . "'>" . $data["afirstname"]." ".$data["alastname"] . "</a>";
|