Allien On Earth
Allien On Earth

Reputation: 63

Woocommerce without wordpress

I am building an online store with wordpress+wocommerce. What I want to do is , once I am done with the all customization and publish the site, I no longer need the word press tools. The owner of the site is only interested in the data presented by wocommerce such as daily sales, visits etc. But the wordpress administration page is complex and complicated. So the question is, is it possible to remove all other stuff and just keep wocommerce for the client?

Upvotes: 5

Views: 8260

Answers (1)

ishegg
ishegg

Reputation: 9927

WooCommerce is a Wordpress plugin, so no, you can't run it without Wordpress. If your goal is to make the backoffice simple to your client, you can strip all the unnecessary menu items from the sidebar, so he only sees the WooCommerce options. Take a look at this reference.

For example, to remove the Plugins item, in the theme's functions.php add:

add_action("admin_menu", "remove_items");
function remove_items() {
    remove_menu_page("plugins.php");
}

Upvotes: 3

Related Questions