Skip to content

Instantly share code, notes, and snippets.

@renrax
Forked from ibndawood/functions.php
Created February 2, 2022 19:35
Show Gist options
  • Save renrax/cdf5d95d14c2560f4c69b6f513cc0510 to your computer and use it in GitHub Desktop.
Save renrax/cdf5d95d14c2560f4c69b6f513cc0510 to your computer and use it in GitHub Desktop.
Electro - Always display attributes in Specifications tab
add_action( 'woocommerce_before_single_product', 'ec_child_modify_display_specs_attr' );
function ec_child_modify_display_specs_attr() {
global $post;
update_post_meta( $post->ID, '_specifications_display_attributes', 'yes' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment