hi i have Pro+ but when I insert header to document .docx this put the header but clean the information of this document? why?
I have this code:
$code='123456789';
$archivo='../files/Text.docx'
$docx = new CreateDocx();
$docx->addHeader('CodeNumber : '.$code, $paramsHeader);
$docx->addDOCX($archivo);
$docx->modifyPageLayout('A3');
$docx->setDefaultFont('Arial');
$docx->setLanguage("es-ES");
$docx->createDocxAndDownload($archivo_destino);