Version Description
Sep 04, 2019 = * Fix: User capabilities issue. * Fix: Google fonts loading issue.
Download this release
Release Info
Developer | shapedplugin |
Plugin | Carousel, Slider, Gallery by WP Carousel – Image Carousel & Photo Gallery, Post Carousel & Post Grid, Product Carousel & Product Grid for WooCommerce |
Version | 2.1.4 |
Comparing to | |
See all releases |
Code changes from version 2.1.3 to 2.1.4
admin/views/wpcfree-metabox/classes/abstract.class.php
CHANGED
@@ -18,7 +18,7 @@ if ( ! class_exists( 'SP_WPCF_Abstract' ) ) {
|
|
18 |
|
19 |
// Check for embed google web fonts
|
20 |
if ( ! empty( $this->args['enqueue_webfont'] ) ) {
|
21 |
-
add_action( 'wp_enqueue_scripts', array( &$this, 'add_enqueue_google_fonts' ), 100 );
|
22 |
}
|
23 |
|
24 |
// Check for embed custom css styles
|
18 |
|
19 |
// Check for embed google web fonts
|
20 |
if ( ! empty( $this->args['enqueue_webfont'] ) ) {
|
21 |
+
//add_action( 'wp_enqueue_scripts', array( &$this, 'add_enqueue_google_fonts' ), 100 );
|
22 |
}
|
23 |
|
24 |
// Check for embed custom css styles
|
includes/class-wp-carousel-free-post-types.php
CHANGED
@@ -102,6 +102,18 @@ class WP_Carousel_Free_Post_Type {
|
|
102 |
'menu_icon' => WPCAROUSELF_URL . '/admin/js/wp-carousel-icon.svg',
|
103 |
'rewrite' => false,
|
104 |
'query_var' => false,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
'supports' => array(
|
106 |
'title',
|
107 |
),
|
102 |
'menu_icon' => WPCAROUSELF_URL . '/admin/js/wp-carousel-icon.svg',
|
103 |
'rewrite' => false,
|
104 |
'query_var' => false,
|
105 |
+
'capabilities' => array(
|
106 |
+
'edit_post' => 'update_core',
|
107 |
+
'read_post' => 'update_core',
|
108 |
+
'delete_post' => 'update_core',
|
109 |
+
'delete_posts' => 'update_core',
|
110 |
+
'delete_others_posts' => 'update_core',
|
111 |
+
'edit_posts' => 'update_core',
|
112 |
+
'edit_others_posts' => 'update_core',
|
113 |
+
'publish_posts' => 'update_core',
|
114 |
+
'read_private_posts' => 'update_core',
|
115 |
+
'create_posts' => 'update_core',
|
116 |
+
),
|
117 |
'supports' => array(
|
118 |
'title',
|
119 |
),
|
readme.txt
CHANGED
@@ -326,6 +326,10 @@ Thank you!
|
|
326 |
|
327 |
== Changelog ==
|
328 |
|
|
|
|
|
|
|
|
|
329 |
= 2.1.3 – Jul 13, 2019 =
|
330 |
* Fix: Undefined index error notice.
|
331 |
|
326 |
|
327 |
== Changelog ==
|
328 |
|
329 |
+
= 2.1.4 – Sep 04, 2019 =
|
330 |
+
* Fix: User capabilities issue.
|
331 |
+
* Fix: Google fonts loading issue.
|
332 |
+
|
333 |
= 2.1.3 – Jul 13, 2019 =
|
334 |
* Fix: Undefined index error notice.
|
335 |
|
wp-carousel-free.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
* Plugin Name: WordPress Carousel
|
11 |
* Plugin URI: https://shapedplugin.com/plugin/wordpress-carousel-pro/
|
12 |
* Description: The Most Powerful and User-friendly WordPress Carousel Plugin. Create beautiful carousels in minutes using Images, Posts, WooCommerce Products etc.
|
13 |
-
* Version: 2.1.
|
14 |
* Author: ShapedPlugin
|
15 |
* Author URI: https://shapedplugin.com/
|
16 |
* License: GPL-2.0+
|
@@ -119,7 +119,7 @@ class SP_WP_Carousel_Free {
|
|
119 |
*/
|
120 |
public function setup() {
|
121 |
$this->plugin_name = 'wp-carousel-free';
|
122 |
-
$this->version = '2.1.
|
123 |
$this->define_constants();
|
124 |
$this->includes();
|
125 |
$this->load_dependencies();
|
10 |
* Plugin Name: WordPress Carousel
|
11 |
* Plugin URI: https://shapedplugin.com/plugin/wordpress-carousel-pro/
|
12 |
* Description: The Most Powerful and User-friendly WordPress Carousel Plugin. Create beautiful carousels in minutes using Images, Posts, WooCommerce Products etc.
|
13 |
+
* Version: 2.1.4
|
14 |
* Author: ShapedPlugin
|
15 |
* Author URI: https://shapedplugin.com/
|
16 |
* License: GPL-2.0+
|
119 |
*/
|
120 |
public function setup() {
|
121 |
$this->plugin_name = 'wp-carousel-free';
|
122 |
+
$this->version = '2.1.4';
|
123 |
$this->define_constants();
|
124 |
$this->includes();
|
125 |
$this->load_dependencies();
|