pdf24
Forum Replies Created
-
Forum: Plugins
In reply to: [PDF24 Articles To PDF] locked pdfs?What do you mean?
Forum: Plugins
In reply to: [PDF24 Article To PDF] Bad PDF qualityPlease try again…
Forum: Plugins
In reply to: [PDF24 Articles To PDF] several postsHi, this plugin can export the posts which are shown on the current page. If the current page shows multiple posts then the plugin can export all posts.
The plugin contains several featues. There is the article bar which is shown below each article. This bar exports only the above article.
There is also the sidebar feature or the widget feature. This will create a PDF file from all articles on the current page.
If some plugin code is added within the wordpress loop then the code only exports the current post. If a code is added outside the loop then all posts will be exported.
Have you seen that there are multiple features which can be enabled each on it’s own? You also have to add some peace of code to a template if you use the sidebar or link feature.
The plugins settings area shows what code you have to add.
If you have problems, please let me know.
Forum: Reviews
In reply to: [PDF24 Article To PDF] Nice Free PluginYou can change the image and center in the sidebar by changing the css options in the config. normally all things can be changed by changing the css or by changing the style files of the plugin.
Forum: Plugins
In reply to: [PDF24 Article To PDF] Create PDF from separate template?You can use the following code too mark your content which should be added to the PDF file:
<?php pdf24Plugin_begin(); ?>
<?php the_content(); ?>
<?php the_meta(); ?>
<?php pdf24Plugin_end(); ?>
<?php pdf24Plugin_form(get_the_ID()); ?>And elsewhere in the page add a button to create the PDF file:
pdf24Plugin_formSubmit(get_the_ID())Forum: Plugins
In reply to: [PDF24 Article To PDF] How to Center Align PDF24 Image in sidebarYou can customize the styles. Use Firebug or something like that to to see what the plugin outputs and then add a style block which does what you want.
Forum: Plugins
In reply to: [PDF24 Article To PDF] Link to down load pdf NOT working in Fire FoxHmm.. tested today and I have no problem with my firefox. Which firefox version do you use?
Forum: Plugins
In reply to: [PDF24 Article To PDF] Page Break after each PostI’ll check that and I give you feedback, hopefully tomorrow.
Forum: Plugins
In reply to: [PDF24 Article To PDF] Include PDF24 to Selective PagesThen you could add custom code to a template. Could could enable/disable the plugin on that pages. You can also call the Link method which generates a PDF Link on that pages.
Feature request is still on TODO and will implemented soon.
Forum: Plugins
In reply to: [PDF24 Article To PDF] [Plugin: PDF24 Article To PDF] Pages???Yes, PDF files can also be created from pages. That’s no problem for newer plugins.. We have added the functionality in the past.
Forum: Plugins
In reply to: [PDF24 Article To PDF] PDF24 and WPML SupportWorks in the current version.
Forum: Plugins
In reply to: [PDF24 Article To PDF] [Plugin: PDF24 Article To PDF] Images not displayedImages are also not added to the PDF files if you develop on localhost or an other host which is not visible to the internet and therefore not visible to the PDF24 converter service.
If the images are on a host so that the converter can load them, then the images will be added to the PDF files, except if the images tags are modified or removed by plugins like the mentioned lazy load one.This is now in TODO so that we will think over that point and we try to implement that so that that feature can be added to a later version.
Currently you could implement this functionality for your own by adding a call to
pdf24plugin_link()into your template where a PDF link shall appear. Then you can control on which posts or on which places the link is available.