Last active
December 20, 2015 11:59
-
-
Save barbwiredmedia/6127346 to your computer and use it in GitHub Desktop.
Wordpress - Functions
ACF / WP Ecommerce - Post Priority Fix
This file contains 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
/* WP e-commerce core has been edited | |
* ::root::\wp-content\plugins\wp-e-commerce\wpsc-admin\includes\product-functions.php | |
* | |
* Line #221 changed priority 10 save to priority 5 was conflicing with ACF BT - 4.29.2013 | |
* add_action( 'save_post', 'wpsc_admin_submit_product', 5, 2 ); | |
*/ | |
remove_action( 'save_post', 'wpsc_admin_submit_product', 10, 2 ); | |
add_action( 'save_post', 'wpsc_admin_submit_product', 5, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment