HEX
Server: LiteSpeed
System: Linux server490.bertina.biz 5.14.0-687.31.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Sat Aug 1 05:38:01 EDT 2026 x86_64
User: parskavirpaya (1252)
PHP: 8.1.34
Disabled: mail, show_source, system, shell_exec, passthru, exec, popen
Upload Files
File: /home/parskavirpaya/www/wp-content/plugins/porto-functionality/porto-woo.php
<?php
use Automattic\WooCommerce\Packages;

defined( 'ABSPATH' ) || exit;
/**
 * Remove woo gutenberg blocks.
 *
 * @since 2.7.0
 */
class Porto_Woo extends Packages {
	/**
	 * The Constructor
	 *
	 * @since 2.7.0
	 */
	public function __construct() {

		remove_action( 'plugins_loaded', array( 'Packages', 'on_init' ) );
        if ( ! is_admin() && get_option( 'porto_disable_woo_blocks', false ) ) {
    		unset( self::$packages['woocommerce-blocks'] ); // woocommerce block
            if ( function_exists( 'yit_maybe_plugin_fw_loader' ) ) {
                function yith_plugin_fw_is_gutenberg_enabled() {
                    return false;
                }
            }
        }
		if ( method_exists( 'Porto_Woo', 'load_packages' ) ) {
			self::load_packages();
		}
	}
}
new Porto_Woo();