Version Description
- Fixed The equal height issue
Download this release
Release Info
Developer | techlabpro1 |
Plugin | The Post Grid |
Version | 1.3 |
Comparing to | |
See all releases |
Code changes from version 1.2 to 1.3
- README.txt +7 -1
- lib/classes/rtTPGShortCode.php +4 -4
- lib/init.php +1 -1
- the-post-grid.php +2 -3
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.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -126,6 +126,12 @@ In WordPress dashboard menu, click Content Views
|
|
126 |
|
127 |
== Changelog ==
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
= 1.2 =
|
130 |
* Isotope button conflict removed
|
131 |
|
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.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
126 |
|
127 |
== Changelog ==
|
128 |
|
129 |
+
= 1.4 =
|
130 |
+
* Uncaught TypeError: $(...).imagesLoaded is not a function(…) issue is fixed
|
131 |
+
|
132 |
+
= 1.3 =
|
133 |
+
* Fixed The equal height issue
|
134 |
+
|
135 |
= 1.2 =
|
136 |
* Isotope button conflict removed
|
137 |
|
lib/classes/rtTPGShortCode.php
CHANGED
@@ -24,11 +24,11 @@ if(!class_exists('rtTPGShortCode')):
|
|
24 |
}
|
25 |
if(count($this->scA)){
|
26 |
if($iso){
|
27 |
-
|
28 |
-
wp_enqueue_script('rt-isotope-js');
|
29 |
}
|
30 |
-
|
31 |
-
|
|
|
32 |
wp_enqueue_script('rt-tpg-js');
|
33 |
$nonce = wp_create_nonce( $rtTPG->nonceText() );
|
34 |
wp_localize_script( 'rt-tpg-js', 'rttpg',
|
24 |
}
|
25 |
if(count($this->scA)){
|
26 |
if($iso){
|
27 |
+
wp_enqueue_script('rt-isotope-js');
|
|
|
28 |
}
|
29 |
+
wp_enqueue_style('rt-fontawsome');
|
30 |
+
wp_enqueue_script('rt-image-load-js');
|
31 |
+
wp_enqueue_script('rt-actual-height-js');
|
32 |
wp_enqueue_script('rt-tpg-js');
|
33 |
$nonce = wp_create_nonce( $rtTPG->nonceText() );
|
34 |
wp_localize_script( 'rt-tpg-js', 'rttpg',
|
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.
|
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.4',
|
16 |
'installed_version' => 'rt_the_post_grid_current_version',
|
17 |
'slug' => RT_THE_POST_GRID_PLUGIN_SLUG
|
18 |
);
|
the-post-grid.php
CHANGED
@@ -1,8 +1,7 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
/**
|
4 |
* @package THE_POST_GRID
|
5 |
-
* @version 1.
|
6 |
*/
|
7 |
|
8 |
/**
|
@@ -10,7 +9,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.
|
14 |
* Text Domain: the-post-grid
|
15 |
* Domain Path: /languages
|
16 |
* Author URI: https://radiustheme.com/
|
1 |
<?php
|
|
|
2 |
/**
|
3 |
* @package THE_POST_GRID
|
4 |
+
* @version 1.4
|
5 |
*/
|
6 |
|
7 |
/**
|
9 |
* Plugin URI: http://demo.radiustheme.com/wordpress/plugins/the-post-grid/
|
10 |
* Description: Fast & Easy way to display WordPress post in Grid, List & Isotope view ( filter by category, tag, author..) without a single line of coding.
|
11 |
* Author: RadiusTheme
|
12 |
+
* Version: 1.4
|
13 |
* Text Domain: the-post-grid
|
14 |
* Domain Path: /languages
|
15 |
* Author URI: https://radiustheme.com/
|