Linux 软件免费装
Banner图

EDD Admin Tabs

开发者 tsunoa
rubengc
更新时间 2017年6月2日 00:21
捐献地址: 去捐款
PHP版本: 4.0 及以上
WordPress版本: 4.8
版权: GPLv2 or later
版权网址: 版权信息

标签

admin e-commerce download order tab tabs edd easy digital downloads downloads digital tsunoa rubengc

下载

1.0.2 1.0.0 1.0.1

详情介绍:

EDD Admin Tabs distributes meta boxes from download's edit page in tabs. Current tabs distribution:
  1. General Information
  2. Prices and files
  3. Software Licensing
  4. Vendor (FES and Commissions meta boxes)
  5. Feedback (Comments and reviews)
  6. SEO (The SEO Framework and Yoast SEO)
  7. Revisions (If download post type supports it)
Supported plugins:
  1. EDD Frontend Submissions
  2. EDD Commissions
  3. EDD Reviews
  4. EDD Software Licensing
  5. EDD Googl
  6. Restrict Content
  7. Visual Composer
  8. The SEO Framework
  9. Yoast SEO
This plugin requires Easy Digital Downloads.

安装:

  1. Unpack the entire contents of this plugin zip file into your wp-content/plugins/ folder locally
  2. Upload to your site
  3. Navigate to wp-admin/plugins.php on your site (your WP Admin plugin page)
  4. Activate this plugin
  5. That's it!
OR you can just install it with WordPress by going to Plugins >> Add New >> and type this plugin's name

常见问题:

How can I customize tabs?

First of all you need add a filter to changes how tabs are rendered, and at this point you could add, change or move tabs. This is the structure for a tab: $tab = array( 'tab-identifier' => array( 'label' => 'My tab', 'selectors' => array( '#my-meta-box', '.group-of-meta-boxes', ) ) ); This is an example of tab customization: `function custom_download_tabs( $tabs ) { // Adding a meta box to general tab $tabs['general']['selectors'][] = '#my-meta-box'; // Moving a tab $temp_tab = $tabs['price-files']; unset($tabs['price-files']); $tabs['price-files'] = $temp_tab; // Removing a tab unset($tabs['feedback']); return $tabs; } add_filter( 'edd_admin_tabs_download_tabs', 'custom_download_tabs');` Note: Meta boxes that are not in a tab will be kept always visible, such as submit meta box

更新日志:

1.0.2 1.0.1 1.0