Created an additional field called " Column " (radio), with possible values:

Первая колонка==firstColumn||Вторая колонка==secondColumn 

On the page of the site it is planned to display materials marked firstColumn in the first column, and secondColumn in the second column .

In the page template I make a conclusion for the first column:

 [[!pdoResources? &parents=`13` &tpl=`myTpl` &processTVs=`1` &includeTVs=`firstColumn` ]] 

Tell me, what should I do next, so that only materials marked as firstColumn are output ?

    1 answer 1

    In includeTVs you need to add the name of the TV, not its value:

     &includeTVs=`Column` 

    And in order to filter resources by the value of this TV, you need to use the tvFilters parameter

     &tvFilters=`Column==firstColumn` 
    • Thank you, Vasis! I had a mistake because of which resources were not displayed when everything was done correctly. When I fixed it, your answer helped me adjust the display. - ov seo