Version Description
- SAFE UPDATE: No data loss for those upgrading from version 3.0 or higher
- Solved conflict when generating shortcode
Download this release
Release Info
Developer | spwebguy |
Plugin | Responsive Pricing Table |
Version | 3.2.4 |
Comparing to | |
See all releases |
Code changes from version 3.2.3 to 3.2.4
- readme.txt +5 -1
- rpt.php +4 -4
readme.txt
CHANGED
@@ -26,7 +26,7 @@ The free version of the Responsive Pricing Table plugin is **not limited** and d
|
|
26 |
* Title
|
27 |
* Subtitle
|
28 |
* Description
|
29 |
-
* Price
|
30 |
* Currency
|
31 |
* Recurrence (“one-time fee”, “per month”)
|
32 |
* Features (as many as you want)
|
@@ -72,6 +72,10 @@ The free version of the Responsive Pricing Table plugin is **not limited** and d
|
|
72 |
|
73 |
|
74 |
== Changelog ==
|
|
|
|
|
|
|
|
|
75 |
= 3.2.3 =
|
76 |
* SAFE UPDATE: No data loss for those upgrading from version 3.0 or higher
|
77 |
* Fixed icon position issue
|
26 |
* Title
|
27 |
* Subtitle
|
28 |
* Description
|
29 |
+
* Price
|
30 |
* Currency
|
31 |
* Recurrence (“one-time fee”, “per month”)
|
32 |
* Features (as many as you want)
|
72 |
|
73 |
|
74 |
== Changelog ==
|
75 |
+
= 3.2.4 =
|
76 |
+
* SAFE UPDATE: No data loss for those upgrading from version 3.0 or higher
|
77 |
+
* Solved conflict when generating shortcode
|
78 |
+
|
79 |
= 3.2.3 =
|
80 |
* SAFE UPDATE: No data loss for those upgrading from version 3.0 or higher
|
81 |
* Fixed icon position issue
|
rpt.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Responsive Pricing Table
|
4 |
* Plugin URI: http://wpdarko.com/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/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/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
|
@@ -191,7 +191,7 @@ function rpt_metaboxes( array $meta_boxes ) {
|
|
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/responsive-pricing-table-pro/'>PRO version</a> for more great features.</p>";
|
195 |
}
|
196 |
|
197 |
//go pro
|
@@ -341,7 +341,7 @@ add_action( 'manage_rpt_pricing_table_posts_custom_column' , 'rpt_custom_columns
|
|
341 |
|
342 |
function rpt_custom_columns( $column, $post_id ) {
|
343 |
switch ( $column ) {
|
344 |
-
case '
|
345 |
global $post;
|
346 |
$slug = '' ;
|
347 |
$slug = $post->post_name;
|
@@ -355,7 +355,7 @@ function rpt_custom_columns( $column, $post_id ) {
|
|
355 |
|
356 |
function add_rpt_pricing_table_columns($columns) {
|
357 |
return array_merge($columns,
|
358 |
-
array('
|
359 |
));
|
360 |
}
|
361 |
add_filter('manage_rpt_pricing_table_posts_columns' , 'add_rpt_pricing_table_columns');
|
3 |
* Plugin Name: Responsive Pricing Table
|
4 |
* Plugin URI: http://wpdarko.com/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/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/responsive-pricing-table-pro/'>PRO version</a> for more great features.
|
6 |
+
* Version: 3.2.4
|
7 |
* Author: WP Darko
|
8 |
* Author URI: http://wpdarko.com
|
9 |
* License: GPL2
|
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
|
341 |
|
342 |
function rpt_custom_columns( $column, $post_id ) {
|
343 |
switch ( $column ) {
|
344 |
+
case 'dk_shortcode' :
|
345 |
global $post;
|
346 |
$slug = '' ;
|
347 |
$slug = $post->post_name;
|
355 |
|
356 |
function add_rpt_pricing_table_columns($columns) {
|
357 |
return array_merge($columns,
|
358 |
+
array('dk_shortcode' => __('Shortcode'),
|
359 |
));
|
360 |
}
|
361 |
add_filter('manage_rpt_pricing_table_posts_columns' , 'add_rpt_pricing_table_columns');
|