如果字段有值,我正在尝试显示自定义配置文件字段中的值。
传统上,phpBB在viewtopic_body.html
<!-- BEGIN custom_fields -->
<dd><strong>{postrow.custom_fields.PROFILE_FIELD_NAME}:</strong> {postrow.custom_fields.PROFILE_FIELD_VALUE}</dd>
<!-- END custom_fields -->
我的字段标识名称为myprojectsthread
,并且在上述代码后添加。我已将值放入我自己的配置文件中,并使用以下代码显示自定义字段
<!-- IF postrow.custom_fields.PROFILE_MYPROJECTTHREAD_NAME -->
<dd><a href="/board/viewtopic.php?{postrow.custom_fields.PROFILE_MYPROJECTTHREAD_NAME}">My Project Thread</a></dd>
<!-- ENDIF -->
链接显示成功,但viewtopic.php?
之后的值未显示且链接无效。
有人可以指出我正确的方向来解决这个问题吗?
由于