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

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

- Page: https://pluginprobe.com/plugins/ghostkit/3.4.1/code/classes/3rd/class-blocksy.php
- Raw: https://pluginprobe.com/plugins/ghostkit/3.4.1/raw/classes/3rd/class-blocksy.php
- Modified: 2024-02-18T18:40:24+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.4.1/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();

```
