# ghostkit/3.7.0/classes/3rd/class-blocksy.php

Block Animations, Motion &amp; Scroll Effects – Ghost Kit, version 3.7.0. 31 lines.

- Page: https://pluginprobe.com/plugins/ghostkit/3.7.0/code/classes/3rd/class-blocksy.php
- Raw: https://pluginprobe.com/plugins/ghostkit/3.7.0/raw/classes/3rd/class-blocksy.php
- Modified: 2026-08-26T18:35:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ghostkit/3.7.0/code/classes/3rd/class-blocksy.php#L10-L20`.

```php
<?php
/**
 * Blocksy theme.
 *
 * @package ghostkit
 */

/**
 * GhostKit_3rd_Blocksy
 */
class GhostKit_3rd_Blocksy {
	/**
	 * GhostKit_3rd_Blocksy constructor.
	 */
	public function __construct() {
		if ( 'blocksy' !== get_template() ) {
			return;
		}

		add_filter( 'gkt_custom_css_allow_js_fallback', '__return_false' );
		add_filter(
			'gkt_parse_blocks_methods',
			function () {
				return array( 'modern', 'classic' );
			}
		);
	}
}

new GhostKit_3rd_Blocksy();

```
