Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I have interactive pdf documents that I need to put on a wordpress site. Visitors need to be able to fill these in and print them out to sign and post. They do not need to be emailed or saved to the site. I have tries embedding them with all kinds of plugins but all they do is embed a non fillable pdf.

What I need is this : http://download.belastingdienst.nl/belastingdienst/docs/aangifte_bpm_verzoek_teruggaaf_bpm_bpm0162z3plfol.pdf

Hope anybody can help.

Kind Regards, Marja

share|improve this question

1 Answer

up vote 0 down vote accepted
  • How did you tried to embed them?
  • Is it post or page?

My solution would be to add it into an iframe , add code below as html to your page/post.

<iframe frameborder="1" height="200" name="frame1" scrolling="yes" src="http://download.belastingdienst.nl/belastingdienst/docs/aangifte_bpm_verzoek_teruggaaf_bpm_bpm0162z3plfol.pdf" width="550"></iframe>

you should change the width and height accordingly ofcourse.

Let me know if it worked.

share|improve this answer
Thanks!!! This works great. I just embeded the pdf before. – Marja Aug 21 '12 at 15:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.