A little question. Why do you have the same plugin repeated with even the same name?
Regards,
]]>My goal is to use the field as sign up for my newsletter list in mailchimp.
Is that possible?
]]>Hello team,
Your plugin is awesome. Can you help me with one small thing? How to display featured image in PDF..Below is my code.
<div class=”bodyPart”>
<?php get_the_post_thumbnail(); ?>
<h2>{title}</h2>
<div class=”text”>{text}</div>
</div>
I want to fetch the featured image of the post to the PDF. I am using the PDF24 plugin.
What is the tag or shortcode that can be used to fetch Featured image on PDF?
Does the code support the php tags?
Changes:
/pdf24-post-to-pdf/inc/config.php
//Availability
$pdf24Plugin['availability'] = array(
'public' => 'For all visitors',
'private' => 'Only for logged in users',
'default' => 'public'
);
/pdf24-post-to-pdf/inc/optionsPage.php
function pdf24Plugin_getAvailabilityOptions() {
global $pdf24Plugin;
$currentAvailability = get_option('pdf24Plugin_availability');
foreach($pdf24Plugin['availability'] as $key => $val) {
if($key != 'default') {
$out .= '<option value="'. $key .'"'. ($key == $currentAvailability? ' selected' : '') .'>'. $val .'</option>';
}
}
return $out;
}
<tr>
<td class="tr1">Availability:</td>
<td class="tr2"><select name="availability"><?php echo pdf24Plugin_getAvailabilityOptions(); ?></select></td>
</tr>
]]>
Instead of using your external server, I’d like to have the entire process done on my client’s server. Is that possible?
]]>Hello!
I just installed this on a single-site. Then I changed some settings, no “custom settings”, just some alternatives and tried to save. I got an error 403 saying I don’t have permissions at
/wp-admin/options-general.php?page=pdf24
Hi,
If I click the button “EMAIL” inside pdf24 window and I insert my email and confirm.
I see in the window a message that tell me the message is successfully sent,
but I do not receive the e-mail with the attached pdf.
Maybe your service is suspended?
Hi
I would like to know if I can only email/save like PDF the html I want. Like:
<?php pdf24Plugin_begin(); ?>
My single text only...
<?php pdf24Plugin_end(); ?>
without the contents (<?php the_content(); ?>) be included.
Kind regards
JKepler
]]>Inside Options page of the plugin I edited the template of the email: Email Options > Body
The text inside the textarea is displaying correctly, also after saving changes.
But inside the source message sended are addes backlash \ can’t understand why.
Portion of source template:
style="background-color:#f5f5f5; margin:0; padding:70px 0 70px 0; -webkit-text-size-adjust:none !important; width:100%">
Portion of email message:
style="background-color:\#f5f5f5; margin:0; padding:70px 0 70px 0; -webkit-text-size-adjust:none \!important; width:100%">
So the messagge is not styled correctly.
]]>Hi,
How to remove or edit this text from plugin popup download option.
“Your job is being processed. Please wait a moment.”
Hi, I would like to know if it is posible to have just 1 page of your PDF, always in all the cases.
]]>Hi, I got this error message:
( ! ) Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in */wp-content/plugins/pdf24-post-to-pdf/inc/common.php on line 722
Currently, Availability does not retrieve the saved value from the database and always defaults to For All Visitors. Can you modify the drop down to pull the actual/last saved value in the DB?
Thanks,
Alex
]]>Is there a way to set the maximum number of pages the PDF will create?
Now it doesn’t create more than 59 pages.
Thanks in advance
]]>hi
Where is the shortcode that i can paste in post or pages, so that proplr click and download pdf. coa i have several tabbed content. Hear is the exact url i am looking into- https://hadithbd.com/show.php?BookID=12&SectionID=198
best regards
dr.rubel
Hi,
I’ve tried to modify my PDF with “Custom document template” but doesn’t work?
All my text on pdf is encode why???
Thanks for answearing me.
]]>Hi,
I’m wondering if it’s possible to send my form with contact form 7 on mail with your plugin?
Thanks
]]>hello and thank you for this usefull plugin.
my probleme / what i have done:
1. I have converted desktop pdf files to html,
2. I have upload the html to wordpress and it works on all devices and browsers ( web page working good: )
3. After sending the email or download the html to pdf the new PDF file have “bitstream vera sans” font family and it brokes my document :(((
not working page after email sent
I think the new font family is added external and i can t change it. Can you help me please ? ??
After i have installed all the download/send pdf plugins i have stick with PDF24 Article To PDF plugin.
]]>Download pdf don’t work,
This file is loading but when i click on dowload don’t work
Can i help me
When downloading the PDF and choosing the EMAIL option, the user receives a text that does not have the correct grammar.
“Thank you for using the 100% virus-free and secure PDF conversion service. That none other can abuse this service to send you SPAM messages and that we have the confirmation to send you emails and attachments to your email address, please click on the following link to activate your email address and to get your converted document.”
Please check.
]]>Hi,
to make the pdf files match the corporate identity of my page, is there any way I can make the converter use the font I specify? I’m using @font-face with embedded fonts.
Thanks,
-mallard66
hi… I have a question … can I show the plugin dwl pdf only on one page and not on all of them? thanks
]]>I’ve been trying to get a CPT archive page to convert to PDF. Basically, i have a CPT acting as a directory with addresses using Advanced Custom Fields, and want to print off a PDF of the archive page that is set up as address labels.
I’ve got it working to the point of showing the post titles in the pdf, but I also need to get the ACF fields showing.
Here’s what’s in my template that needs to print (along with the suggested php codes:
<?php pdf24Plugin_begin(); ?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<article class="listing">
<a href="<?php the_permalink(); ?>" class="listing-link">
<div class="row">
<div class="col-sm-8 col-xs-12 listing-archive-description">
<div class="listing-title-desc">
<?php the_content(); ?>
<h4><?php the_field('SALUTATION');?> <?php the_field('FIRSTNAME');?> <?php the_title(); ?>...</h4>
<p><?php the_field('C_STREET');?></p><p> <?php the_field('C_ADDITIONAL');?></p><p> <?php the_field('C_CITY');?>, <?php the_field('C_PROVINCE');?> </p><p> <?php the_field('C_COUNTRY');?> </p><p><?php the_field('C_POSTALCODE');?></p>
</div>
</div>
</div>
</a>
</article>
<?php endwhile; ?>
<?php pdf24Plugin_end(); ?>
But all i still see is the title. I know in the options i can change the pdf layout, but when i add the required Custom Field elements above, it doesn’t show up.
Any ideas? Am i doing something wrong?
]]>Hello!
I’ve tried to use only some parts of my posts to be printed in the PDF document. I’ve used the code in my template file as I understood when reading the pluggin documentation:
<?php pdf24Plugin_begin(); ?>
Some content I want to display in the PDF
<?php pdf24Plugin_end(); ?>
Some content I don't waant in the PDF
<?php pdf24Plugin_begin(); ?>
Some more content that I want in the PDF
<?php pdf24Plugin_end(); ?>
<?php pdf24Plugin_link(); ?>
It is working, but for each of the diferent parts I add to de PDF, the article title Is displayed. I guess this is happenig because the plugin understands every begin-end as a diferent entry.
I would like the title to be displayed just once, on top of the document, and then just add the content I want.
Is there any placeholder I can use in the “Custom document template” so I can delete {title} from “Custom document entry template”?
Thanks a lot!
]]>Hello!
First of all thanks for this great plugin!
I’m just having some troubles when styling my custom PDF output.
I would like to use an image to be the whole background of the A4, so it has a letterhead and it fits my clients corporate image.
So far I’m using the image and displaying it with the css property background-size: cover;
but it looks like the body doesn’t fill the whole pdf document, it has a margin. I’ve tried styling the body tag, setting margin to 0 and using padding instead, but the margin remains.
Is it possible to acomplish what I’m trying to? Any suggestions?
Thanks a lot beforehand!
]]>Hi,
Great Module.
I would like to change the title at the top of the generated pdf from “Articles From FirstName LastName” to the contents of the {pageTitle} placeholder.
I cannot seem to find it within the Options Page.
Thanks,
Dave M
I have a similar problem to this previous thread (https://www.ads-software.com/support/topic/plugin-pdf24-article-to-pdf-line-break-image-captions?replies=10), though it’s been marked resolved and closed, it seems the issue persists.
First off, thanks for this amazing service. It’s exactly what I was looking for (except the popup, not a fan of that really). I just have one main issue and that’s breaking p tags.
You can see on my site that on certain pages the p tags break perfectly, while on another, using a different PDF24 method, it doesn’t. It’s the same stylesheet, but one method breaks and the other doesn’t.
Here, using the “Top Bottom Plugin” it works perfectly fine. https://mattcromwell.com/easily-george-zimmerman/
Here, embedding the “Link Plugin” into my template file, the P tags break no matter what I do. https://mattcromwell.com/historian/cv/
I’ve tried using the custom templates within the plugin settings. I just tested sending the same page using the Sidebar plugin email function and that plugin ALSO breaks the p tags.
Any advice would be sincerely appreciated.
]]>Hi,
I’m experimenting this plug-in among other to generate pdf’s from pages.
The problem is that my page is quite big (around 40 pages in pdf translated into a wordpress page)
While exporting much smaller pages it runs correctly, but in this it always gives error after a long time. Is there any timeout issue?
Also this page isn’t accessible to the web, but the smaller pages aren’t also but it has correctly created the pdf.
Reducing the page size won’t be a solution since the plugin don’t support aggregating multiple pages into a pdf creation.
Is there any other solution?
Regards
]]>Currently we have some resources to improve our PDF plugin. You can participate to the development by telling us, what features do you miss or what we can do to improve our PDF plugin.
Your wishes will influence development of new versions.
]]>