Version Description
- SAFE UPDATE: No data loss for those upgrading from version 3.0 or higher
- Preventing plugin conflicts
- Minor bug fixes
Download this release
Release Info
Developer | spwebguy |
Plugin | Responsive Pricing Table |
Version | 3.2.2 |
Comparing to | |
See all releases |
Code changes from version 3.2.1 to 3.2.2
- readme.txt +7 -2
- rpt.php +27 -3
readme.txt
CHANGED
@@ -37,7 +37,7 @@ The free version of the Responsive Pricing Table plugin is **not limited** and d
|
|
37 |
Go to [the plugin's page](http://wpdarko.com/darko-tools/responsive-pricing-table/) if you need more information on how to use this plugin.
|
38 |
|
39 |
= Support =
|
40 |
-
Find help in [our forums](http://wpdarko.com/forums/forum/plugins/
|
41 |
|
42 |
== Installation ==
|
43 |
|
@@ -56,7 +56,7 @@ Go to [the plugin's page](http://wpdarko.com/darko-tools/responsive-pricing-tabl
|
|
56 |
Go to [the plugin's page](http://wpdarko.com/darko-tools/responsive-pricing-table/) for information on how to use this plugin.
|
57 |
|
58 |
= Where can I get help with this plugin? =
|
59 |
-
Find help in [our forums](http://wpdarko.com/forums/forum/plugins/
|
60 |
|
61 |
= Free vs PRO version? =
|
62 |
The free version of the Responsive Pricing Table plugin is **not limited** and does not contain any ad. The [PRO version](http://wpdarko.com/darko-tools/responsive-pricing-table-pro/) gives you access to two new features: **skins** and **tooltips**. Skins are new designs for your pricing tables, tooltips are “info bubbles” that you can easily add to your features.
|
@@ -70,6 +70,11 @@ The free version of the Responsive Pricing Table plugin is **not limited** and d
|
|
70 |
|
71 |
|
72 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
73 |
= 3.2.1 =
|
74 |
* SAFE UPDATE: No data loss for those upgrading from version 3.0 or higher
|
75 |
* Allows automatic recovery of all pricing tables when switching to PRO version
|
37 |
Go to [the plugin's page](http://wpdarko.com/darko-tools/responsive-pricing-table/) if you need more information on how to use this plugin.
|
38 |
|
39 |
= Support =
|
40 |
+
Find help in [our forums](http://wpdarko.com/forums/forum/plugins/dk-pricr/) for this plugin (we’ll answer you fast, promise).
|
41 |
|
42 |
== Installation ==
|
43 |
|
56 |
Go to [the plugin's page](http://wpdarko.com/darko-tools/responsive-pricing-table/) for information on how to use this plugin.
|
57 |
|
58 |
= Where can I get help with this plugin? =
|
59 |
+
Find help in [our forums](http://wpdarko.com/forums/forum/plugins/dk-pricr/) for this plugin (we’ll answer you fast, promise).
|
60 |
|
61 |
= Free vs PRO version? =
|
62 |
The free version of the Responsive Pricing Table plugin is **not limited** and does not contain any ad. The [PRO version](http://wpdarko.com/darko-tools/responsive-pricing-table-pro/) gives you access to two new features: **skins** and **tooltips**. Skins are new designs for your pricing tables, tooltips are “info bubbles” that you can easily add to your features.
|
70 |
|
71 |
|
72 |
== Changelog ==
|
73 |
+
= 3.2.2 =
|
74 |
+
* SAFE UPDATE: No data loss for those upgrading from version 3.0 or higher
|
75 |
+
* Preventing plugin conflicts
|
76 |
+
* Minor bug fixes
|
77 |
+
|
78 |
= 3.2.1 =
|
79 |
* SAFE UPDATE: No data loss for those upgrading from version 3.0 or higher
|
80 |
* Allows automatic recovery of all pricing tables when switching to PRO version
|
rpt.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
* Plugin Name: Responsive Pricing Table
|
4 |
* Plugin URI: http://wpdarko.com/darko-tools/responsive-pricing-table/
|
5 |
* Description: A responsive, easy and elegant way to present your offer to your visitors. Just create a new pricing table (custom type) and copy-paste the shortcode into your posts/pages. Find support and information on the <a href="http://wpdarko.com/darko-tools/responsive-pricing-table/">plugin's page</a>. This free version is NOT limited and does not contain any ad. Check out the <a href='http://wpdarko.com/darko-tools/responsive-pricing-table-pro/'>PRO version</a> for more great features.
|
6 |
-
* Version: 3.2.
|
7 |
* Author: WP Darko
|
8 |
* Author URI: http://wpdarko.com
|
9 |
* License: GPL2
|
10 |
*/
|
11 |
|
12 |
-
function
|
13 |
if (is_plugin_active('responsive-pricing-table-pro/rpt_pro.php')) {
|
14 |
|
15 |
function my_admin_notice(){
|
@@ -23,7 +23,7 @@ function free_pro_check() {
|
|
23 |
}
|
24 |
}
|
25 |
|
26 |
-
add_action( 'admin_init', '
|
27 |
|
28 |
//adds stylesheet
|
29 |
add_action( 'wp_enqueue_scripts', 'add_rpt_style' );
|
@@ -189,6 +189,29 @@ function rpt_metaboxes( array $meta_boxes ) {
|
|
189 |
),
|
190 |
),
|
191 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
|
193 |
//price table single metabox (built with dkrpt)
|
194 |
$meta_boxes['rpt_settings_group'] = array(
|
@@ -197,6 +220,7 @@ function rpt_metaboxes( array $meta_boxes ) {
|
|
197 |
'pages' => array( 'rpt_pricing_table', ),
|
198 |
'dkrpt_styles' => true,
|
199 |
'context' => 'side',
|
|
|
200 |
'fields' => array(
|
201 |
array(
|
202 |
'name' => 'General settings',
|
3 |
* Plugin Name: Responsive Pricing Table
|
4 |
* Plugin URI: http://wpdarko.com/darko-tools/responsive-pricing-table/
|
5 |
* Description: A responsive, easy and elegant way to present your offer to your visitors. Just create a new pricing table (custom type) and copy-paste the shortcode into your posts/pages. Find support and information on the <a href="http://wpdarko.com/darko-tools/responsive-pricing-table/">plugin's page</a>. This free version is NOT limited and does not contain any ad. Check out the <a href='http://wpdarko.com/darko-tools/responsive-pricing-table-pro/'>PRO version</a> for more great features.
|
6 |
+
* Version: 3.2.2
|
7 |
* Author: WP Darko
|
8 |
* Author URI: http://wpdarko.com
|
9 |
* License: GPL2
|
10 |
*/
|
11 |
|
12 |
+
function rpt_free_pro_check() {
|
13 |
if (is_plugin_active('responsive-pricing-table-pro/rpt_pro.php')) {
|
14 |
|
15 |
function my_admin_notice(){
|
23 |
}
|
24 |
}
|
25 |
|
26 |
+
add_action( 'admin_init', 'rpt_free_pro_check' );
|
27 |
|
28 |
//adds stylesheet
|
29 |
add_action( 'wp_enqueue_scripts', 'add_rpt_style' );
|
189 |
),
|
190 |
),
|
191 |
);
|
192 |
+
|
193 |
+
function lala() {
|
194 |
+
return "<p>This free version is <strong>NOT</strong> limited and does <strong>not</strong> contain any ad. Check out the <a style='color:rgb(97, 209, 170);' href='http://wpdarko.com/darko-tools/responsive-pricing-table-pro/'>PRO version</a> for more great features.</p>";
|
195 |
+
}
|
196 |
+
|
197 |
+
//go pro
|
198 |
+
$meta_boxes['rpt_pro_group'] = array(
|
199 |
+
'id' => $prefix . 'pro_group',
|
200 |
+
'title' => 'Responsive Pricing Table PRO',
|
201 |
+
'pages' => array( 'rpt_pricing_table', ),
|
202 |
+
'dkrpt_styles' => true,
|
203 |
+
'context' => 'side',
|
204 |
+
'priority' => 'low',
|
205 |
+
'fields' => array(
|
206 |
+
array(
|
207 |
+
'name' => '',
|
208 |
+
'id' => $prefix . 'pro_desc',
|
209 |
+
'type' => 'title',
|
210 |
+
'desc' => lala(),
|
211 |
+
),
|
212 |
+
|
213 |
+
),
|
214 |
+
);
|
215 |
|
216 |
//price table single metabox (built with dkrpt)
|
217 |
$meta_boxes['rpt_settings_group'] = array(
|
220 |
'pages' => array( 'rpt_pricing_table', ),
|
221 |
'dkrpt_styles' => true,
|
222 |
'context' => 'side',
|
223 |
+
'priority' => 'high',
|
224 |
'fields' => array(
|
225 |
array(
|
226 |
'name' => 'General settings',
|