Add missing HTML template that renders the product data panel content

This commit is contained in:
Konstantin Kovshenin 2019-02-22 12:03:58 +03:00
parent 559409bccb
commit 25a72cc5f3
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<?php
/**
* The Extensions tab HTML in the product tabs
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<div id="marketplace_suggestions" class="panel woocommerce_options_panel hidden">
<?php
WC_Marketplace_Suggestions::render_suggestions_container( 'product-edit-header' );
WC_Marketplace_Suggestions::render_suggestions_container( 'product-edit-meta-tab-body' );
WC_Marketplace_Suggestions::render_suggestions_container( 'product-edit-footer' );
?>
</div>