phpBB用于特定字段标识的自定义字段

时间:2013-05-27 07:21:12

标签: phpbb phpbb3

如果字段有值,我正在尝试显示自定义配置文件字段中的值。

传统上,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?之后的值未显示且链接无效。

有人可以指出我正确的方向来解决这个问题吗?

由于

1 个答案:

答案 0 :(得分:2)

<!-- IF postrow.custom_fields.PROFILE_FIELD_NAME eq "My Project Thread Name" -->
<dd><a href="/board/viewtopic.php?{postrow.custom_fields.PROFILE_FIELD_VALUE}">My Project Thread</a></dd>
<!-- ENDIF -->