File "render.php"
Full Path: /home/aiclgcwq/photonindustriespvt.com/wp-content/themes/woodmart/inc/integrations/gutenberg/src/layouts/woo-notices/render.php
File size: 579 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
use XTS\Modules\Layouts\Main;
if ( ! function_exists( 'wd_gutenberg_woo_notices' ) ) {
function wd_gutenberg_woo_notices( $block_attributes ) {
if ( ! woodmart_woocommerce_installed() ) {
return '';
}
Main::setup_preview();
ob_start();
?>
<div id="<?php echo esc_attr( wd_get_gutenberg_element_id( $block_attributes ) ); ?>" class="wd-wc-notices<?php echo esc_attr( wd_get_gutenberg_element_classes( $block_attributes ) ); ?>">
<?php woocommerce_output_all_notices(); ?>
</div>
<?php
Main::restore_preview();
return ob_get_clean();
}
}