Title: Plugin Missing from WC admin pages &#8211; FIXED
Last modified: November 5, 2018

---

# Plugin Missing from WC admin pages – FIXED

 *  Resolved [hbwarper](https://wordpress.org/support/users/hbwarper/)
 * (@hbwarper)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/plugin-missing-from-wc-admin-pages-fixed/)
 * There have been several support requests unanswered for the plugin missing from
   the Woocommerce -> settings -> shipping page – this may not be the answer for
   you but it was my issue.
 * I have woocommerce installed on a multisite setup.
    Multisite store active plugins
   in a different area of the database from standard blogs so the if statement on
   line 24 of plugins/transdirect-shipping/transdirect_shipping.php:
 * `if ( in_array('woocommerce/woocommerce.php', apply_filters('active_plugins',
   get_option('active_plugins'))) ) {`
 * was failing to notice that woo commerce is in fact installed and therefore not
   enabling the plug in.
 * The simple fix is to correctly check for woocommerce by class instead
    `if ( 
   class_exists( 'WooCommerce' ) ) {`
 * So simply replace the line (line 24 in the current version as of nov 2018)
    `
   if ( in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', 
   get_option('active_plugins'))) ) {`
 * with
    `if ( class_exists( 'WooCommerce' ) ) {`
 * and it should now be active in the Woocommerce -> settings -> shipping page.

Viewing 1 replies (of 1 total)

 *  Plugin Author [transdirect](https://wordpress.org/support/users/transdirect/)
 * (@transdirect)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/plugin-missing-from-wc-admin-pages-fixed/#post-11047045)
 * Hello
 * Thank you for providing more detail on issue you face. We will look in to that
   and it will be updated in next release of plugin.
 * Thank you.

Viewing 1 replies (of 1 total)

The topic ‘Plugin Missing from WC admin pages – FIXED’ is closed to new replies.

 * ![](https://ps.w.org/transdirect-shipping/assets/icon-256x256.png?rev=2685571)
 * [Transdirect Shipping Plugin for Woocommerce](https://wordpress.org/plugins/transdirect-shipping/)
 * [Support Threads](https://wordpress.org/support/plugin/transdirect-shipping/)
 * [Active Topics](https://wordpress.org/support/plugin/transdirect-shipping/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/transdirect-shipping/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/transdirect-shipping/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [transdirect](https://wordpress.org/support/users/transdirect/)
 * Last activity: [7 years, 4 months ago](https://wordpress.org/support/topic/plugin-missing-from-wc-admin-pages-fixed/#post-11047045)
 * Status: resolved