I first bring the last added car with a description and a photo, and below I bring out a list of all the other cars, but for some reason the output and the output of the car are lower, although I have indicated an offset = 1

Последнее добавленное авто(первое выведенное авто с описание) [[!getResources? &parents=`23` &showHidden=`1` &tpl=`lostAuto` &limit=`1` &depth=`0` &includeContent=`1` &includeTVs=`1` &processTVs=`1` &tvPrefix=`` &hideContainers=`1` &sortby=`{"publishedon":"DESC"}` ]] 

output of the remaining cars (all the rest of the cars)

  [[!getPage? &elementClass=`modSnippet` &element=`getResources` &sortby=`{"publishedon":"DESC"}` &offset=`1` &showHidden=`1` &tpl=`AutoSaleTpl` &limit=`20` &includeContent=`1` &includeTVs=`1` &processTVs=`1` &tvPrefix=`` &parents=`23` &hideContainers=`1` &pageLimit=`20` &pageNavVar=`page.nav` ]] 

& offset = 1 does not work, everything is exactly the last record added

    1 answer 1

    offcet when calling getPage overridden so nothing surprising. Fortunately, you can easily solve this problem through modic output filters ( http://rtfm.modx.com/display/revolution20/Input+and+Output+Filters+%28Output+Modifiers%29 ). Since "Last added car" displays only one, you can add a line to lostAuto chunk

     [[+id:toPlaceholder=`lostAutoId`:notempty=``]] 

    after which it remains only to add one more parameter to the getPage call -

     &where=`{"id:!=":[[+lostAutoId]]}`