Content Views – Post Grid & List for WordPress - Version 1.9.3.3

Version Description

  • January 21 2016 =
  • Fix: Correct output of Scrollable list in Tablet devices
Download this release

Release Info

Developer PT Guy
Plugin Icon 128x128 Content Views – Post Grid & List for WordPress
Version 1.9.3.3
Comparing to
See all releases

Code changes from version 1.9.3.2 to 1.9.3.3

Files changed (3) hide show
  1. README.txt +5 -2
  2. content-views.php +2 -2
  3. includes/html-viewtype.php +2 -3
README.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: PT Guy
3
  Donate link: https://www.contentviewspro.com/pricing/?utm_source=wporg&utm_medium=link&utm_campaign=donate
4
  Tags: post, posts, page, pages, grid, author, category, categories, tag, responsive, title, thumbnail, content
5
  Requires at least: 3.3
6
- Tested up to: 4.7
7
- Stable tag: 1.9.3.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -116,6 +116,9 @@ If you are using "Your latest posts" as home page, you should paste this code `<
116
 
117
  == Changelog ==
118
 
 
 
 
119
  = 1.9.3.2 - January 11 2016 =
120
  * Update: simplify label of some settings in Add/Edit View page
121
  * Improvement: simplify code base and improve performance of Grid, Collapsible List
3
  Donate link: https://www.contentviewspro.com/pricing/?utm_source=wporg&utm_medium=link&utm_campaign=donate
4
  Tags: post, posts, page, pages, grid, author, category, categories, tag, responsive, title, thumbnail, content
5
  Requires at least: 3.3
6
+ Tested up to: 4.7.1
7
+ Stable tag: 1.9.3.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
116
 
117
  == Changelog ==
118
 
119
+ = 1.9.3.3 - January 21 2016 =
120
+ * Fix: Correct output of Scrollable list in Tablet devices
121
+
122
  = 1.9.3.2 - January 11 2016 =
123
  * Update: simplify label of some settings in Add/Edit View page
124
  * Improvement: simplify code base and improve performance of Grid, Collapsible List
content-views.php CHANGED
@@ -11,7 +11,7 @@
11
  * Plugin Name: Content Views
12
  * Plugin URI: http://wordpress.org/plugins/content-views-query-and-display-post-page/
13
  * Description: Query and display <strong>posts, pages</strong> in awesome layouts (<strong>grid, scrollable list, collapsible list</strong>) easier than ever, without coding!
14
- * Version: 1.9.3.2
15
  * Author: PT Guy
16
  * Author URI: http://profiles.wordpress.org/pt-guy
17
  * Text Domain: content-views-query-and-display-post-page
@@ -26,7 +26,7 @@ if ( !defined( 'ABSPATH' ) ) {
26
  }
27
 
28
  // Define Constant
29
- define( 'PT_CV_VERSION', '1.9.3.2' );
30
  define( 'PT_CV_FILE', __FILE__ );
31
  define( 'PT_CV_PATH', plugin_dir_path( __FILE__ ) );
32
  include_once( PT_CV_PATH . 'includes/defines.php' );
11
  * Plugin Name: Content Views
12
  * Plugin URI: http://wordpress.org/plugins/content-views-query-and-display-post-page/
13
  * Description: Query and display <strong>posts, pages</strong> in awesome layouts (<strong>grid, scrollable list, collapsible list</strong>) easier than ever, without coding!
14
+ * Version: 1.9.3.3
15
  * Author: PT Guy
16
  * Author URI: http://profiles.wordpress.org/pt-guy
17
  * Text Domain: content-views-query-and-display-post-page
26
  }
27
 
28
  // Define Constant
29
+ define( 'PT_CV_VERSION', '1.9.3.3' );
30
  define( 'PT_CV_FILE', __FILE__ );
31
  define( 'PT_CV_PATH', plugin_dir_path( __FILE__ ) );
32
  include_once( PT_CV_PATH . 'includes/defines.php' );
includes/html-viewtype.php CHANGED
@@ -190,10 +190,9 @@ if ( !class_exists( 'PT_CV_Html_ViewType' ) ) {
190
  $res_class = apply_filters( PT_CV_PREFIX_ . 'item_col_class', array(), 6 );
191
 
192
  /**
193
- * Improve usability: Show 1 post per slide in real mobile devices
194
- * @since 1.9.3.2
195
  */
196
- if ( wp_is_mobile() ) {
197
  $columns = $rows = 1;
198
  }
199
 
190
  $res_class = apply_filters( PT_CV_PREFIX_ . 'item_col_class', array(), 6 );
191
 
192
  /**
193
+ * Able to show one item per row, per column
 
194
  */
195
+ if ( apply_filters( PT_CV_PREFIX_ . 'scrollable_one', false ) ) {
196
  $columns = $rows = 1;
197
  }
198