Hi,
Hmmm not entirely what I was looking for its more a hacky way.
function xyz_tweak_product_page(){
remove_action( 'woocommerce_single_product_summary', 'sf_product_share', 45 );
remove_action( 'woocommerce_single_product_summary', 'sf_product_short', 20 );
add_action( 'woocommerce_after_add_to_cart_form', 'sf_product_short', 20 );
}
I kind of got it running this way for now by adding this to functions.php. Unfortunately at the moment I have to run it at the end of sf-woocommerce.php but would prefer a hook which occurs at the end of that files actions happening to catch it without effecting that core file directly.
Any ideas what action I could hook into?
Many thanks.