is_order_page() ) { // STYLES wp_enqueue_style( 'thickbox' ); wp_enqueue_style( 'wpo-wcpdf-order-styles', WPO_WCPDF()->plugin_url() . '/assets/css/order-styles.css', array(), WPO_WCPDF_VERSION ); $wc_version = defined( 'WC_VERSION' ) ? WC_VERSION : WOOCOMMERCE_VERSION; if ( version_compare( $wc_version, '2.1', '<' ) ) { // legacy WC2.0 styles wp_enqueue_style( 'wpo-wcpdf-order-styles-buttons', WPO_WCPDF()->plugin_url() . '/assets/css/order-styles-buttons-wc20.css', array(), WPO_WCPDF_VERSION ); } elseif ( version_compare( $wc_version, '2.1', '>=' ) && version_compare( $wp_version, '5.3', '<' ) ) { // WC2.1 - WC3.2 (MP6) is used: bigger buttons // also applied to WC3.3+ but without affect due to .column-order_actions class being deprecated in 3.3+ wp_enqueue_style( 'wpo-wcpdf-order-styles-buttons', WPO_WCPDF()->plugin_url() . '/assets/css/order-styles-buttons-wc38.css', array(), WPO_WCPDF_VERSION ); } elseif ( version_compare( $wp_version, '5.3', '>=' ) ) { // WP5.3 or newer is used: realign img inside buttons wp_enqueue_style( 'wpo-wcpdf-order-styles-buttons', WPO_WCPDF()->plugin_url() . '/assets/css/order-styles-buttons-wc39.css', array(), WPO_WCPDF_VERSION ); } // SCRIPTS wp_enqueue_script( 'wpo-wcpdf', WPO_WCPDF()->plugin_url() . '/assets/js/order-script.js', array( 'jquery' ), WPO_WCPDF_VERSION ); $bulk_actions = array(); $documents = WPO_WCPDF()->documents->get_documents(); foreach ($documents as $document) { $bulk_actions[$document->get_type()] = "PDF " . $document->get_title(); } $bulk_actions = apply_filters( 'wpo_wcpdf_bulk_actions', $bulk_actions ); wp_localize_script( 'wpo-wcpdf', 'wpo_wcpdf_ajax', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), // URL to WordPress ajax handling page 'nonce' => wp_create_nonce('generate_wpo_wcpdf'), 'bulk_actions' => array_keys( $bulk_actions ), 'confirm_delete' => __( 'Are you sure you want to delete this document? This cannot be undone.', 'woocommerce-pdf-invoices-packing-slips'), 'confirm_regenerate' => __( 'Are you sure you want to regenerate this document? This will make the document reflect the most current settings (such as footer text, document name, etc.) rather than using historical settings.', 'woocommerce-pdf-invoices-packing-slips'), ) ); } // only load on our own settings page // maybe find a way to refer directly to WPO\WC\PDF_Invoices\Settings::$options_page_hook ? if ( $hook == 'woocommerce_page_wpo_wcpdf_options_page' || $hook == 'settings_page_wpo_wcpdf_options_page' || ( isset($_GET['page']) && $_GET['page'] == 'wpo_wcpdf_options_page' ) ) { wp_enqueue_style( 'wpo-wcpdf-settings-styles', WPO_WCPDF()->plugin_url() . '/assets/css/settings-styles.css', array('woocommerce_admin_styles'), WPO_WCPDF_VERSION ); wp_add_inline_style( 'wpo-wcpdf-settings-styles', ".next-number-input.ajax-waiting { background-image: url(".WPO_WCPDF()->plugin_url().'/assets/images/spinner.gif'.") !important; background-position: 95% 50% !important; background-repeat: no-repeat !important; }" ); // SCRIPTS wp_enqueue_script( 'wc-enhanced-select' ); wp_enqueue_script( 'wpo-wcpdf-admin', WPO_WCPDF()->plugin_url() . '/assets/js/admin-script.js', array( 'jquery', 'wc-enhanced-select' ), WPO_WCPDF_VERSION ); wp_localize_script( 'wpo-wcpdf-admin', 'wpo_wcpdf_admin', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), ) ); wp_enqueue_media(); wp_enqueue_script( 'wpo-wcpdf-media-upload', WPO_WCPDF()->plugin_url() . '/assets/js/media-upload.js', array( 'jquery' ), WPO_WCPDF_VERSION ); } } /** * Check if this is a shop_order page (edit or list) */ public function is_order_page() { global $post_type; if( $post_type == 'shop_order' ) { return true; } else { return false; } } } endif; // class_exists return new Assets();