Editing: index.php
<?php if(!defined('ABSPATH')) { die(); } do_action('pmxe_addons_html'); ?> <table class="wpallexport-layout wpallexport-step-1"> <tr> <td class="left"> <div class="wpallexport-wrapper"> <h2 class="wpallexport-wp-notices"></h2> <div class="wpallexport-header"> <div class="wpallexport-logo"></div> <div class="wpallexport-title"> <h2><?php esc_html_e('New Export', 'wp_all_export_plugin'); ?></h2> </div> <div class="wpallexport-links"> <a href="http://www.wpallimport.com/support/?utm_source=export-plugin-free&utm_medium=help&utm_campaign=premium-support" target="_blank"><?php esc_html_e('Support', 'wp_all_export_plugin'); ?></a> | <a href="http://www.wpallimport.com/documentation/?utm_source=export-plugin-free&utm_medium=help&utm_campaign=docs" target="_blank"><?php esc_html_e('Documentation', 'wp_all_export_plugin'); ?></a> </div> </div> <div class="clear"></div> <?php if ($this->errors->get_error_codes()): ?> <?php $this->error() ?> <?php endif ?> <form method="post" class="wpallexport-choose-file" enctype="multipart/form-data" autocomplete="off"> <div class="wpallexport-upload-resource-step-one rad4"> <div class="clear"></div> <div class="wpallexport-import-types"> <h2><?php esc_html_e('First, choose what to export.', 'wp_all_export_plugin'); ?></h2> <a class="wpallexport-import-from wpallexport-url-type <?php echo 'advanced' != $post['export_type'] ? 'selected' : '' ?>" rel="specific_type" href="javascript:void(0);"> <span class="wpallexport-icon"></span> <span class="wpallexport-icon-label"><?php esc_html_e('Specific Post Type', 'wp_all_export_plugin'); ?></span> </a> <a class="wpallexport-import-from wpallexport-file-type <?php echo 'advanced' == $post['export_type'] ? 'selected' : '' ?>" rel="advanced_type" href="javascript:void(0);"> <span class="wpallexport-icon"></span> <span class="wpallexport-icon-label"><?php esc_html_e('WP_Query Results', 'wp_all_export_plugin'); ?></span> </a> </div> <input type="hidden" value="<?php echo esc_attr($post['export_type']); ?>" name="export_type"/> <?php if (\class_exists('WooCommerce')): ?> <input type="hidden" value="1" id="WooCommerce_Installed"> <?php endif; ?> <div class="wpallexport-upload-type-container" rel="specific_type"> <div class="wpallexport-file-type-options"> <?php $custom_types = get_post_types(array('_builtin' => true), 'objects') + get_post_types(array('_builtin' => false, 'show_ui' => true), 'objects') + get_post_types(array('_builtin' => false, 'show_ui' => false), 'objects'); foreach ($custom_types as $key => $ct) { if (in_array($key, array('attachment', 'revision', 'nav_menu_item', 'import_users', 'shop_webhook', 'acf-field', 'acf-field-group'))) unset($custom_types[$key]); } $custom_types = apply_filters( 'wpallexport_custom_types', $custom_types ); global $wp_version; $sorted_cpt = array(); foreach ($custom_types as $key => $cpt){ $sorted_cpt[$key] = $cpt; // Put users & comments & taxonomies after Pages if ( ! empty($custom_types['page']) && $key == 'page' || empty($custom_types['page']) && $key == 'post' ){ $sorted_cpt['taxonomies'] = new stdClass(); $sorted_cpt['taxonomies']->labels = new stdClass(); $sorted_cpt['taxonomies']->labels->name = __('Taxonomies','wp_all_export_plugin'); $sorted_cpt['comments'] = new stdClass(); $sorted_cpt['comments']->labels = new stdClass(); $sorted_cpt['comments']->labels->name = __('Comments','wp_all_export_plugin'); $sorted_cpt['users'] = new stdClass(); $sorted_cpt['users']->labels = new stdClass(); $sorted_cpt['users']->labels->name = __('Users','wp_all_export_plugin'); break; } } $order = array('shop_order', 'shop_coupon', 'shop_customer', 'product'); foreach ($order as $cpt){ if (!empty($custom_types[$cpt])) $sorted_cpt[$cpt] = $custom_types[$cpt]; } uasort($custom_types, "wp_all_export_cmp_custom_types"); foreach ($custom_types as $key => $cpt) { if (empty($sorted_cpt[$key])){ $sorted_cpt[$key] = $cpt; } } if ( class_exists('WooCommerce') ) { $reviewElement = new stdClass(); $reviewElement->labels = new stdClass(); $reviewElement->labels->name = __('WooCommerce Reviews', 'wp_all_export_plugin'); $sorted_cpt = $this->insertAfter($sorted_cpt, 'product', 'shop_review', $reviewElement); } ?> <select id="file_selector"> <option value=""><?php esc_html_e('Choose a post type...', 'wp_all_export_plugin'); ?></option> <?php if (count($sorted_cpt)): $unknown_cpt = array(); ?> <?php foreach ($sorted_cpt as $key => $ct):?> <?php // Remove unused post types if( in_array($key, array('wp_block', 'customize_changeset', 'custom_css', 'scheduled_action', 'scheduled-action', 'user_request', 'oembed_cache', 'wp_navigation'))) { continue; } $image_src = 'dashicon-cpt'; $cpt_label = $ct->labels->name; if ( in_array($key, array('post', 'page', 'product', 'import_users', 'shop_order', 'shop_coupon', 'shop_customer', 'users', 'comments', 'taxonomies', 'custom_wpae-gf-addon') ) ) { $image_src = 'dashicon-' . $key; } else if($key == 'shop_review') { $image_src = 'dashicon-review'; } else { $unknown_cpt[$key] = $ct; continue; } ?> <option value="<?php echo esc_attr($key);?>" data-imagesrc="dashicon <?php echo esc_attr($image_src); ?>" <?php if ($key == $post['cpt']) echo 'selected="selected"'; ?>><?php echo esc_html($cpt_label); ?></option> <?php endforeach ?> <?php endif ?> <?php if ( ! empty($unknown_cpt)): ?> <?php foreach ($unknown_cpt as $key => $ct):?> <?php $image_src = 'dashicon-cpt'; $cpt_label = $ct->labels->name; ?> <option value="<?php echo $key;?>" data-imagesrc="dashicon <?php echo esc_attr($image_src); ?>" <?php if ($key == $post['cpt']) echo 'selected="selected"'; ?>><?php echo esc_html($cpt_label); ?></option> <?php endforeach ?> <?php endif;?> </select> <input type="hidden" name="cpt" value="<?php echo esc_attr($post['cpt']); ?>"/> <div class="taxonomy_to_export_wrapper"> <input type="hidden" name="taxonomy_to_export" value="<?php echo esc_attr($post['taxonomy_to_export']);?>"> <select id="taxonomy_to_export"> <option value=""><?php esc_html_e('Select taxonomy', 'wp_all_export_plugin'); ?></option> <?php $options = wp_all_export_get_taxonomies(); ?> <?php foreach ($options as $slug => $name):?> <option value="<?php echo esc_attr($slug);?>" <?php if ($post['taxonomy_to_export'] == $slug):?>selected="selected"<?php endif;?>><?php echo esc_html($name);?></option> <?php endforeach;?> </select> </div> <div class="sub_post_type_to_export_wrapper"> <input type="hidden" name="sub_post_type_to_export" value="<?php echo $post['taxonomy_to_export'];?>"> <select id="sub_post_to_export"> </select> </div> <div class="wpallexport-free-edition-notice wpallexport-user-export-notice"> <p><?php esc_html_e('The User Export Package is Required to Export Users.', 'wp_all_export_plugin'); ?></p> <a class="upgrade_link" target="_blank" href="https://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=5839954&edd_options%5Bprice_id%5D=1&utm_source=export-plugin-free&utm_medium=upgrade-notice&utm_campaign=export-users"><?php _e('Purchase the User Export Package','wp_all_export_plugin');?></a> </div> <div class="wpallexport-free-edition-notice wpallexport-shop_customer-export-notice"> <p><?php esc_html_e('The User Export Package is Required to Export Customers.', 'wp_all_export_plugin'); ?></p> <a class="upgrade_link" target="_blank" href="https://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=5839954&edd_options%5Bprice_id%5D=1&utm_source=export-plugin-free&utm_medium=upgrade-notice&utm_campaign=export-customers"><?php esc_html_e('Purchase the User Export Package','wp_all_export_plugin');?></a> </div> <div class="wpallexport-free-edition-notice wpallexport-shop_order-export-notice"> <p><?php esc_html_e('The Order Export Add-On is Required to Export Orders.', 'wp_all_export_plugin'); ?></p> <a class="upgrade_link thickbox open-plugin-details-modal" target="_blank" href="<?php echo admin_url('plugin-install.php?tab=plugin-information&plugin=order-export-for-woocommerce&TB_iframe=true&width=772&height=978');?>"><?php _e('Download the Order Export Add-On','wp_all_export_plugin');?></a> </div> <div class="wpallexport-free-edition-notice wpallexport-shop_coupon-export-notice"> <p><?php esc_html_e('The WooCommerce Export Package is Required to Export Coupons.', 'wp_all_export_plugin'); ?></p> <a class="upgrade_link" target="_blank" href="https://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=5839955&edd_options%5Bprice_id%5D=1&utm_source=export-plugin-free&utm_medium=upgrade-notice&utm_campaign=export-coupons"><?php esc_html_e('Purchase the WooCommerce Export Package','wp_all_export_plugin');?></a> </div> <div class="wpallexport-free-edition-notice wpallexport-shop_review-export-notice"> <p><?php esc_html_e('WP All Export Pro and the WooCommerce Export Add-On are Required to Export WooCommerce Reviews.', 'wp_all_export_plugin'); ?></p> <a class="upgrade_link" target="_blank" href="https://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=5839955&edd_options%5Bprice_id%5D=1&utm_source=export-plugin-free&utm_medium=upgrade-notice&utm_campaign=export-reviews"><?php _e('Purchase the WooCommerce Export Package','wp_all_export_plugin');?></a> </div> <div class="wpallexport-free-edition-notice wpallexport-product-export-notice"> <p><?php esc_html_e('The Product Export Add-On is Required to Export WooCommerce Products.', 'wp_all_export_plugin'); ?></p> <a class="upgrade_link thickbox open-plugin-details-modal" target="_blank" href="<?php echo admin_url('plugin-install.php?tab=plugin-information&plugin=product-export-for-woocommerce&TB_iframe=true&width=772&height=978');?>"><?php esc_html_e('Download the Product Export Add-On','wp_all_export_plugin');?></a> </div> <div class="wpallexport-free-edition-notice wpallexport-comments-export-notice"> <p><?php esc_html_e('WP All Export Pro is Required to Export Comments.', 'wp_all_export_plugin'); ?></p> <a class="upgrade_link" target="_blank" href="https://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=5839967&edd_options%5Bprice_id%5D=1&utm_source=export-plugin-free&utm_medium=upgrade-notice&utm_campaign=export-comments"><?php esc_html_e('Purchase WP All Export Pro','wp_all_export_plugin');?></a> </div> <div class="wpallexport-free-edition-notice wpallexport-taxonomies-export-notice"> <p><?php esc_html_e('WP All Export Pro is Required to Export Taxonomies.', 'wp_all_export_plugin'); ?></p> <a class="upgrade_link" target="_blank" href="https://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=5839967&edd_options%5Bprice_id%5D=1&utm_source=export-plugin-free&utm_medium=upgrade-notice&utm_campaign=export-taxonomies"><?php esc_html_e('Purchase WP All Export Pro','wp_all_export_plugin');?></a> </div> <?php do_action('pmxe_after_notices_html'); ?> </div> </div> <div class="wpallexport-upload-type-container" rel="advanced_type"> <div class="wpallexport-file-type-options"> <select id="wp_query_selector"> <option value="wp_query" <?php if ('wp_query' == $post['wp_query_selector']) echo 'selected="selected"'; ?>><?php esc_html_e('Post Type Query', 'wp_all_export_plugin'); ?></option> <option value="wp_user_query" <?php if ('wp_user_query' == $post['wp_query_selector']) echo 'selected="selected"'; ?>><?php esc_html_e('User Query', 'wp_all_export_plugin'); ?></option> <?php global $wp_version; if ( version_compare($wp_version, '4.2.0', '>=') ): ?> <option value="wp_comment_query" <?php if ('wp_comment_query' == $post['wp_query_selector']) echo 'selected="selected"'; ?>><?php esc_html_e('Comment Query', 'wp_all_export_plugin'); ?></option> <?php endif; ?> </select> <div class="wpallexport-free-edition-notice wpallexport-user-export-notice" style="margin-bottom: 20px;"> <a class="upgrade_link" target="_blank" href="https://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=5839954&edd_options%5Bprice_id%5D=1&utm_source=export-plugin-free&utm_medium=upgrade-notice&utm_campaign=export-users"> <?php esc_html_e('The User Export Package is required to Export Users','wp_all_export_plugin');?></a><br/> <p><?php esc_html_e('If you already own it, remove the WP All Export free edition and install the User Export Package\'s plugins.', 'wp_all_export_plugin'); ?></p> </div> <div class="wpallexport-free-edition-notice wpallexport-comments-export-notice" style="margin-bottom: 20px;"> <a class="upgrade_link" target="_blank" href="https://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=5839967&edd_options%5Bprice_id%5D=1&utm_source=export-plugin-free&utm_medium=upgrade-notice&utm_campaign=export-comments"> <?php esc_html_e('Upgrade to the Pro edition of WP All Export to Export Comments','wp_all_export_plugin');?></a><br/> <p><?php esc_html_e('If you already own it, remove the free edition and install the Pro edition.', 'wp_all_export_plugin'); ?></p> </div> <div class="wpallexport-free-edition-notice wpallexport-custom-product-export-notice" style="margin-bottom: 20px;"> <p><?php esc_html_e('The WooCommerce Export Package is Required to Export WooCommerce Products.', 'wp_all_export_plugin'); ?></p> <br/> <a class="upgrade_link" target="_blank" href="https://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=5839955&edd_options%5Bprice_id%5D=1&utm_source=export-plugin-free&utm_medium=upgrade-notice&utm_campaign=export-products"><?php esc_html_e('Purchase the WooCommerce Export Package','wp_all_export_plugin');?></a> </div> <input type="hidden" name="wp_query_selector" value="<?php echo esc_attr($post['wp_query_selector']);?>"> <textarea class="wp_query" rows="10" cols="80" name="wp_query" placeholder="'post_type' => 'post', 'post_status' => array( 'pending', 'draft', 'future' )" style="width: 600px;"><?php echo esc_html($post['wp_query']); ?></textarea> </div> </div> <div class="wp_all_export_preloader"></div> <input type="hidden" class="hierarhy-output" name="filter_rules_hierarhy" value="<?php echo esc_html($post['filter_rules_hierarhy']);?>"/> <input type="hidden" class="wpallexport-preload-post-data" value="<?php echo esc_attr($preload);?>"> </div> <div class="wpallexport-filtering-wrapper rad4"> <div class="ajax-console" id="filtering_result"> </div> </div> <div class="wpallexport-upload-resource-step-two rad4 wpallexport-collapsed closed"> </div> <p class="wpallexport-submit-buttons" <?php if ('advanced' == $post['export_type']) echo 'style="display:block;"';?>> <input type="hidden" name="custom_type" value="" /> <input type="hidden" name="is_submitted" value="1" /> <input type="hidden" name="auto_generate" value="0" /> <?php wp_nonce_field('choose-cpt', '_wpnonce_choose-cpt'); ?> <span class="wp_all_export_continue_step_two"></span> </p> <table><tr><td class="wpallexport-note"></td></tr></table> </form> <div class="wpallexport-display-columns wpallexport-margin-top-forty"> <?php echo apply_filters('wpallexport_footer', ''); ?> </div> </div> </td> </tr> </table> <?php add_thickbox(); ?>
Save
Back