Galleries by Angie Makes - Version 1.62

Version Description

Download this release

Release Info

Developer cbaldelomar
Plugin Icon wp plugin Galleries by Angie Makes
Version 1.62
Comparing to
See all releases

Code changes from version 1.61 to 1.62

Files changed (4) hide show
  1. README.md +4 -0
  2. includes/functions.php +6 -0
  3. readme.txt +5 -1
  4. wc-gallery.php +2 -2
README.md CHANGED
@@ -67,6 +67,10 @@ For more tutorials on our gallery plugin, go to our knowledge base.
67
 
68
  ## Changelog ##
69
 
 
 
 
 
70
  ### Version 1.61 ###
71
 
72
  * Updated WPC Settings Framework to 1.0.7
67
 
68
  ## Changelog ##
69
 
70
+ ### Version 1.62 ###
71
+
72
+ * disabled jetpack gallery message when plugin is activated
73
+
74
  ### Version 1.61 ###
75
 
76
  * Updated WPC Settings Framework to 1.0.7
includes/functions.php CHANGED
@@ -21,6 +21,12 @@ function wc_gallery_check_supports() {
21
  }
22
  add_action( 'init', 'wc_gallery_check_supports' );
23
 
 
 
 
 
 
 
24
  function wc_gallery_add_action_links( $links ) {
25
  return array_merge(
26
  array(
21
  }
22
  add_action( 'init', 'wc_gallery_check_supports' );
23
 
24
+ // Disable Jetapck carousel gallery messsage when this plugin is activated.
25
+ function wc_gallery_jp_carousel_maybe_disable( $false ) {
26
+ return true;
27
+ };
28
+ add_filter( 'jp_carousel_maybe_disable', 'wc_gallery_jp_carousel_maybe_disable', 10, 1 );
29
+
30
  function wc_gallery_add_action_links( $links ) {
31
  return array_merge(
32
  array(
readme.txt CHANGED
@@ -8,7 +8,7 @@ Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
- Extend WordPress galleries to display masonry gallery, carousel gallery, and slider gallery
12
 
13
  == Description ==
14
 
@@ -67,6 +67,10 @@ For more tutorials on our gallery plugin, go to our knowledge base.
67
 
68
  == Changelog ==
69
 
 
 
 
 
70
  = Version 1.61 =
71
 
72
  * Updated WPC Settings Framework to 1.0.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
+ Extend WordPress galleries to display masonry gallery, carousel gallery, and slider gallery.
12
 
13
  == Description ==
14
 
67
 
68
  == Changelog ==
69
 
70
+ = Version 1.62 =
71
+
72
+ * disabled jetpack gallery message when plugin is activated
73
+
74
  = Version 1.61 =
75
 
76
  * Updated WPC Settings Framework to 1.0.7
wc-gallery.php CHANGED
@@ -5,11 +5,11 @@ Plugin URI: http://angiemakes.com/feminine-wordpress-blog-themes-women/
5
  Description: Extend WordPress galleries to display masonry gallery, carousel gallery, and slider gallery
6
  Author: Chris Baldelomar
7
  Author URI: http://angiemakes.com/
8
- Version: 1.61
9
  License: GPLv2 or later
10
  */
11
 
12
- define( 'WC_GALLERY_VERSION', '1.61' );
13
  define( 'WC_GALLERY_PREFIX', 'wc_gallery_' );
14
  define( '_WC_GALLERY_PREFIX', '_wc_gallery_' );
15
  define( 'WC_GALLERY_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
5
  Description: Extend WordPress galleries to display masonry gallery, carousel gallery, and slider gallery
6
  Author: Chris Baldelomar
7
  Author URI: http://angiemakes.com/
8
+ Version: 1.62
9
  License: GPLv2 or later
10
  */
11
 
12
+ define( 'WC_GALLERY_VERSION', '1.62' );
13
  define( 'WC_GALLERY_PREFIX', 'wc_gallery_' );
14
  define( '_WC_GALLERY_PREFIX', '_wc_gallery_' );
15
  define( 'WC_GALLERY_PLUGIN_URL', plugin_dir_url( __FILE__ ) );