The Post Grid - Version 1.2

Version Description

  • Isotope button conflict removed
Download this release

Release Info

Developer techlabpro1
Plugin Icon 128x128 The Post Grid
Version 1.2
Comparing to
See all releases

Code changes from version 1.1 to 1.2

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: post grid, content grid, post display, post format, post view, blog display, news display, post
5
  Requires at least: 3.5
6
  Tested up to: 4.6
7
- Stable tag: 1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -63,17 +63,19 @@ For any bug or suggestion please mail support@radiustheme.com
63
  * Display posts by any Taxonomy like category(s), tag(s), author(s), keyword(s), Status and Date Range
64
  * Order by Id, Title, Created date, Modified date, Random, Comments Count and Menu order.
65
  * Custom Image Size added
 
66
  * Isotope filter for any taxonomy ie. categories, tags...
67
  * Search field on Isotope.
68
- * Set Default Isotop Filter Button.
69
  * Disable Show All Button for Isotope Filter.
70
  * Popup page Fields Selection.
71
  * Default image set option in Shortcode generator settings.
72
  * All Text color, size and Button Color control.
73
  * Overlay color and opacity.
74
- * AJAX Pagination (Load more and Load on Scrolling))
75
  * Single popup and Popup with next preview.
76
  * Social Share on popup.
 
77
 
78
  [Get The PRO](https://www.radiustheme.com/the-post-grid-pro-for-wordpress/) [PRO Version Demo](http://radiustheme.com/demo/wordpress/thepostgridpro/)
79
 
@@ -124,11 +126,14 @@ In WordPress dashboard menu, click Content Views
124
 
125
  == Changelog ==
126
 
127
- = 1.0 =
128
- * Initial release
129
 
130
  = 1.1 =
131
  * CSS issue fixed
132
  * Pagination Fixed
133
  * Isotope loadind issue fixed
134
 
 
 
 
4
  Tags: post grid, content grid, post display, post format, post view, blog display, news display, post
5
  Requires at least: 3.5
6
  Tested up to: 4.6
7
+ Stable tag: 1.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
63
  * Display posts by any Taxonomy like category(s), tag(s), author(s), keyword(s), Status and Date Range
64
  * Order by Id, Title, Created date, Modified date, Random, Comments Count and Menu order.
65
  * Custom Image Size added
66
+ * Private layout
67
  * Isotope filter for any taxonomy ie. categories, tags...
68
  * Search field on Isotope.
69
+ * Set Default Isotope Filter Button.
70
  * Disable Show All Button for Isotope Filter.
71
  * Popup page Fields Selection.
72
  * Default image set option in Shortcode generator settings.
73
  * All Text color, size and Button Color control.
74
  * Overlay color and opacity.
75
+ * AJAX Pagination (Number, Load more and Load on Scrolling))
76
  * Single popup and Popup with next preview.
77
  * Social Share on popup.
78
+ * Override default page template (Category, Tag, Search)
79
 
80
  [Get The PRO](https://www.radiustheme.com/the-post-grid-pro-for-wordpress/) [PRO Version Demo](http://radiustheme.com/demo/wordpress/thepostgridpro/)
81
 
126
 
127
  == Changelog ==
128
 
129
+ = 1.2 =
130
+ * Isotope button conflict removed
131
 
132
  = 1.1 =
133
  * CSS issue fixed
134
  * Pagination Fixed
135
  * Isotope loadind issue fixed
136
 
137
+ = 1.0 =
138
+ * Initial release
139
+
assets/css/thepostgrid.css CHANGED
@@ -96,6 +96,11 @@
96
  /**********************************************************************/
97
  /********************************* End Grid *************************/
98
  /**********************************************************************/
 
 
 
 
 
99
 
100
  .post-meta-user {
101
  padding: 5px 0px;
@@ -193,6 +198,7 @@
193
  }
194
  .rt-tpg-container .layout1 .rt-holder .rt-detail .post-meta {
195
  text-align: right;
 
196
  }
197
  .rt-tpg-container .layout1 .rt-holder .rt-detail .read-more {
198
  border: 1px solid #8e8e8e;
@@ -200,6 +206,7 @@
200
  border-radius: 5px;
201
  -moz-border-radius: 5px;
202
  -webkit-border-radius: 5px;
 
203
  }
204
 
205
  /**********************************************************************/
96
  /**********************************************************************/
97
  /********************************* End Grid *************************/
98
  /**********************************************************************/
99
+ .rt-detail .post-meta:after {
100
+ clear: both;
101
+ content: "";
102
+ display: block;
103
+ }
104
 
105
  .post-meta-user {
106
  padding: 5px 0px;
198
  }
199
  .rt-tpg-container .layout1 .rt-holder .rt-detail .post-meta {
200
  text-align: right;
201
+ margin-top: 10px;
202
  }
203
  .rt-tpg-container .layout1 .rt-holder .rt-detail .read-more {
204
  border: 1px solid #8e8e8e;
206
  border-radius: 5px;
207
  -moz-border-radius: 5px;
208
  -webkit-border-radius: 5px;
209
+ display: inline-block;
210
  }
211
 
212
  /**********************************************************************/
assets/vendor/ace/ace.js CHANGED
File without changes
assets/vendor/ace/mode-css.js CHANGED
File without changes
assets/vendor/ace/worker-css.js CHANGED
File without changes
lib/classes/rtTPGShortCode.php CHANGED
@@ -242,7 +242,7 @@ if(!class_exists('rtTPGShortCode')):
242
  <button data-filter="*" class="selected">'.__('Show all', 'the-post-grid').'</button>';
243
  if(! empty( $terms ) && ! is_wp_error( $terms )){
244
  foreach ( $terms as $term ) {
245
- $html .= "<button data-filter='.{$term->slug}'>" . $term->name . "</button>";
246
  }
247
  }
248
  $html .='</div>';
@@ -273,7 +273,7 @@ if(!class_exists('rtTPGShortCode')):
273
  $isoFilter = null;
274
  if(!empty($termAs)){
275
  foreach($termAs as $term){
276
- $isoFilter .= " ".$term->slug;
277
  }
278
  }
279
  $arg['isoFilter'] = $isoFilter;
242
  <button data-filter="*" class="selected">'.__('Show all', 'the-post-grid').'</button>';
243
  if(! empty( $terms ) && ! is_wp_error( $terms )){
244
  foreach ( $terms as $term ) {
245
+ $html .= "<button data-filter='.iso_{$term->term_id}'>" . $term->name . "</button>";
246
  }
247
  }
248
  $html .='</div>';
273
  $isoFilter = null;
274
  if(!empty($termAs)){
275
  foreach($termAs as $term){
276
+ $isoFilter .= " iso_".$term->term_id;
277
  }
278
  }
279
  $arg['isoFilter'] = $isoFilter;
lib/init.php CHANGED
@@ -12,7 +12,7 @@ class rtTPG
12
 
13
  $this->options = array(
14
  'settings' => 'rt_the_post_grid_settings',
15
- 'version' => '1.1',
16
  'installed_version' => 'rt_the_post_grid_current_version',
17
  'slug' => RT_THE_POST_GRID_PLUGIN_SLUG
18
  );
12
 
13
  $this->options = array(
14
  'settings' => 'rt_the_post_grid_settings',
15
+ 'version' => '1.2',
16
  'installed_version' => 'rt_the_post_grid_current_version',
17
  'slug' => RT_THE_POST_GRID_PLUGIN_SLUG
18
  );
the-post-grid.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /**
4
  * @package THE_POST_GRID
5
- * @version 1.1
6
  */
7
 
8
  /**
@@ -10,7 +10,7 @@
10
  * Plugin URI: http://demo.radiustheme.com/wordpress/plugins/the-post-grid/
11
  * Description: Fast & Easy way to display WordPress post in Grid, List & Isotope view ( filter by category, tag, author..) without a single line of coding.
12
  * Author: RadiusTheme
13
- * Version: 1.1
14
  * Text Domain: the-post-grid
15
  * Domain Path: /languages
16
  * Author URI: https://radiustheme.com/
2
 
3
  /**
4
  * @package THE_POST_GRID
5
+ * @version 1.2
6
  */
7
 
8
  /**
10
  * Plugin URI: http://demo.radiustheme.com/wordpress/plugins/the-post-grid/
11
  * Description: Fast & Easy way to display WordPress post in Grid, List & Isotope view ( filter by category, tag, author..) without a single line of coding.
12
  * Author: RadiusTheme
13
+ * Version: 1.2
14
  * Text Domain: the-post-grid
15
  * Domain Path: /languages
16
  * Author URI: https://radiustheme.com/