www.remarpro.com

Plugin Directory

PDF & Print by BestWebSoft – WordPress Posts and Pages PDF Generator Plugin

PDF & Print by BestWebSoft – WordPress Posts and Pages PDF Generator Plugin

Description

With this plugin you can create PDF files and print pages quickly. Add PDF & print buttons to WordPress website pages, posts, and widgets.

Generate documents with custom styles and useful data for archiving, sharing, or saving.

View Demo

Free Features

  • Automatically add PDF & Print buttons to:
    • Pages
    • Posts
    • Search results
    • Archives
    • Custom post types
  • Select position of the buttons in content:
    • Top left
    • Top right
    • Bottom left
    • Bottom right
    • Top & Bottom Right
    • Top & Bottom Left
  • Add buttons to widget area
  • Add buttons via shortcode
  • Set button type:
    • Image
    • Text
    • Image + Text
  • Change PDF button action:
    • Download PDF
    • Open PDF in a new window
  • Display PDF & Print buttons for certain user roles
  • Display data generated by shortcodes in document
  • Add title and featured image to the document
  • Set custom featured image size
  • Set PDF document size
  • Set custom margins for PDF document:
    • Left
    • Right
    • Top
    • Bottom
  • Customize document styles
  • Create PDF that fully copies the page
  • Compatible with latest WordPress version
  • Incredibly simple settings for fast setup without modifying code
  • Detailed step-by-step documentation and videos
  • RTL ready

Pro Features

All features from Free version included plus:

  • Add text or image watermark
  • Prevent copying of PDF file content
  • Customize watermark opacity
  • Create custom document header and footer templates with:
    • Images
    • Text
    • Date created
    • Source page URL
    • Post date (current date for search and archive pages)
    • Current page number (for PDF only)
    • Total pages count in document (for PDF only)
    • Post author (for single posts or pages only)
  • Compatibility with Advanced Custom Fields
  • Set custom top and bottom margins for running title
  • Add and manage:
    • Custom fields
    • Custom data
  • Add custom fields/custom data:
    • Before content
    • After content
  • WooCommerce compatibility
  • Set PDF layout:
    • Portrait
    • Landscape
  • Set custom images for buttons
  • Disable PDF & Print buttons for certain pages and/or post types
  • Disable PDF & Print buttons for certain users and/or roles types
  • Additional Elements to single post type [NEW]
  • Dinamic URI for PDF document [NEW]
  • Change default PDF file name
  • Prevent search engines from indexing links in documents
  • Add custom code via plugin settings page
  • Configure all subsites on the network
  • Get answer to your support question within one business day (Support Policy)

Upgrade to Pro Now

If you have a feature suggestion or idea you’d like to see in the plugin, we’d love to hear about it! Suggest a Feature

Documentation & Videos

Help & Support

Visit our Help Center if you have any questions, our friendly Support Team is happy to help – https://support.bestwebsoft.com/

Affiliate Program

Earn 20% commission by selling the premium WordPress plugins and themes by BestWebSoft — https://bestwebsoft.com/affiliate/

Translation

  • Russian (ru_RU)
  • Ukrainian (uk)

Some of these translations are not complete. We are constantly adding new features which should be translated. If you would like to create your own language pack or update the existing one, you can send the text of PO and MO files to BestWebSoft and we’ll add it to the plugin. You can download the latest version of the program for work with PO and MO files Poedit.

Recommended Plugins

  • Updater – Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.
  • Multilanguage – Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc.

Credits

Screenshots

  • Displaying PDF&Print buttons in the post on your WordPress website.
  • Displaying PDF&Print buttons on archive page of your WordPress website.
  • Displaying PDF&Print buttons in widget.
  • Printing output page example.
  • PDF output page example.
  • Settings page (Settings tab) for the PDF&Print in admin panel.
  • Settings page (Output tab) for the PDF&Print in admin panel.

Installation

  1. Upload pdf-print folder to the /wp-content/plugins/ directory.
  2. Activate the plugin via the ‘Plugins’ menu in WordPress.
  3. Plugin settings are located in “PDF & Print”.

View a Step-by-step Instruction on PDF & Print Installation

FAQ

Buttons for content do not appear on page

Go to the Settings page and change value for the ‘Add Button to’ option.

Why are PDF and Print buttons not displayed in the custom post type ?

  1. Please make sure that displaying of PDF/Print buttons is enabled for the necessary custom post type on the plugin settings page. If necessary, mark the checkboxes and save changes.
  2. Check displaying the buttons on the specified pages in the front end of your site.

If buttons are still not displayed, please complete the following:

  1. Try activating a standard WordPress theme for a while (Twenty Fifteen, Twenty Sixteen) and check if the problem remains.
  2. Try deactivating all of your plugins except PDF & Print by BestWebsoft and also check if the problem is still present. If it is not, activate the plugins one-by-one, meanwhile checking, after which plugin activation the problem appears again.

Also, if you are using custom template you should paste the following string to the custom post or page template in order to use PDF and Print buttons:

  • in the top of the post or page template

  • in the bottom of the post or page template

You can specify some query parameters for your post. For example:

<?php do_action( 'bwsplgns_display_pdf_print_buttons', 'bottom', 'post_type=gallery&orderby=post_date' ); ?>

or

<?php do_action( 'bwsplgns_display_pdf_print_buttons', 'bottom', array( 'post_type'=>'gallery', 'orderby'=>'post_date' ) ); ?>

For more information on the syntax for assigning parameters to function see here.

Why in pdf/print-document displayed not all information from page

For generating a pdf/print page version, PDF & Print plugin uses the content that is featured in the body of post/page before it is displayed by the browser (i.e. the data featured in the main block on this post/page in the edit mode).

If I have shortcode on the page, but I don’t want them to be printed (add to pdf)

Go to the Settings page and unmark checkbox ‘Print Shortcodes’.

How can I change the content pdf/print document?

You can use following filters if “Full Page PDF” option is disabled:

  • in order to change main content of pdf/print document

    add_filter( ‘bwsplgns_get_pdf_print_content’, {your_function} );

  • in order to change top running title

    add_filter( ‘bwsplgns_top_running_title’, {your_function} );

  • in order to change bottom running title

    add_filter( ‘bwsplgns_bottom_running_title’, {your_function} );

  • in order to change the title of pdf/print document

    add_filter( ‘bwsplgns_get_pdf_print_title’, {your_function}, 10, 2 );

For example, go to the plugin settings page -> “Custom Code” tab, mark “Activate custom PHP code.” checkbox in the “PHP” section and add the following code:

add_filter(
    'bwsplgns_get_pdf_print_content',
    function( $content ) {
        $my_content   = '<p>Lorem ipsum dolor sit amet</p>';
        $more_content = '<p>Donec fringilla libero ac sapien</p>';

        /* if you want add some data before to the main content */
        return $my_content . $content;

        /* if you want add some data after the main content */
        return $content . $my_content;

        /* if you want add some data both sides the main content */
        return $my_content . $content . $more_content;

        /* if you want add some data instead of the main content */
        return $my_content;
    }
);

For more information about WordPress filters see here.

If “Full Page PDF” option is enabled please use beforeImageToPdf() and afterImageToPdf() JavaScript functions for changing PDF document.
For example, go to the plugin settings page -> “Custom Code” tab, mark “Activate custom JavaScript code.” checkbox in the “JavaScript” section and add the following code:

function beforeImageToPdf() {
    document.getElementById("site-header").style.display = "none";
}
function afterImageToPdf() {
    document.getElementById("site-header").style.display = "block";
}

Replace “site-header” on the id of the element you need to hide.

How can I add different styles to PDF and Print pages?

To do that, go to Dashboard->PDF & Print->Output and mark “Custom CSS” checkbox. Enter the required styles in the “Custom CSS” field. You can use the class ‘pdfprnt_print’ in order to add some styles only for Print pages.

For example:

body p {
    color: green;
}
.pdfprnt_print p {
    color: red;
}

Also you can use filter ‘bwsplgns_add_pdf_print_styles’ to include additional css-files.

For example:

Let’s imagine that you have files style.css, style_print.css and style_pdf.css and you want include them to your PDF or Print pages.

  1. Upload these files to the folder ‘wp-content/uploads’ via FTP.
  2. Go to the plugin settings page and open “Custom Code” tab.
  3. Mark “Activate custom PHP code” checkbox in “PHP” section and insert the following code:

    add_filter(
    ‘bwsplgns_add_pdf_print_styles’,
    function( $styles ) {
    $styles[] = array( ‘wp-content/uploads/style_pdf.css’, ‘pdf’ ); /* file will be included to PDF pages /
    $styles[] = array( ‘wp-content/uploads/style_print.css’, ‘print’ ); /
    file will be included only to Print pages /
    $styles[] = array( ‘wp-content/uploads/style.css’ ); /
    file will be included to PDF and Print pages */
    return $styles;
    }
    );

I get an error “Warning: file_put_contents(/public_html/wp-content/plugins/pdf-print/mpdf/ttfontdata/dejavusanscondensed.GSUBGPOStables.dat): failed to open stream: Permission denied in /***/wp-content/plugins/pdf-print/mpdf/classes/ttfontsuni.php on line 1145”. What can I do?

Probably, you don’t have sufficient access permissions to files and folders.

To solve this, please try the following:

  1. using FTP, please go to the folder “/public_html/wp-content/plugins/pdf-print”
  2. please check what permissions are set on the “mpdf” folder (755 must be set for the folder and 644 for files)
  3. if there are another permissions set, please change them

For more info see Changing File Permissions.

How can I load additional fonts for MPDF library?

Please follow the next steps:

  1. Go to the plugin settings page
  2. Switch to the “Output” tab
  3. Find “Additional Fonts” option and click “Load Fonts” button

or

  1. Download MPDF library by link https://github.com/lynxbee/mpdf
  2. Using FTP, load the file mpdf-master.zip to the folder “{your_site_home_folder}/wp-content/uploads”
  3. Go to the plugin settings page
  4. Switch to the “Output” tab
  5. Find “Additional Fonts” option and click “Load Fonts” button

I have some problems with the plugin’s work. What Information should I provide to receive proper support?

Please make sure that the problem hasn’t been discussed yet on our forum (https://support.bestwebsoft.com). If no, please provide the following data along with your problem’s description:

  1. the link to the page where the problem occurs
  2. the name of the plugin and its version. If you are using a pro version – your order number.
  3. the version of your WordPress installation
  4. copy and paste into the message your system status report. Please read more here: Instruction on System Status

Can I remove content added by shortcodes?

To remove the shortcode, please use ‘bwsplgns_pdf_print_remove_shortcodes’ hook:

  1. Go to the plugin settings page;
  2. Open “Custom Code” tab, mark “Activate custom PHP code.” checkbox in the “PHP” section;
  3. Add the following code (as example):

    function pdf_print_remove_shortcodes( $shortcodes_array ) {
    $shortcodes_array[] = ‘bestwebsoft_contact_form’;
    return $shortcodes_array;
    }
    add_filter( ‘bwsplgns_pdf_print_remove_shortcodes’, ‘pdf_print_remove_shortcodes’ );

Replace bestwebsoft_contact_form with your shortcode.

Reviews

April 3, 2024
This is a no nonsense plugin with no unnecessary frills and stuff. It is fast and efficient. Just what I need.
December 28, 2023 1 reply
This plugin does not work with my Wordpress that is using the GeneratePress theme. Clicking the PDF button creates a “fatal error” due to the PHP of the plugin not being able to handle when the values of things like “margin-left” are set to ‘auto’. There are multiple instance in the code when a string is multiplied or counted, which makes fatal errors
September 11, 2023
I am extremely satisfied with the PDF plugin. At first, I encountered some difficulties, but thanks to the exceptional support I received, we achieved outstanding results. The support was prompt and highly competent, addressing every doubt I had and customizing the plugin to meet my specific needs. Now, I can easily generate high-quality PDFs from my website’s content, significantly enhancing the user experience. I wholeheartedly recommend this plugin to anyone in need of creating customized PDFs from web content, with the assurance of excellent support.
April 25, 2023 3 replies
FTY: This plugin doesn’t support dynamic pages. On WP 6.2, I have tried with and without using a shortcode and one generates a PDF with a title and no other contents and the other generates a completely blank page. The non-shortcode test was for “Plants” custom page type which is ticked in settings. The button shows up on the bottom right (it is configured for top right).
August 5, 2022
I bought the plugin for a customer. Managed to setup the basics to output a page as an image PDF (using DIVI theme). That works just fine and support is superb! Have to read about how to setup the custom fields section, but no need for that right now. My customer is very content so I am more than content with it.
July 13, 2022 1 reply
After installing the plugin, the following URL will be indexed in Google //site.com/url/?print=pdf How can this (?print=pdf) not be indexed in Google? I deleted the plugin but it (?print=pdf) is still in the link address and it is indexed in Google How to solve the problem and remove this (?print=pdf) in url
Read all 100 reviews

Contributors & Developers

“PDF & Print by BestWebSoft – WordPress Posts and Pages PDF Generator Plugin” is open source software. The following people have contributed to this plugin.

Contributors

“PDF & Print by BestWebSoft – WordPress Posts and Pages PDF Generator Plugin” has been translated into 2 locales. Thank you to the translators for their contributions.

Translate “PDF & Print by BestWebSoft – WordPress Posts and Pages PDF Generator Plugin” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

V2.3.9 – 20.09.2024

  • Update : BWS Panel section update.
  • Update : Check settings notice has been added.

V2.3.8 – 25.07.2024

  • Update : All functionality was updated for WordPress 6.6.
  • Bugfix : Broken image for buttons fixed.

V2.3.7 – 10.05.2024

  • Update : BWS Panel section update.
  • Update : All functionality was updated for WordPress 6.5.
  • NEW : Additional Elements Category to single post type has been added.
  • Pro : Send to mail feature for PDF document has been added.

V2.3.6 – 28.12.2023

  • Bugfix : Syntax errors fixed.

V2.3.5 – 26.12.2023

  • Update : All functionality was updated for WordPress 6.4.
  • Bugfix : Minor bugs fixed.

V2.3.4 – 01.12.2023

  • Update : BWS Panel section update.
  • Update : All functionality was updated for WordPress 6.3.1.
  • Update : PDF library updated to the latest version.
  • NEW : Additional Elements to single post type has been added.
  • NEW : Dinamic URI for pdf document has been added.

V2.3.2 – 25.04.2023

  • Update : BWS Panel section update.
  • Bugfix : Added buttons for Twenty Twenty-Three theme.
  • Update : All functionality was updated for WordPress 6.2.
  • Bugfix : Fixes Custom PDF File Name.

V2.3.1 – 27.04.2022

  • Update : BWS Panel section update.
  • Bugfix : Remove “Written by” from Author has been fixed.
  • Pro : PHP 8 Multisite issue has been fixed.
  • Pro : Some issues with Advanced Custom Fields has been fixed.
  • Bugfix : Sup tags styles for PDF fix.
  • Bugfix : Default PDF File Name option fix.
  • Bugfix : Fixes for Twenty Twenty-Two theme.
  • Bugfix : Issue with updating MPDF library has been fixed.
  • Update : All functionality was updated for WordPress 5.9.

V2.3.0 – 24.12.2021

  • Pro : Ability to exclude specific users and roles
  • Bugfix : The issue with excerpt display has been fixed.
  • Update : All functionality was updated for WordPress 5.8.2.
  • Update : BWS Panel section was updated.

V2.2.9 – 23.08.2021

  • Update : All functionality was updated for WordPress 5.8.
  • Bugfix: The bug with mPDF library loading has been fixed.
  • Pro : Ability to add shortcodes to the PDF file name.
  • Pro : Ability to remove “written by” in the author output.
  • Pro : Added drag and drop function to change the order of the additional elements.

V2.2.8 – 06.07.2021

  • Bugfix : The issue with generate templates has been fixed.
  • Update : BWS Panel section was updated.
  • Update : Video Guide has been added.

V2.2.7 – 11.06.2021

  • Pro : The bug with field type Group with Advanced Custom Fields has been fixed.
  • Pro : The bug with a large number of pages in the site tree was fixed.
  • Bugfix : The bug with mPDF library update to version 8.0.8. has been fixed.
  • Update : All functionality was updated for WordPress 5.7.2.

V2.2.6 – 14.05.2021

  • Bugfix : The compatibility with Divi builder was improved.
  • Update : The mPDF library has been updated to version 8.0.8.
  • Pro : The bug with Print button has been fixed.

V2.2.5 – 13.04.2021

  • Bugfix : JS errors were fixed.
  • Update : Functionality of plugin’s scripts adding has been changed so that they will be added only on pages where the PDF & Print buttons will be displayed.

V2.2.4 – 31.03.2021

  • Bugfix : The bug with incorrect definition of post types on the search page has been fixed.
  • Bugfix : The bug with generating pdf file in Gutenberg editor has been fixed.
  • Bugfix : The bug with generating pdf file with the Default CSS option enabled has been fixed.
  • Bugfix : The bug with PDF button for widget has been fixed.
  • Bugfix : The bug with pdf file generation when the “Full Page PDF” option is enabled has been fixed.
  • NEW : Ability to add PDF & Print buttons to the home page is enabled.
  • NEW : An ability to show/hide author and date for post in the pdf/print document was added.
  • Update : BWS Panel section was updated.
  • Update : All functionality was updated for WordPress 5.7.
  • Pro : The bug with Compatibility with Advanced Custom Fields has been fixed.
  • Pro : Ability to add headers and footers to the contents of a PDF & Print document when the “Full Page PDF” option is enabled.

V2.2.3 – 30.09.2020

  • NEW : Shortcode to force a page break.
  • NEW : Ability to generate a PDF without links (ability to remove links from document).
  • Update : BWS Panel section was updated.
  • Update : All functionality was updated for WordPress 5.5.1.

V2.2.2 – 17.08.2020

  • NEW : Ability to change PDF & Print document’s content when “Full Page PDF” option is enabled.
  • Update : All functionality was updated for WordPress 5.5.
  • Update : BWS Panel section was updated.
  • Bugfix : The bug with hiding PDF & Print buttons for all users has been fixed.
  • Pro : Ability to add the title of a post to Headers & Footers.
  • Pro : Ability to place Custom Fields Data before page/post title.

V2.2.1 – 27.02.2020

  • Update : All functionality was updated for WordPress 5.3.2.
  • Update : BWS menu has been updated.

V2.2.0 – 15.10.2019

  • Bugfix : The bug with mPDF library update to version 7.1.5 has been fixed.
  • Update : BWS menu has been updated.

V2.1.9 – 04.09.2019

  • Update: The deactivation feedback has been changed. Misleading buttons have been removed.

V2.1.8 – 02.07.2019

  • Bugfix : Bug related with “Search Engine Visibility” option has been fixed.
  • Bugfix : Bug with displaying buttons on archive page has been fixed.

V2.1.7 – 23.05.2019

  • NEW : Ability to create PDF document that mirrors what is shown on screen has been added.

V2.1.6 – 03.04.2019

  • Bugfix : Warnings and errors in the debug mode has been fixed.

V2.1.5 – 26.02.2019

  • Pro : Compatibility with Advanced Custom Fields has been added.

V2.1.4 – 08.01.2019

  • Update : The mPDF library has been updated to version 7.1.5.

V2.0.4 – 24.12.2018

  • Update : All functionality was updated for WordPress 5.0.2.

V2.0.3 – 13.09.2018

  • Pro : Ability to disable content from coping has been added.
  • Bugfix : Multiple Cross-Site Scripting (XSS) vulnerability was fixed.

V2.0.2 – 07.05.2018

  • Bugfix: The bug with fonts loading has been fixed.
  • Update : All functionality has been updated for WordPress 4.9.5.

V2.0.1 – 20.03.2018

  • Pro : Ability to set custom fields for single posts has been added.

V2.0.0 – 16.02.2018

  • Bugfix : The bug with pdf file generation has been fixed.

V1.9.9 – 09.02.2018

  • NEW : Ability to select whether to open or download PDF file has been added.
  • NEW : Ability to select the user role PDF & Print buttons will be displayed for has been added.
  • Update : All functionality has been updated for WordPress 4.9.4.

V1.9.8 – 05.12.2017

  • NEW : An ability to set custom PDF document size has been added.
  • NEW : An ability to set custom featured image size has been added.
  • NEW : An ability to set custom watermark opacity has been added.
  • Update : All functionality has been updated for WordPress 4.9.1.

V1.9.7 – 16.11.2017

  • Update : All functionality has been updated for WordPress 4.8.3.

V1.9.6 – 14.09.2017

  • Update : MPDF library has been updated to version 6.1.4.
  • Bugfix : The bug with pdf file generation has been fixed.
  • Bugfix : The bug with pdf file title has been fixed.

V1.9.5 – 27.06.2017

  • Bugfix : The bug with displaying PDF & Print pages via the shortcode has been fixed.
  • Bugfix : The bug with removing Visual Composer shortcodes has been fixed.
  • Update : The plugin settings page has been updated.

V1.9.4 – 14.04.2017

  • Bugfix : Multiple Cross-Site Scripting (XSS) vulnerability was fixed.

V1.9.3 – 15.12.2016

  • Update : Visual Composer shortcodes have been removed for PDF&Print pages.

V1.9.2 – 06.10.2016

  • NEW : Widget PDF&Print Buttons has been added.
  • NEW : Titles were added to the buttons.
  • NEW : An ability to add PDF&Print buttons via shortcode has been added.
  • NEW : An ability to hide button images has been added.
  • NEW : An ability to set margins for PDF document has been added.

V1.9.1 – 12.08.2016

  • Update : All functionality for WordPress 4.6 was updated.

V1.9.0 – 29.07.2016

  • Update : We updated all functionality for wordpress 4.5.3.
  • Update : ‘pdfprntpr_options_array’ option was renamed into ‘pdfprnt_options’.
  • Pro : The ability to add watermark has been added.
  • Pro : ‘pdfprntpr_options’ option was renamed into ‘pdfprnt_options’.
  • Pro : Template running titles overlay was fixed.
  • Pro : We fixed the bug with pdf and print buttons positions for archive and search pages.
  • Pro : We fixed the bug with pdf and print buttons output for custom post types.

V1.8.9 – 13.07.2016

  • Bugfix : Custom styles saving is updated.
  • Update : BWS Panel section is updated.

V1.8.8 – 26.04.2016

  • Bugfix : We fixed the bug with instalation of the additional fonts.

V1.8.7 – 21.03.2016

  • Update : Styles for correct displaying of PDF and Print buttons with theme 2016 have been added.
  • Bugfix : The bug with displaying of PDF and Print buttons in site RSS has been fixed.

V1.8.6 – 30.11.2015

  • Bugfix : The bug with plugin menu duplicating was fixed.
  • Bugfix : The bug with the function which is outputted using ‘the_content’ was fixed.

V1.8.5 – 18.11.2015

  • NEW : An ability to add custom styles was added.
  • NEW : An ability to show/hide title and featured image in the pdf/print document was added.
  • Update : “Bwsplgns_get_pdf_print_content”-hook`s call was changed.
  • Update : All functionality for wordpress 4.4-beta3 was updated.

V1.8.4 – 01.09.2015

  • NEW : Added hooks for the possibility of changing the content of the pdf/print document.
  • Update : We updated functionality for displaying pdf/print buttons via functions.
  • Update : We updated all functionality for wordpress 4.3.

V1.8.3 – 15.07.2015

  • NEW : We added Top & Bottom Position of buttons in the content.

V1.8.2 – 19.06.2015

  • Bugfix : We fixed the bug with instalation of the additional fonts.

V1.8.1 – 17.06.2015

  • Attention : We changed plugin settings structure. If you are experiencing problems with the plugin work, please contact us via https://support.bestwebsoft.com.
  • Bugfix : We fixed the bug with displaying images in pdf-document.
  • Bugfix : We fixed the bug with creation of rtl-oriented documents.
  • NEW : Added ability to load additional fonts.
  • Update : We updated styles for generate pdf/print page version with default stylesheet.
  • Update : We updated functionality for displaying pdf/print buttons in any place of your site.
  • Update : We updated MPDF library to version 6.0.

V1.8.0 – 18.05.2015

  • Update : We updated all functionality for wordpress 4.2.2.

V1.7.9 – 24.04.2015

  • Bugfix : We fixed the bug with placing buttons on custom post pages, search pages and archives.
  • Update : We updated all functionality for wordpress 4.2.

V1.7.8 – 11.02.2015

  • Update : We updated mPDF to 5.7.4 version.

V1.7.7 – 09.01.2015

  • Update : BWS plugins section is updated.
  • Update : We updated all functionality for wordpress 4.1.

V1.7.6 – 16.10.2014

  • Bugfix : We fixed js errors.

V1.7.5 – 07.09.2014

  • Bugfix : Security Exploit was fixed.

V1.7.4 – 06.08.2014

  • Update : We updated all functionality for wordpress 4.0-beta2.
  • Bugfix : Bug with Warning output in Dashboard was fixed.

V1.7.3 – 28.05.2014

  • Update : We updated all functionality for wordpress 3.9.1.
  • Update : The Ukrainian language is updated in the plugin.
  • Bugfix : Bug with dispalying error while searching in admin area was fixed.

V1.7.2 – 14.04.2014

  • Update : We updated all functionality for wordpress 3.8.2.

V1.7.1 – 05.03.2014

  • Bugfix : Plugin optimization is done.
  • Update : Plugin tabs is added.

V1.7 – 21.02.2014

  • NEW : We added posibility to turn on showing of Printer choosing window.
  • Update : Screenshots are updated.
  • Update : We updated all functionality for wordpress 3.8.1.

V1.6 – 16.01.2014

  • Update : BWS plugins section is updated.
  • Update : We updated all functionality for wordpress 3.8.
  • Bugfix : Problem with PDF and Print buttons on static homepage is fixed.
  • Bugfix : Problem with Chinese, Japanese and rtl languages is fixed.

V1.5 – 01.11.2013

  • Update : We updated all functionality for wordpress 3.7.1.
  • Update : Activation of radio button or checkbox by clicking on its label.
  • NEW : Add checking installed wordpress version.

V1.4 – 11.10.2013

  • NEW: Added ability to switch on/off execution of shortcodes in pdf and printing output.
  • NEW: Added new screenshots.
  • Update : Updated code, changed some styles.
  • Bugfix : Content on PDF preview now is shown.
  • Bugfix : Fixed problems with styles of choosed template in admin bar.

V1.3 – 15.03.2012

  • NEW : Added functionality for use with custom post type.

V1.2 – 12.03.2012

  • NEW : Added functionality for use with Portfolio plugin for portfolio.

V1.1 – 10.03.2012

  • NEW : Added functionality for use with Portfolio plugin for single portfolio.

V1.0 – 05.03.2012

  • NEW : Added the ability to output PDF and Print buttons on the type of page.
VIP777 login Philippines Ok2bet PRIZEPH online casino Mnl168 legit PHMAYA casino Login Register Jilimacao review Jl777 slot login 90jili 38 1xBet promo code Jili22 NEW com register Agila Club casino Ubet95 WINJILI ph login WINJILI login register Super jili168 login Panalo meaning VIP JILI login registration AGG777 login app 777 10 jili casino Jili168 register Philippines APALDO Casino link Weekph 50JILI APP Jilievo xyz PH365 casino app 18JL login password Galaxy88casino com login superph.com casino 49jili login register 58jili JOYJILI apk Jili365 asia ORION88 LOGIN We1win withdrawal FF777 casino login Register Jiligo88 philippines 7777pub login register Mwgooddomain login SLOTSGO login Philippines Jili188 App Login Jili slot 777 Jili88ph net Login JILIMACAO link Download Gcash jili login GG777 download Plot777 app download VIPPH register Peso63 jili 365.vip login Ttjl casino link download Super Jili 4 FC178 casino - 777 slot games JILIMACAO Philippines S888 register voslot LOVE jili777 DOWNLOAD FK777 Jili188 app CG777 app 188 jili register 5JILI login App Download Pkjili login Phdream Svip slot Abcjili6 App Fk777 vip download Jili888 register 49jili VIPPH register Phmacao co super Taya777 link Pogo88 real money Top777 app VIP777 slot login PHMACAO 777 login APALDO Casino link Phjili login Yaman88 promo code ME777 slot One sabong 888 login password PHMAYA casino Login Register tg777 customer service 24/7 Pogibet slot Taya777 org login register 1xBet live Acegame888 OKBet registration JILIASIA Promotion Nice88 voucher code AgilaClub Gaming Mnl168 link Ubet95 free 50 PHMAYA casino login JLBET 08 Pb777 download 59superph Nice88 bet sign up bonus Jiliyes SG777 download apk bet88.ph login JILIPARK casino login Register Philippines PHMAYA APK CC6 casino login register mobile PHMACAO com download MWPLAY app JILIPARK Download Jili999 register link download Mnl646 login Labet8888 download 30jili jilievo.com login Jollibee777 open now LOVEJILI 11 18JL casino login register Philippines JILIKO register Philippines login Jililuck 22 WJPESO casino PHMAYA casino login Jili777 login register Philippines Ttjl casino link download W888 login Register Galaxy88casino com login OKBet legit tg777 customer service 24/7 Register ROYAL888 Plot777 login Philippines BigWin Casino real money PHLOVE 18JL PH 18JL casino login register Philippines SG777 Pro Taya777 pilipinong sariling casino Jiligames app MNL168 free bonus YesJili Casino Login 100 Jili casino no deposit bonus FC178 casino free 100 Mwcbet Download Jili888 login Gcash jili download JILIMACAO 123 Royal888 vip 107 Nice888 casino login Register FB777 link VIPPH app download PHJOIN 25 Ubet95 legit phcash.vip log in Rrrbet Jilino1 games member deposit category S888 live login FF777 download FC777 VIP APK ME777 slot Peso 63 online casino OKGames app Joyjili customer service superph.com casino FB777 Pro Rbet456 PH cash online casino Okbet Legit login taruhan77 11 VIPPH 777Taya win app Gogo jili 777 Plot777 login register Bet99 app download Jili8989 NN777 VIP JP7 fuel Wjevo777 download Jilibet donnalyn login Register Bossjili ph download 58jili login registration YE7 login register FC777 new link login 63win register Crown89 JILI no 1 app Jili365 asia JLBET Casino 77PH fun Jili777 download APK Jili8 com log in CC6 casino login register mobile ph365.com promotion phjoin.com login register 77PH VIP Login download Phdream live chat Jlslot2 Me777 download Xojili legit PLDT 777 casino login Super Jili Ace Phdream 44 login Win888 casino JP7 Bp17 casino login TTJL Casino register FB777 slot casino Jili games online real money phjoin.com login register BET99 careers ORION88 LOGIN Plot777 login Philippines Labet8888 login JILI Official Pogibet app download PH777 casino register LOVEJILI app Phvip casino VIP jili casino login PHMACAO app 777pnl legit YE7 casino online Okbet download CC6 bet app 63win club Osm Jili GCash LOVEJILI 11 Www jililive com log in Jili58 casino SuperAce88 JiliLuck Login Acegame 999 777pnl promo code MWPLAY good domain login Philippines Pogo88 app Bet casino login Superph98 18jl app download BET999 App EZJILI gg 50JILI VIP login registration Jilino1 new site pogibet.com casino Jili Games try out Gogojili legit 1xBet Aviator WINJILI ph login Jili168 register How to play Jili in GCash 777pnl PHDream register login JILISM slot casino apk FB777 c0m login EZJILI Telegram MWCASH88 APP download Jili88 vip03 APaldo download 1xBet 58JL Casino 58jl login register Jili scatter gcash OKJL slot jili22.net register login 10phginto APaldo 888 app download 1xBet live FC178 Voucher Code 58jl Jili888 ph Login 365 Jili casino login no deposit bonus JP7 VIP login PHBET Login registration 58jili login registration VVJL online Casino Club app download Jili77 login register Jili88 ph com download KKJILI casino WJ peso app Slot VIP777 BigWin69 app Download Nice88 bet Suhagame philippines Jiliapp Login register Qqjili5 Gogo jili helens ABJILI Casino OKJL download 1xBet login mobile Pogibet 888 777 game Okgames casino login Acegame888 Bet86 promotion Winph99 com m home login JP7 VIP login 20phginto VIPPH register KKJILI casino OKJILI casino Plot777 app download NN777 register bossphl Li789 login Jiligo88 app Mwcbet Download Betjilivip Https www BETSO88 ph 30jili Https www BETSO88 ph Jilievo Club Jili888 register Jili777 download APK JILI77 app download New member register free 100 in GCash 2024 Royal888casino net vip JOLIBET withdrawal MW play casino Jili365 login FB777 Pro Gold JILI Bet99 registration 55BMW red envelope Bet199 login philippines JILI188 casino login register download Phjoin legit or not Bigwin 777 Bigwin pro Apaldo PH pinasgame JILIPARK Login registration JiliApp ph04 Ph143 Jili168 login app Philippines MW Play online casino APK 77tbet register 8k8t Bigwin casino YE7 Download App Ph365 download apk Acejili Ph888 login S888 juan login 63win withdrawal Okbet cc labet 8888.com login password Mwbet188 com login register Philippines MNL168 net login registration kkjili.com download Jili888 Login registration Abc Jili com Download JILIPARK casino login Register Download AbcJili customer service live777. casino Jilievo casino jilievo APP live casino slots jilievo vip Jolibet legit PH888 login Register 888php register 55BMW win Mwbet188 com login register Philippines AbcJili customer service Jili88 ph com app 200Jili App MAXJILI casino ROYAL888 deposit mi777 Jili games free 100 ACEGAME Login Register Jilibet donnalyn login Voslot register Jilino1 live casino 18jl login app apk JILI Vip777 login Phtaya login Super Ace casino login Bigwin 777 Ubet95 free 190 superph.com casino Jili22 NEW com register SG777 win Wjpeso Logo 1xBet login mobile Jili88 casino login register Philippines sign up Okbet cc Agg777 slot login Phv888 login P88jili download jiliapp.com- 777 club Fish game online real money One sabong 888 login password QQJili Taya365 slot mnl168.net login Taya365 download Yes Jili Casino PHMACAO APK free download 365 casino login Bigwin 29 JILISM slot casino apk Wow88 jili777.com ph 888php login 49jili VIP Jilino1 legit SG777 slot Fish game online real money Voslot free 100 18jl login app apk OKJL app Jili22 NEW com register Nice88 free 120 register no deposit bonus Sugal777 app download 288jili PHJOIN VIP com Register Jl77 Casino login KKjili com login Lovejili philippines Pogo88 casino SLOTSGO VIP login password Jili22 net register login password Winph 8 we1win 100 Jili slot 777pnl promo code Sg77701 Bet88 download for Android PH365 casino Royal Club login Jili88 casino login register MWPLAY login register Jilibay Promotion 7SJILI com Register FC777 casino link download Royal meaning in relationship OKBET88 AbcJili customer service 777ph VIP BOSS JILI login Register 200Jili App KKJILI casino login register maxjili Mwcbet legit JILIASIA 50 login Milyon88 com casino login 8k8app17 Royal slot Login Phmacao rest 338 SLOTSGO Ph888 login PHGINTO com login YY777 app Phdream register Jili22 net register login password Lucky Win888 Jiligames API Agila club VIP 77PH VIP Login download Acegame888 register PHMAYA Download Jili88 online casino 7XM Lovejili philippines 63win register Jilimax VOSLOT 777 login 18JL Casino Login Register JILIASIA 50 login 50JILI VIP login registration 7XM com PH Nice888 casino login Register 58jl Jili168 casino login register download Timeph philippines 90jilievo Jili88 casino login register OKBet legit JILI slot game download Bet99 promo code 58jili app 55BMW com PH login password KKjili casino login bet999 How to play Jili in GCash BigWin69 app Download OKJL Milyon88 com casino login phdream 888php register Ph888 PH777 registration bonus JLBET Asia LOVEJILI download Royal Casino login 646 ph login Labet8888 review JLBET Casino Jili888 ph Login Wjpeso Wins JILIMACAO 666 Jiliplay login register JILIAPP com login Download JiliLuck download WIN888 PH JL777 app Voslot777 legit Pkjili login 20jili casino Jolibet login registration Phjoin legit or not Milyon88 com casino register JILI apps download 88jili login register Jili 365 Login register download 11phginto Jili777 vip login Ta777 casino online Swertegames Taya365 download 777PNL online Casino login Mi777 join panalo 123 JILI slot 18jili link Panalo lyrics Jiliplay login philippines yaman88 Bet88 login Jili888 Login registration FF777 TV Ok2bet app Pogibet casino philippines Www jilino1 club WOW JILI secret code AB JILI Jili168 online casino BET99 careers Go88 slot login JILI Vip777 login CG777 Casino link OKBet GCash www.50 jili.com login WINJILI download Lucky bet99 Acegame888 77ph com Login password ACEGAME Login Register ACEGAME casino Swerte88 login password Wj slots casino APALDO Casino Phjoin slot JLBET com JLBET ph Taya777 org login 49jili slot Svip slot Jili77 download APK 200jiliclub Bet199 philippines Jili888 Login registration 88jili withdrawal phjoin.com login register Swerte88 login registration Voslot777 legit Superph11 AAA JILI app download Www jililive com log in VIP777 Casino login download Jili77 download APK Jilibet donnalyn login Register JILICC sign up Pogibet app download www.mwplay888.com download apk Jili68 Jililuck App Download APK Yy777 apk mod Jili77 vipph.com login labet8888.com app Phdream live chat Ph646 login register mobile 7777pub download Jolibet Fortune Tree 90JILI app 18JL login Philippines JLSLOT login password 50JILI fun m.nn777 login 88jili withdrawal PH Cash Casino APK 888PHP Casino LINK Boss jili app download Jili999 login register FB777 download APK Free 100 promotion JILIPARK Download VIP PH casino JILIHOT ALLIN88 login 8K8 com login PHMAYA casino login 58jili withdrawal Ubet95 free 100 no deposit bonus KKJILI online casino M GG777 100jili APP JILI888 slot download PHBET88 Jili Games demo 1xBet OKJL Casino Login Nice888 casino login Register Betso88 App download APK VIP777 app Gcash jili register 1xBet registration 58jili withdrawal Jili63 Suhagame23 218 SLOTSGO AGG777 login Philippines Bay888 login JILIVIP 83444 PHCASH com casino login Jilievo 666 Jili 365 VIP register PHMAYA link PH cash VIP login register Yaman88 casino JP7 VIP We1Win download free rbet.win apk Jili168 casino login register download Milyon88 com casino register 18JL login app 88jili withdrawal AAA Casino jilibet.com register Winjili55 UG777 login app PH777 download Jili365 bet login app Osm Jili GCash 77tbet philippines GI Casino login philippines 88jili login FC178 casino free 100 SG777 Com Login registration Nice88 free 100 Oxjili Royal777 Top777 login FB777 live 200jili login Gogojili legit Yes Jili com login phcash.vip casino Sugal777 app download 58JL app Login Panalo login JILI games APK Lucky99 Slot login Jili scatter gcash 7XM APP download FB JILI casino login download PHMACAO app ROYAL888 Link Alternatif ACEPH Casino - Link 55bmw.com casino Timeph app Osm Jili GCash M GG777 Ubet95 login Jiligo88 CG777 Casino Philippines Tayabet login Boss jili app download YY777 app download Nice88 free 120 register no deposit bonus Bossjili7 XOJILI login 68 PHCASH login ezjili.com download apk Jili 365 VIP APK Milyon88 pro Jili88 casino login register download Jili online casino AgilaPlay Jili scatter gcash 7777pub login CC6 app bonus JK4 online PHJOIN casino Joyjili login register 22phmaya 5JILI Casino login register Betso88 VIP Winph 8 Phmacao rest JILI Slot game download free s888.live legit APALDO Casino link Plot 777 casino login register Philippines Ph646wincom Jili168 login app Philippines KKJILI casino Apaldo PH Phdream live chat Slot VIP777 PH888BET 22 phginto 50JILI APP MWPLAY login register Slotph We1Win apk VIP777 slot login Nice88 PRIZEPH online casino Jilipark App 7XM app for Android Jili58 Jili168 free 100 APALDO 888 CASINO login APaldo download Jiliasia8 com slot game phcash.vip casino OKJL Casino Login YY777 live Jili888 register Winjiliph QQ jili casino login registration Abcjili5 NN777 register Phvip casino Taya 365 casino login OKBet app Osm Jili GCash Nice88 free 100 5JILI Casino login register Bet88 app download 5 55bmw vip Jlph11 JILI slot casino login Nice88 bet sign up bonus JILI Slot game download for Android Abc Jili com Download FF777 TV Peso 63 online casino MILYON88 register free 100 7777pub JILIASIA 50 login CC6 online casino latest version Royal Club apk 1xBet login registration CG777 Casino Philippines 1xBet app Mwcbet net login Password LOVEJILI 21 FBJILI Now use Joyjili Promo code JILI188 casino login register download PHMACAO SuperPH login AGG777 login app Peso 63 online casino filiplay Sugal777 app download Galaxy88casino com login EZJILI Telegram JiliApp ph04 Jilino1 com you can now claim your free 88 PHP download 63win Coupon Code PHDream 8 login register Philippines MNL168 website CC6 online casino register login 3jl app download apk Jlph7 TA777 com Login Register password 5jili11 FF777 casino login Register KKJILI casino login register 10 JILI slot game 3JL login app Jili100 APP Winjili55 Milyon88 info Jilino1 VIP login YE7 bet sign up bonus Apaldo games Wj casino app AbcJili win.ph log in Jili22 VIP 204 SG777 Jl77 Casino login YY777 app download Jilimacao Okjl space Wjevo777 download Ubet95 free 100 no deposit bonus PHMAYA APK Xojili legit 77PH bet login Taya365 pilipinong sariling casino LOVEJILI AAAJILI Casino link Jollibee777 How to play mwplay888 18jl app download jilievo.com login password VIP PH casino mnl168.net login JiliLuck download Win2max casino 777PNL download app Ubet Casino Philippines Win888 Login Jili88 casino login register Philippines sign up Bet99 APK 18JL casino Login register Download Naga888 login JLPH login PHMACAO APK free download How to register Milyon88 Royal888ph com login JiliCC entertainment WINJILI customer service PHBET88 Jili888 Login Philippines SG777 slot FBJILI Jili365 bet login app Ubet95 free 100 no deposit bonus Taya 365 casino login LOVEJILI Jili777 free 150 YE7 casino login register download QQJili 58jili login Download S888 sabong Gi77 casino Login taya777 customer service philippines number 24/7 WINJILI customer service Https www wjevo com promocenter promotioncode Nice99 casino login Phdream 44 login Mi777app 777PNL online Casino login phjl.com casino JILILUCK promo code Pogibet 888 login BigWin Casino legit Jolibet app download Jilli pogibet.com casino JP7 VIP login Ug7772 Phjoy JILIMACAO 123 PH143 online casino jili365.bet download PH cash VIP login register Abc Jili Register Mwgooddomain login 58JL Casino link 365 Jili casino login no deposit bonus JILIEVO Casino 777 60win OKGames casino 49jili VIP kkjili.com app JILIPARK casino login Register Philippines Agila Club casino OKGames GCash OKBet casino online S888 juan login Yaman88 log in Winph99 com m home login Jili88 casino login register Winjiliph CG777 Casino LOGIN Register Ubet Casino Philippines Agilaclub review Is 49jili legit ph646 JLBET link JiliCC entertainment Jilicity withdrawal Ta777 casino online Jili777 login register Philippines JP7 coupon code Milyon88 one Ug7772 Jilibet casino 77PH VIP Login download Jili live login 68 PHCASH 7XM APP download Boss jili login MWCASH88 APP download Jilicity login Acegame888 real money LIKE777 JILILUCK app JiliBay Telegram Bet199 login philippines Ph646wincom PHJOIN login OKGames register JILIASIA withdrawal Panalo login 88jili Login Philippines Wjevo777 download phjl.com casino Fcc777 login Labet8888 login JILI8998 casino login PHJL Login password Jilibay Voucher Code 28k8 Casino P88jili download 49jili apps download Fk777city we1win CG777 Casino login no deposit bonus MW play casino FF777 casino login Register Philippines download JILIAPP com login Download Bet199 PHGINTO com login Bet88 bonus Sw888 withdrawal Vvjl666 Jiliapp 777 Login QQ jili login Jilicity download Jili188 login Philippines Timeph philippines Casino Club app download Nice88 bet login registration Bay888 login PH Cash casino download Jiliko777 Nice88 PH 777pnl Jiliplay login register JILI VIP casino cg777 mwcbets.com login Fbjili2 JILIAPP download 7xm login 77jl.com login JILI Slot game download for Android MWPLAY app superph.com casino Nice88 free 120 WJ peso app Jili58 register 3jl app download apk Betso88 link OKGames login free JILIASIA 888 login 58jl login register Jilibet888 68 PHCASH login Jili88ph net register 55BMW Casino app download APK Abc Jili com Download FB777 register login Philippines Jilievo org m home JiliLuck download jlbet.com login register Jp7 casino login 18JL Casino Login Register YE7 casino APK prizeph Boss jili login Royal logo FC178 casino - 777 slot games Taya777 pilipinong sariling casino Ph888 MWPLAY app @Plot777_casino CG777 login BOSS JILI login Register JILI PH646 login Vvjlstore Mi777 casino login Download Okgames redeem code 50JILI VIP login registration Bet88 login AGG777 login Philippines JILIMACAO Yesjili com legit P88jili com login OKBET88 Gold JILI VIP PH casino VIP PH log in bet88.ph legit kkjili.com app JiliLuck Login JILI Vip777 login 63win withdrawal bet999.ph login m.nn777 login 58JL 8k8app17