corsonr
4/3/2014 - 9:59 AM

WooCommerce - Move Product Documents

WooCommerce - Move Product Documents

<?php

// Remove the default section location
remove_action( 'woocommerce_single_product_summary', array( $GLOBALS['wc_product_documents'], 'render_product_documents' ), 25 );

// Restore the documents section in a nother location
add_action( 'woocommerce_after_single_product_summary', array( $GLOBALS['wc_product_documents'], 'render_product_documents' ), 10 );