Page Builder Gutenberg Blocks – CoBlocks - Version 2.3.1

Version Description

Download this release

Release Info

Developer Godaddy
Plugin Icon 128x128 Page Builder Gutenberg Blocks – CoBlocks
Version 2.3.1
Comparing to
See all releases

Code changes from version 2.3.0 to 2.3.1

class-coblocks.php CHANGED
@@ -4,7 +4,7 @@
4
  * Description: CoBlocks is a suite of professional <strong>page building content blocks</strong> for the WordPress Gutenberg block editor. Our blocks are hyper-focused on empowering makers to build beautifully rich pages in WordPress.
5
  * Author: GoDaddy
6
  * Author URI: https://www.godaddy.com
7
- * Version: 2.3.0
8
  * Text Domain: coblocks
9
  * Domain Path: /languages
10
  * Tested up to: 5.5
@@ -25,7 +25,7 @@ if ( ! defined( 'ABSPATH' ) ) {
25
  exit;
26
  }
27
 
28
- define( 'COBLOCKS_VERSION', '2.3.0' );
29
  define( 'COBLOCKS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
30
  define( 'COBLOCKS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
31
  define( 'COBLOCKS_PLUGIN_FILE', __FILE__ );
4
  * Description: CoBlocks is a suite of professional <strong>page building content blocks</strong> for the WordPress Gutenberg block editor. Our blocks are hyper-focused on empowering makers to build beautifully rich pages in WordPress.
5
  * Author: GoDaddy
6
  * Author URI: https://www.godaddy.com
7
+ * Version: 2.3.1
8
  * Text Domain: coblocks
9
  * Domain Path: /languages
10
  * Tested up to: 5.5
25
  exit;
26
  }
27
 
28
+ define( 'COBLOCKS_VERSION', '2.3.1' );
29
  define( 'COBLOCKS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
30
  define( 'COBLOCKS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
31
  define( 'COBLOCKS_PLUGIN_FILE', __FILE__ );
includes/class-block-patterns.php CHANGED
@@ -27,7 +27,7 @@ class CoBlocks_Block_Patterns {
27
  add_action( 'init', array( $this, 'register_type_taxonomy' ) );
28
  add_action( 'init', array( $this, 'register_category_taxonomy' ) );
29
  add_action( 'init', array( $this, 'load_block_patterns' ) );
30
- add_action( 'rest_insert_block_patterns', array( $this, 'add_taxonomies_on_insert_post' ), 10, 2 );
31
 
32
  add_filter( 'coblocks_layout_selector_categories', array( $this, 'load_categories' ) );
33
  add_filter( 'coblocks_layout_selector_layouts', array( $this, 'load_layouts' ) );
27
  add_action( 'init', array( $this, 'register_type_taxonomy' ) );
28
  add_action( 'init', array( $this, 'register_category_taxonomy' ) );
29
  add_action( 'init', array( $this, 'load_block_patterns' ) );
30
+ add_action( 'rest_insert_' . self::POST_TYPE, array( $this, 'add_taxonomies_on_insert_post' ), 10, 2 );
31
 
32
  add_filter( 'coblocks_layout_selector_categories', array( $this, 'load_categories' ) );
33
  add_filter( 'coblocks_layout_selector_layouts', array( $this, 'load_layouts' ) );
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: page builder, Gutenberg blocks, WordPress blocks, gutenberg, blocks
5
  Requires at least: 5.0
6
  Tested up to: 5.5
7
  Requires PHP: 5.6
8
- Stable tag: 2.3.0
9
  License: GPL-2.0
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -138,3 +138,6 @@ Developers can also apply minor style touch-ups to their themes if necessary. If
138
  * Move i18ntools to their own composer package [#1650](https://github.com/godaddy-wordpress/coblocks/pull/1650)
139
  * Remove arrows from lightbox in single image galleries [#1656](https://github.com/godaddy-wordpress/coblocks/pull/1656)
140
  * Remove box shadow from selected Form block fields [#1655](https://github.com/godaddy-wordpress/coblocks/pull/1655)
 
 
 
5
  Requires at least: 5.0
6
  Tested up to: 5.5
7
  Requires PHP: 5.6
8
+ Stable tag: 2.3.1
9
  License: GPL-2.0
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
138
  * Move i18ntools to their own composer package [#1650](https://github.com/godaddy-wordpress/coblocks/pull/1650)
139
  * Remove arrows from lightbox in single image galleries [#1656](https://github.com/godaddy-wordpress/coblocks/pull/1656)
140
  * Remove box shadow from selected Form block fields [#1655](https://github.com/godaddy-wordpress/coblocks/pull/1655)
141
+
142
+ ### 2.3.1
143
+ * Fix custom taxonomy not being assigned to block pattern on save