I figured out what the problem was. I had a function that was turning off the “heartbeat” apparently that was preventing the tags, categories and slug edits from occurring for some reason.
Add the following to your functions.php file in your theme.
add_action( ‘after_setup_theme’, ‘customize_woo_mycred_gateway’, 999 );
function customize_woo_mycred_gateway() {
// Remove the gateway hook
remove_filter( ‘woocommerce_available_payment_gateways’, ‘mycred_woo_available_gateways’ );
// Add our own gateway hook
add_filter( ‘woocommerce_available_payment_gateways’, ‘mycred_always_show_payment_option_in_woo’ );
function mycred_always_show_payment_option_in_woo( $gateways )
{
return $gateways;
}
}