1

我需要建立一个带有评论选项的新闻详细信息页面。转到详细信息页面时,必须有一个评论选项。所以我配置了 pw_comment 插件。它工作正常。但是所有评论都与每条新闻一起显示。如何仅显示带有相关新闻的评论?请帮我

我的排版设置是

plugin.tx_pwcomments {
    settings {
        useEntryUid = 1
        entryUid = TEXT
        moderateNewComments = 0
        secondsBetweenTwoComments = 60
        entryUid.data = GP:tx_news|uid
        replaceUsernameWith = COA_INT
        replaceUsernameWith {
            10 = TEXT
            10.data = LLL:EXT:pw_comments/Resources/Private/Language/locallang.xml:tx_pwcomments.newComment.loggedInAs

            20 = TEXT
            20.data = TSFE:fe_user|user|username
            20.noTrimWrap = | <b>|</b>|

            stdWrap.wrap = <div class="loggedInAs">|</div>
        }

        replaceMailWith = TEXT
        replaceMailWith.stdWrap.char = 0
    }
}
config.contentObjectExceptionHandler = 0

我的模板包括以下 coe

<f:if condition="{settings.templateLayout} == 'NewsCommentLayout' ">
        <f:then>
                <f:cObject typoscriptObjectPath="lib.pwCommentsIndex" />
                <f:cObject typoscriptObjectPath="lib.pwCommentsNew"/>
        </f:then>

</f:if>
4

2 回答 2

2

我得到了我的问题的解决方案。我编辑了打字稿。

plugin.tx_pwcomments {
    settings {
        moderateNewComments = 0
        secondsBetweenTwoComments = 60
        enableCommentVotes = 0
        enableVoting = 0
        hideVoteButtons = 1
        replaceUsernameWith = COA_INT
        replaceUsernameWith {
            10 = TEXT
            10.data = LLL:EXT:pw_comments/Resources/Private/Language/locallang.xml:tx_pwcomments.newComment.loggedInAs

            20 = TEXT
            20.data = TSFE:fe_user|user|username
            20.noTrimWrap = | <b>|</b>|

            stdWrap.wrap = <div class="loggedInAs">|</div>
        }

        replaceMailWith = TEXT
        replaceMailWith.stdWrap.char = 0
    }
}
config.contentObjectExceptionHandler = 0

[globalVar = GP:tx_news_pi1|news > 0]
plugin.tx_pwcomments.settings {
  useEntryUid = 1
  entryUid = TEXT
  entryUid.data = GP:tx_news_pi1|news
}
[global]
于 2016-07-20T04:52:50.067 回答
0

您需要在某处有一个条件,以仅向每个新闻显示相关评论,而不是向所有新闻系统显示。

最好是使用 TypoScript 向他们展示,然后为某些新闻不出现设置条件。

于 2016-07-19T12:04:53.020 回答