Skip to content

Instantly share code, notes, and snippets.

@kreativdenker
kreativdenker / gist:277d19d93b05898246bccbe3fff8a6b5
Created February 9, 2017 18:38
WooCommerce Produkt Variationen mit Angebot Preis unter Überschrift
function shuffle_variable_product_elements(){
if ( is_product() ) {
global $post;
$product = wc_get_product( $post->ID );
if ( $product->is_type( 'variable' ) ) {
remove_action( 'woocommerce_single_variation', 'woocommerce_single_variation', 10 );
add_action( 'woocommerce_before_variations_form', 'woocommerce_single_variation', 20 );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
add_action( 'woocommerce_before_variations_form', 'woocommerce_template_single_title', 10 );