Folded Brochure

★★★★☆ (126 reviews)

170 gsm silk, folded and trimmed. Supply one PDF with every page in order; we'll check it has the right number of pages for the fold you picked.

£0.00 inc. VAT

Try it: upload a PDF that passes at 4 pages, then switch the fold to 8. The same file is now wrong; and Filecheck says so without re-reading the file. Add ?fcdebug=1 to see what's read off this page.

What the shop actually added

Two read entries. The page count comes from a dropdown of plain numbers; the size dropdown holds its label and its dimensions in one string, so a pattern pulls both out at once.

connector: {
  entries: [
    { type: 'read', field: 'pages', customSelector: '#brochure-pages' },

    { type: 'read', field: 'size', customSelector: '#brochure-size',
      pattern: '(?<width>[\\d.]+)\\s*[x×]\\s*(?<height>[\\d.]+)',
      convertFrom: 'mm' },
  ],
}

Named groups width and height fill both dimensions from one control. If the pattern ever stops matching, the entry contributes nothing rather than guessing, the saved rule applies instead.