aderaaij
11/4/2013 - 11:55 AM

Add theme edit capabilities for shop manager role (woocommerce)

Add theme edit capabilities for shop manager role (woocommerce)

<?php
  // get the the role object
  $role_object = get_role( 'shop_manager' );
  
  // add $cap capability to this role object
  $role_object->add_cap( 'edit_theme_options' );