If your developing an e-commerce website using Woocommerce, by default the product tabs (including full product description, technical specifications etc.) are positioned underneath the two product columns.
To move the tabs to the right hand side (underneath ‘Add to Cart’ button etc.) Insert the snippit into your WordPress themes functions.php file. This is an update-safe method as your not having to edit core Woocommerce code.
// Removes tabs from their original loaction remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 ); // Inserts tabs under the main right product content add_action( 'woocommerce_single_product_summary', 'woocommerce_output_product_data_tabs', 60 );