Version Description
- SAFE UPDATE: No data loss for those upgrading from version 3.0 or higher
- Minor bug fix
Download this release
Release Info
Developer | spwebguy |
Plugin | Responsive Pricing Table |
Version | 3.4.1 |
Comparing to | |
See all releases |
Code changes from version 3.4.0 to 3.4.1
- readme.txt +4 -0
- rpt.php +13 -6
readme.txt
CHANGED
@@ -72,6 +72,10 @@ The free version of the Responsive Pricing Table plugin is **not limited** and d
|
|
72 |
|
73 |
|
74 |
== Changelog ==
|
|
|
|
|
|
|
|
|
75 |
= 3.4.0 =
|
76 |
* SAFE UPDATE: No data loss for those upgrading from version 3.0 or higher
|
77 |
* Possible to hide the currency symbol
|
72 |
|
73 |
|
74 |
== Changelog ==
|
75 |
+
= 3.4.1 =
|
76 |
+
* SAFE UPDATE: No data loss for those upgrading from version 3.0 or higher
|
77 |
+
* Minor bug fix
|
78 |
+
|
79 |
= 3.4.0 =
|
80 |
* SAFE UPDATE: No data loss for those upgrading from version 3.0 or higher
|
81 |
* Possible to hide the currency symbol
|
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.4.
|
7 |
* Author: WP Darko
|
8 |
* Author URI: http://wpdarko.com
|
9 |
* License: GPL2
|
@@ -43,6 +43,15 @@ function create_rpt_pricing_table_type() {
|
|
43 |
'public' => true,
|
44 |
'has_archive' => false,
|
45 |
'hierarchical' => false,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
'supports' => array( 'title' ),
|
47 |
'menu_icon' => 'dashicons-plus',
|
48 |
)
|
@@ -527,11 +536,9 @@ function rpt_sc($atts) {
|
|
527 |
|
528 |
if (!empty($plans['_rpt_features'])){
|
529 |
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
$output .= '<div style="border-radius:8px;" class="rpt_features rpt_features_' . $key . '">';
|
534 |
-
}
|
535 |
|
536 |
$string = $plans['_rpt_features'];
|
537 |
$stringAr = explode("\n", $string);
|
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.4.1
|
7 |
* Author: WP Darko
|
8 |
* Author URI: http://wpdarko.com
|
9 |
* License: GPL2
|
43 |
'public' => true,
|
44 |
'has_archive' => false,
|
45 |
'hierarchical' => false,
|
46 |
+
'capabilities' => array(
|
47 |
+
'edit_post' => 'update_core',
|
48 |
+
'read_post' => 'update_core',
|
49 |
+
'delete_post' => 'update_core',
|
50 |
+
'edit_posts' => 'update_core',
|
51 |
+
'edit_others_posts' => 'update_core',
|
52 |
+
'publish_posts' => 'update_core',
|
53 |
+
'read_private_posts' => 'update_core'
|
54 |
+
),
|
55 |
'supports' => array( 'title' ),
|
56 |
'menu_icon' => 'dashicons-plus',
|
57 |
)
|
536 |
|
537 |
if (!empty($plans['_rpt_features'])){
|
538 |
|
539 |
+
|
540 |
+
$output .= '<div class="rpt_features rpt_features_' . $key . '">';
|
541 |
+
|
|
|
|
|
542 |
|
543 |
$string = $plans['_rpt_features'];
|
544 |
$stringAr = explode("\n", $string);
|