Created
April 4, 2026 08:18
-
-
Save plugin-republic/2e1377358484b0b84fc1abdb2c73a1bd to your computer and use it in GitHub Desktop.
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
| <?php | |
| /** | |
| * Update variation taxonomies after WP All Import import completes | |
| */ | |
| function demo_after_xml_import( $import_id, $import ) { | |
| if( function_exists( 'wcbvp_update_all_variations' ) ) { | |
| wcbvp_update_all_variations(); | |
| } | |
| } | |
| add_action( 'pmxi_after_xml_import', 'demo_after_xml_import', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment