Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Plugin Name: Show attribute name and value in WooCommerce
- Plugin URI: https://www.damiencarbery.com/
- Description: Show the attribute name beside the attribute value in WooCommerce.
- Author: Damien Carbery
- Version: 0.1
- */
- add_filter( 'woocommerce_product_variation_title_include_attributes', 'dcwd_product_variation_title_include_attributes', 10, 2 );
- function dcwd_product_variation_title_include_attributes( $should_include_attributes, $product ) {
- return false;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement