__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/* global woocommerce_admin_product_editor */
jQuery( function ( $ ) {
$( function () {
var editorWrapper = $( '#postdivrich' );
/**
* In the Product Editor context, the footer needs to be hidden otherwise the computation of the postbox position is wrong.
* For more details, see https://github.com/woocommerce/woocommerce/pull/59212.
*/
$( '#wpfooter' ).css( { visibility: 'hidden', display: 'unset' } );
if ( editorWrapper.length ) {
editorWrapper.addClass( 'postbox woocommerce-product-description' );
editorWrapper.prepend(
'<h2 class="postbox-header"><label>' +
woocommerce_admin_product_editor.i18n_description +
'</label></h2>'
);
}
} );
} );