Plugin Author
pdf24
(@pdf24)
Do you have a link to your blog with enabled plugin?
Custom fields require some special considerations because they often are not part of the post content itself. You have to mark the area in a template file which part is your content. This can include custom fields.
Please read the installation part of the plugin. There is the part “Custom Fields Support”. Look at http://wordpress.org/extend/plugins/pdf24-post-to-pdf/installation/ and also look at the FAQ section http://wordpress.org/extend/plugins/pdf24-post-to-pdf/faq/ which contains some more information about custom fields support.
Generally custom fields must be enclosed by codes so that pdf24 knows which parts to add to the PDF file. This is done by the following code:
<?php pdf24Plugin_begin(); ?>
<?php the_content(); ?>
... Your custom fields code ...
<?php pdf24Plugin_end(); ?>
<?php pdf24Plugin_post(); ?>
Plugin Author
pdf24
(@pdf24)
The image problem exists if one of the following is true:
You use a plugin like lazy load which modifies you images so that the images are not visible to the PDF converter.
Your images are not visible to the converter which is an internet service. That can be if you develop on localhost and that host is not visible to the converter. If you use the plugin on a host which is visible to the converter then images will be part of the PDF file.
Does anyone know of a fix for the lazyload problem?