Advertisement
lorro

WooCommerce - Add a new dimension unit

May 18th, 2020
980
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2.   // WooCommerce - Add a new dimension unit
  3.   // Credit: WooCommerce documentation
  4.   add_filter( 'woocommerce_products_general_settings', 'add_woocommerce_dimension_unit_league' );
  5.   function add_woocommerce_dimension_unit_league( $settings ) {
  6.     foreach ( $settings as &$setting ) {
  7.       if ( 'woocommerce_dimension_unit' == $setting['id'] ) {
  8.         $setting['options']['feet'] = __( 'feet' );  // new unit
  9.       }
  10.     }
  11.     return $settings;
  12.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement