WP Manifestindependent plugin directory
manifest / ecommerce / woocommerce-extend

WooCommerce Extend

Themosis Plugin to extend WooCommerce functionnalities

by AmphiBee · github.com/amphibee/woocommerce-extend · website

1stars
1forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/amphibee/woocommerce-extend/archive/refs/heads/main.zip

Readme

WooCommerce Extend

The plugin is configured to work on a Themosis framework like environment only.

It extends WooCommerce functionalities.

You can manager custom order statuses within the back-office and enable / disable product types from the configuration file of your application.

To enable or disable product type, go to your config/app.php file and set the following value:

return [
    [...]
    'woocommerce' => [
        'product_types' => [
            'virtual' => [
                'disabled' => true,
            ],
            'downloadable' => [
                'disabled' => true,
            ],
            'external' => [
                'disabled' => true,
            ],
        ],
    ],
];

Read the documentation on the Themosis framework website and start developing your own plugin.

Read the full README on GitHub →