Add missing HTML template that renders the product data panel content
This commit is contained in:
parent
559409bccb
commit
25a72cc5f3
|
@ -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>
|
Loading…
Reference in New Issue