wc.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | // |
| 4 | // ─── DISABLE AUTOMATIC REQUIRED PAGE CREATION ─────────────────────────────────── |
| 5 | // |
| 6 | |
| 7 | add_filter( 'woocommerce_create_pages', 'auxin_disable_automatic_page_creation', 1, 1 ); |
| 8 | function auxin_disable_automatic_page_creation( $pages ) { |
| 9 | if ( ! empty( $_GET['action'] ) && $_GET['action'] == 'install_pages' ) { |
| 10 | return $pages; |
| 11 | } |
| 12 | return[]; |
| 13 | } |
| 14 | |
| 15 | ?> |