Print Cforms form as pdf

With help from a dev at WordPress Questions I got this solved. In wp-content/plugins/cforms/cforms.php we added require_once(dirname(__FILE__) . ‘/html2pdf/html2pdf.class.php’); which loaded all the necessary data from the folder html2pdf which has all the files based on code from html2pdf.fr Further in the same file after $newcontent .= substr($content,$last); we have code to pdfy the code: … Read more

attach a PDF to an archives template?

I recommend this plugin all of the time even though I have no association whatsoever with the plugin or the author of it. It’s free and allows you to add custom upload fields and all kinds of goodies to your edit screens without touching code. It’s called Advanced Custom Fields. Some developers would frown upon … Read more

Is it possible to embed animated GIFs in PDFs?

I haven’t tested it but apparently you can add quicktime animations to a pdf (no idea why). So the solution would be to export the animated gif to quicktime and add it to the pdf. Here the solution that apparently works: Open the GIF in Quicktime and save as MOV (Apparently it works with other … Read more