# sellkit/trunk/includes/elementor/modules/product-description/module.php

SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster, version trunk. 14 lines.

- Page: https://pluginprobe.com/plugins/sellkit/trunk/code/includes/elementor/modules/product-description/module.php
- Raw: https://pluginprobe.com/plugins/sellkit/trunk/raw/includes/elementor/modules/product-description/module.php
- Modified: 2025-10-06T16:06:30+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/sellkit/trunk/code/includes/elementor/modules/product-description/module.php#L10-L20`.

```php
<?php

defined( 'ABSPATH' ) || die();

class Sellkit_Elementor_Product_Description_Module extends Sellkit_Elementor_Base_Module {
	public static function is_active() {
		return function_exists( 'WC' );
	}

	public function get_widgets() {
		return [ 'product-description' ];
	}
}

```
