Hi. Currently, the plugin doesn’t have an option for this. (I could add it if enough people request it.) For now, you would have to add custom code for this (see this for how to add custom code).
The following code snippet will move the attributes up, below the title, on the single product page. If you want to move them below the price, change the number 7 to 11 (the number 7 is on the 3rd from the last line, below).
// On the single product page, move attributes below the title.
function my_show_atts_on_product_page() {
global $WooCommerce_Show_Attributes;
remove_action( 'woocommerce_single_product_summary', array( $WooCommerce_Show_Attributes, 'show_atts_on_product_page' ), 25 );
add_action( 'woocommerce_single_product_summary', array( $WooCommerce_Show_Attributes, 'show_atts_on_product_page' ), 7 );
}
add_action( 'init', 'my_show_atts_on_product_page' );
-
This reply was modified 7 years, 7 months ago by isabel104.