Service Manual Library | Restor Electronics

Restor Electronics

Appliance Service Manual & Technical Library

Enter a model number or select a brand to search the technical library.

PDF Viewer

© 2026 Restor Electronics

Appliance Repair & Technical Resources

``` ## Folder setup Your website should be organized something like this: ```text public_html/ │ ├── index.html ├── manuals.html │ ├── images/ │ └── manuals/ │ ├── whirlpool/ │ ├── refrigerators/ │ │ ├── wrf535swhz07-service-manual.pdf │ │ ├── wrf535swhz07-wiring-diagram.pdf │ │ └── wrf535swhz07-tech-sheet.pdf │ │ │ └── washers/ │ └── wfw5605mw-service-manual.pdf │ ├── samsung/ │ └── refrigerators/ │ └── rf28r7351sg-service-manual.pdf │ └── lg/ └── washers/ └── wm4000hwa-service-manual.pdf ``` ## Adding another manual Suppose you upload this file: ```text /manuals/whirlpool/dryers/wed5000dw-service-manual.pdf ``` Add this entry inside the `manuals` JavaScript list: ```javascript { brand: "Whirlpool", model: "WED5000DW", appliance: "Dryer", documents: [ { name: "Service Manual", file: "/manuals/whirlpool/dryers/wed5000dw-service-manual.pdf" } ] } ``` Then searching for: ```text WED5000DW ``` will automatically display the manual. ## Multiple documents for one model You can also attach several PDFs to one appliance: ```javascript { brand: "Whirlpool", model: "WRF535SWHZ07", appliance: "Refrigerator", documents: [ { name: "Service Manual", file: "/manuals/whirlpool/refrigerators/wrf535swhz07-service-manual.pdf" }, { name: "Wiring Diagram", file: "/manuals/whirlpool/refrigerators/wrf535swhz07-wiring-diagram.pdf" }, { name: "Tech Sheet", file: "/manuals/whirlpool/refrigerators/wrf535swhz07-tech-sheet.pdf" }, { name: "Error Codes", file: "/manuals/whirlpool/refrigerators/wrf535swhz07-error-codes.pdf" } ] } ``` That will automatically produce four buttons: **Service Manual | Wiring Diagram | Tech Sheet | Error Codes**