Created
June 23, 2016 01:55
-
-
Save tokopress/7dd6465f2fc41e81c39d2a14d6523e62 to your computer and use it in GitHub Desktop.
Bookie - Move Book Details Section After Product Data Tabs on Single Product
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'after_setup_theme', 'custom_bookie_rearrange_book_details' ); | |
function custom_bookie_rearrange_book_details() { | |
remove_action( 'woocommerce_after_single_product_summary', 'toko_wc_book_details', 5 ); | |
add_action( 'woocommerce_after_single_product_summary', 'toko_wc_book_details', 15 ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment