| @@ -2,10 +2,10 @@ | ||
| 2 | 2 | Contributors: bestwebsoft |
| 3 | 3 | Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=1&product_id=94 |
| 4 | 4 | Tags: archive pdf, generate pdf, generate pdf content, generate post pdf, pdf, pdf and print, pdf button, pdf content, pdf custom post type, pdf page, pdf post, pdf print, pdf print button, pdf print content, pdf print portfolio, pdf print plugin, pdf search results, print, print button, print content, print custom post type, print page, print post, print post content, printing output, shortcode |
| 5 | 5 | Requires at least: 3.0 |
| 6 | -Tested up to: 4.0 | |
| 7 | -Stable tag: 1.7.6 | |
| 6 | +Tested up to: 3.9.1 | |
| 7 | +Stable tag: 1.7.3 | |
| 8 | 8 | License: GPLv2 or later |
| 9 | 9 | License URI: http://www.gnu.org/licenses/gpl-2.0.html |
| 10 | 10 | |
| 11 | 11 | Add PDF and Print button to your WordPress website. |
| @@ -19,9 +19,9 @@ | ||
| 19 | 19 | <a href="http://wordpress.org/plugins/pdf-print/faq/" target="_blank">FAQ</a> |
| 20 | 20 | |
| 21 | 21 | <a href="http://support.bestwebsoft.com" target="_blank">Support</a> |
| 22 | 22 | |
| 23 | -<a href="http://bestwebsoft.com/products/pdf-print/?k=6a544b359e625de8281a635315d84a70" target="_blank">Upgrade to Pro Version</a> | |
| 23 | +<a href="http://bestwebsoft.com/plugin/pdf-print-pro/?k=6a544b359e625de8281a635315d84a70" target="_blank">Upgrade to Pro Version</a> | |
| 24 | 24 | |
| 25 | 25 | = Features = |
| 26 | 26 | |
| 27 | 27 | * Actions: Ability to create PDF and Print page with adding appropriate buttons to the content. |
| @@ -35,11 +35,11 @@ | ||
| 35 | 35 | |
| 36 | 36 | The author of the PDF & Print also recommends the following plugins: |
| 37 | 37 | |
| 38 | 38 | * <a href="http://wordpress.org/plugins/updater/">Updater</a> - This plugin updates WordPress core and the plugins to the recent versions. You can also use the auto mode or manual mode for updating and set email notifications. |
| 39 | -There is also a premium version of the plugin <a href="http://bestwebsoft.com/products/updater/?k=d74ca3ffdf910e4ec8ee8774573e7b67">Updater Pro</a> with more useful features available. It can make backup of all your files and database before updating. Also it can forbid some plugins or WordPress Core update. | |
| 39 | +There is also a premium version of the plugin <a href="http://bestwebsoft.com/plugin/updater-pro/?k=d74ca3ffdf910e4ec8ee8774573e7b67">Updater Pro</a> with more useful features available. It can make backup of all your files and database before updating. Also it can forbid some plugins or WordPress Core update. | |
| 40 | 40 | |
| 41 | -= Translation = | |
| 41 | += Translate = | |
| 42 | 42 | |
| 43 | 43 | * Russian (ru_RU) |
| 44 | 44 | * Ukrainian (uk) |
| 45 | 45 | |
| @@ -84,17 +84,17 @@ | ||
| 84 | 84 | = Menu to generate pdf file is not displayed in the adminbar for administrator = |
| 85 | 85 | |
| 86 | 86 | Menu to generate pdf documents is displayed if you are an administrator only in the pages of the archives and if there is at least one search result. |
| 87 | 87 | |
| 88 | -= Buttons do not appear on portfolio and portfolio page (Portfolio plugin by BestWebSoft) = | |
| 88 | += Buttons do not appear on portfolio and portfolio page = | |
| 89 | 89 | |
| 90 | -In order to display PDF and Print Buttons for the post of Portfolio plugin it is necessary to insert the source code <?php if ( function_exists( 'pdfprnt_show_buttons_for_bws_portfolio_post' ) ) echo pdfprnt_show_buttons_for_bws_portfolio_post(); ?> in files portfolio.php or portfolio-post.php which are located in the template. | |
| 90 | +In order to display PDF and Print Buttons of Portfolio plugin for the post it is necessary to insert the source code <?php if ( function_exists( 'pdfprnt_show_buttons_for_bws_portfolio_post' ) ) echo pdfprnt_show_buttons_for_bws_portfolio_post(); ?> in files portfolio.php or portfolio-post.php which are located in the template. | |
| 91 | 91 | |
| 92 | -In order to display PDF and Print Buttons for all posts of Portfolio plugin on a page it is neessary to insert the source code <?php if ( function_exists( 'pdfprnt_show_buttons_for_bws_portfolio' ) ) echo pdfprnt_show_buttons_for_bws_portfolio(); ?> in file portfolio.php which is located in the template. | |
| 92 | +In order to display PDF and Print Buttons of Portfolio plugin for all posts on a page it is neessary to insert the source code <?php if ( function_exists( 'pdfprnt_show_buttons_for_bws_portfolio' ) ) echo pdfprnt_show_buttons_for_bws_portfolio(); ?> in file portfolio.php which is located in the template. | |
| 93 | 93 | |
| 94 | 94 | = Why are PDF and Print buttons not displayed in the custom post type = |
| 95 | 95 | |
| 96 | -In order to display PDF and Print Buttons for custom post type it is necessary to insert the source code <?php if ( function_exists( 'pdfprnt_show_buttons_for_custom_post_type' ) ) echo pdfprnt_show_buttons_for_custom_post_type( $query_posts ); ?> where you need to specify query parameters for your custom post. For example: <?php if ( function_exists( 'pdfprnt_show_buttons_for_custom_post_type' ) ) echo pdfprnt_show_buttons_for_custom_post_type( 'post_type=gallery&orderby=post_date' ); ?> or <?php if ( function_exists( 'pdfprnt_show_buttons_for_custom_post_type' ) ) echo pdfprnt_show_buttons_for_custom_post_type( array( 'post_type' => 'gallery', 'orderby' => 'post_date' ) ); ?>. To find more information on syntax for assigning parameters to function see <a href="http://codex.wordpress.org/Class_Reference/WP_Query#Parameters">here</a>. | |
| 96 | +In order to display PDF and Print Buttons of Portfolio plugin for custom post type it is necessary to insert the source code <?php if ( function_exists( 'pdfprnt_show_buttons_for_custom_post_type' ) ) echo pdfprnt_show_buttons_for_custom_post_type( $query_posts ); ?> where you need to specify query parameters for your custom post. For example: <?php if ( function_exists( 'pdfprnt_show_buttons_for_custom_post_type' ) ) echo pdfprnt_show_buttons_for_custom_post_type( 'post_type=gallery&orderby=post_date' ); ?> or <?php if ( function_exists( 'pdfprnt_show_buttons_for_custom_post_type' ) ) echo pdfprnt_show_buttons_for_custom_post_type( array( 'post_type' => 'gallery', 'orderby' => 'post_date' ) ); ?>. To find more information on syntax for assigning parameters to function see <a href="http://codex.wordpress.org/Class_Reference/WP_Query#Parameters">here</a>. | |
| 97 | 97 | |
| 98 | 98 | = If I have shortcode on the page, but I don't want them to be printed (add to pdf) = |
| 99 | 99 | |
| 100 | 100 | Go to the Settings page and unmark checkbox 'Settings for shortcode'. |
| @@ -117,18 +117,8 @@ | ||
| 117 | 117 | 6. PDF output page example. |
| 118 | 118 | |
| 119 | 119 | == Changelog == |
| 120 | 120 | |
| 121 | -= V1.7.6 - 16.10.2014 = | |
| 122 | -* Budfix : We fixed js errors. | |
| 123 | - | |
| 124 | -= V1.7.5 - 07.09.2014 = | |
| 125 | -* Budfix : Security Exploit was fixed. | |
| 126 | - | |
| 127 | -= V1.7.4 - 06.08.2014 = | |
| 128 | -* Update : We updated all functionality for wordpress 4.0-beta2. | |
| 129 | -* Budfix : Bug with Warning output in Dashboard was fixed. | |
| 130 | - | |
| 131 | 121 | = V1.7.3 - 28.05.2014 = |
| 132 | 122 | * Update : We updated all functionality for wordpress 3.9.1. |
| 133 | 123 | * Update : The Ukrainian language is updated in the plugin. |
| 134 | 124 | * Bugfix : Bug with dispalying error while searching in admin area was fixed. |
| @@ -175,17 +165,8 @@ | ||
| 175 | 165 | = V1.0 - 05.03.2012 = |
| 176 | 166 | * NEW : Added the ability to output PDF and Print buttons on the type of page. |
| 177 | 167 | |
| 178 | 168 | == Upgrade Notice == |
| 179 | - | |
| 180 | -= V1.7.6 = | |
| 181 | -We fixed js errors. | |
| 182 | - | |
| 183 | -= V1.7.5 = | |
| 184 | -Security Exploit was fixed. | |
| 185 | - | |
| 186 | -= V1.7.4 = | |
| 187 | -We updated all functionality for wordpress 4.0-beta2. Bug with Warning output in Dashboard was fixed. | |
| 188 | 169 | |
| 189 | 170 | = V1.7.3 = |
| 190 | 171 | We updated all functionality for wordpress 3.9.1. The Ukrainian language is updated in the plugin. Bug with dispalying error while searching in admin area was fixed. |
| 191 | 172 | |