Skip to content

Instantly share code, notes, and snippets.

@erickarbe
Created January 15, 2018 15:59
Show Gist options
  • Save erickarbe/2988e0d32f0bc05938b185d5201d4f1e to your computer and use it in GitHub Desktop.
Save erickarbe/2988e0d32f0bc05938b185d5201d4f1e to your computer and use it in GitHub Desktop.
Add the price next to the variation name on WooCommerce product
add_filter( 'woocommerce_variation_option_name', 'display_price_in_variation_option_name' );
function display_price_in_variation_option_name( $term ) {
global $wpdb, $product, $woocommerce;
if ( empty( $term ) ) return $term;
if ( empty( $product->get_id() ) ) return $term;
$result = $wpdb->get_col( "SELECT slug FROM {$wpdb->prefix}terms WHERE name = '$term'" );
$term_slug = ( !empty( $result ) ) ? $result[0] : $term;
$pid = $product->get_id();
$query = "SELECT postmeta.post_id AS product_id
FROM {$wpdb->prefix}postmeta AS postmeta
LEFT JOIN {$wpdb->prefix}posts AS products ON ( products.ID = postmeta.post_id )
WHERE postmeta.meta_key LIKE 'attribute_%'
AND postmeta.meta_value = '$term_slug'
AND products.post_parent = $pid";
$variation_id = $wpdb->get_col( $query );
$parent = wp_get_post_parent_id( $variation_id[0] );
if ( $parent > 0 ) {
$_product = new WC_Product_Variation( $variation_id[0] );
return $term . ' (' . wp_kses( wc_price( $_product->get_price() ), array() ) . ')';
}
return $term;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment