Part title page layout in a tufte document class

layoutpartstufte-book

Following layout problems with my document coming from a Tufte-book documentclass, I took into account the new code presented in the following link, which presents the old and the new code:
layout problem with \full{\printindex} in Tufte documentclass

I still have two issues that I can't seem to resolve, one of which concerns the layout of the intro pages for the Parts (the other is the subject of a separate question). I would like to have the following format:
Good result of Presentation of Part

Unfortunately, the code relative (see below) to the Part title page formatting in the preamble does not give the same result after using the new code, since the title format is changed, and the text moves on the next page (from page 11 to page 12), from front to back. I get the following result and does not match the desired rendering:
Fix presentation

Here is the code which correspond in the preambule to the Part title layout:

% Début Module pour insérer les ornements des parties
\makeatletter
\def\H@old@part[#1]#2{%
    \ifnum \c@secnumdepth >-2\relax
      \refstepcounter{part}%
      \addcontentsline{toc}{part}{\thepart\hspace{1em}#1}%
    \else
      \addcontentsline{toc}{part}{#1}%
    \fi
    \markboth{}{}%
    {%
     \thispagestyle{empty}
     \begin{fullwidth}%
     \centering
     \interlinepenalty \@M
     \normalfont
     \ifnum \c@secnumdepth >-2\relax
       \huge\bfseries \partname\nobreakspace\thepart
       \par
       \vskip 10\p@
       \psvectorian[height=0.2cm]{88}\par
       \vskip 10\p@
     \fi
     \Huge \bfseries #2\par
     \end{fullwidth}%
    }%
    \@endpart}

\makeatother
% Fin Module pour insérer les ornements des parties

How to correct the problem?

Best Answer

UPDATE (removing extra blank pages)

Replace your code by this one

% Début Module pour insérer les ornements des parties
\usepackage{psvectorian}    
\titleclass{\part}{straight}    
\titleformat{\part}%
[display]% shape
{\relax\begin{fullwidth}\fancyhf{}\vspace*{11.5pc}}% format applied to label+text
    {\centering\huge\bfseries \partname}% label
    {10pt}% horizontal separation between label and title body
    {\centering\psvectorian[height=0.2cm]{88}\vspace*{10pt}\\ \huge\bfseries}% before the title body
    [\end{fullwidth}]% after the title body
% Fin Module pour insérer les ornements des parties

a

Related Question