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

Version Description

  • 2022/06/20 =
  • Fix some layout issues in Add/Edit view page in RTL languages
Download this release

Release Info

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

Code changes from version 2.4.0.6 to 2.4.0.7

Files changed (3) hide show
  1. README.txt +5 -2
  2. admin/assets/css/admin.css +34 -0
  3. content-views.php +2 -2
README.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: pt-guy
3
  Donate link: https://www.contentviewspro.com/?utm_source=wordpress&utm_medium=plugin&utm_campaign=donate
4
  Tags: post grid, grid plugin, grid, latest post, display post, post list, post, page, category, responsive, list, thumbnail
5
  Requires at least: 3.3
6
- Tested up to: 6.0
7
- Stable tag: 2.4.0.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -166,6 +166,9 @@ Yes, they are supported in [our Pro version](https://www.contentviewspro.com/?ut
166
 
167
  == Changelog ==
168
 
 
 
 
169
  = 2.4.0.6 - 2022/05/18 =
170
  * Tested up to WordPress 6.0
171
  * Some improvements
3
  Donate link: https://www.contentviewspro.com/?utm_source=wordpress&utm_medium=plugin&utm_campaign=donate
4
  Tags: post grid, grid plugin, grid, latest post, display post, post list, post, page, category, responsive, list, thumbnail
5
  Requires at least: 3.3
6
+ Tested up to: 6.1
7
+ Stable tag: 2.4.0.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
166
 
167
  == Changelog ==
168
 
169
+ = 2.4.0.7 - 2022/06/20 =
170
+ * Fix some layout issues in Add/Edit view page in RTL languages
171
+
172
  = 2.4.0.6 - 2022/05/18 =
173
  * Tested up to WordPress 6.0
174
  * Some improvements
admin/assets/css/admin.css CHANGED
@@ -358,4 +358,38 @@ html {
358
  margin-top: 10px;
359
  }
360
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361
  }
358
  margin-top: 10px;
359
  }
360
 
361
+ }
362
+
363
+
364
+ /* RTL */
365
+ .rtl .nav-tabs>li {
366
+ float: right !important;
367
+ }
368
+ .rtl .form-horizontal .control-label {
369
+ text-align: right !important;
370
+ float: right !important;
371
+ padding-right: 15px !important;
372
+ }
373
+ .rtl .radio input[type="radio"], .rtl .radio-inline input[type="radio"], .rtl .checkbox input[type="checkbox"], .rtl .checkbox-inline input[type="checkbox"] {
374
+ float: right !important;
375
+ margin-right: 0em !important;
376
+ margin-left: 10px !important;
377
+ }
378
+ .rtl .col-md-1, .rtl .col-md-2, .rtl .col-md-3, .rtl .col-md-4, .rtl .col-md-5, .rtl .col-md-6, .rtl .col-md-7, .rtl .col-md-8, .rtl .col-md-9, .rtl .col-md-10, .rtl .col-md-11, .rtl .col-md-12 {
379
+ float: right !important;
380
+ }
381
+ .rtl .pt-wrap .text-muted, .rtl .pt-cv-w50 select, .rtl .pt-cv-w50 radio, .rtl .pt-cv-w200 select, .rtl .pt-cv-w200 input, .rtl .pt-cv-w200 radio, .rtl .pt-cv-group .checkbox {
382
+ float: right !important;
383
+ }
384
+ .rtl .input-group-addon:last-child {
385
+ border-left: 1px solid #ccc !important;
386
+ }
387
+ .rtl #pt-cv-group-color-font .pt-params .form-group, .rtl #pt-cv-group-date .radio, .rtl .has-popover .checkbox, .rtl .pt-cv-w50 .form-control.select2-container, .rtl .pt-cv-w50 input[type=text] {
388
+ float: right !important;
389
+ }
390
+ .rtl .input-group-addon, .rtl #pt-cv-group-color-font .pt-cv-numfield input {
391
+ border-radius: 0 !important;
392
+ }
393
+ .rtl .select2-container-multi .select2-choices li {
394
+ float: right !important;
395
  }
content-views.php CHANGED
@@ -10,7 +10,7 @@
10
  * Plugin Name: Content Views
11
  * Plugin URI: http://wordpress.org/plugins/content-views-query-and-display-post-page/
12
  * Description: Query and display <strong>posts, pages</strong> in awesome layouts (<strong>grid, scrollable list, collapsible list</strong>) easier than ever, without coding!
13
- * Version: 2.4.0.6
14
  * Author: Content Views
15
  * Author URI: http://profiles.wordpress.org/pt-guy
16
  * Text Domain: content-views-query-and-display-post-page
@@ -24,7 +24,7 @@ if ( !defined( 'ABSPATH' ) ) {
24
  }
25
 
26
  // Define Constant
27
- define( 'PT_CV_VERSION', '2.4.0.6' );
28
  define( 'PT_CV_FILE', __FILE__ );
29
  define( 'PT_CV_PATH', plugin_dir_path( __FILE__ ) );
30
  include_once( PT_CV_PATH . 'includes/defines.php' );
10
  * Plugin Name: Content Views
11
  * Plugin URI: http://wordpress.org/plugins/content-views-query-and-display-post-page/
12
  * Description: Query and display <strong>posts, pages</strong> in awesome layouts (<strong>grid, scrollable list, collapsible list</strong>) easier than ever, without coding!
13
+ * Version: 2.4.0.7
14
  * Author: Content Views
15
  * Author URI: http://profiles.wordpress.org/pt-guy
16
  * Text Domain: content-views-query-and-display-post-page
24
  }
25
 
26
  // Define Constant
27
+ define( 'PT_CV_VERSION', '2.4.0.7' );
28
  define( 'PT_CV_FILE', __FILE__ );
29
  define( 'PT_CV_PATH', plugin_dir_path( __FILE__ ) );
30
  include_once( PT_CV_PATH . 'includes/defines.php' );