You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.4 KiB
52 lines
1.4 KiB
<?php
|
|
/**
|
|
* Title: Coming Soon Store Only
|
|
* Slug: woocommerce/coming-soon-store-only
|
|
* Categories: WooCommerce
|
|
* Feature Flag: launch-your-store
|
|
*
|
|
* @package WooCommerce\Blocks
|
|
*/
|
|
|
|
?>
|
|
|
|
<?php
|
|
if ( wc_current_theme_is_fse_theme() ) {
|
|
echo '<!-- wp:template-part {"slug":"header","tagName":"header"} /-->';
|
|
}
|
|
?>
|
|
|
|
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
|
<div class="wp-block-group"><!-- wp:spacer -->
|
|
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
|
|
<!-- /wp:spacer -->
|
|
|
|
<!-- wp:heading {"textAlign":"center","level":1} -->
|
|
<h1 class="wp-block-heading has-text-align-center"><?php echo esc_html__( 'Great things are on the horizon', 'woocommerce' ); ?></h1>
|
|
<!-- /wp:heading -->
|
|
|
|
<!-- wp:spacer {"height":"10px"} -->
|
|
<div style="height:10px" aria-hidden="true" class="wp-block-spacer"></div>
|
|
<!-- /wp:spacer -->
|
|
|
|
<!-- wp:paragraph {"align":"center"} -->
|
|
<p class="has-text-align-center"><?php echo esc_html__( 'Something big is brewing! Our store is in the works and will be launching soon!', 'woocommerce' ); ?></p>
|
|
<!-- /wp:paragraph -->
|
|
|
|
<!-- wp:spacer -->
|
|
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
|
|
<!-- /wp:spacer --></div>
|
|
<!-- /wp:group -->
|
|
|
|
|
|
<?php
|
|
if ( wc_current_theme_is_fse_theme() ) {
|
|
echo '<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->';
|
|
}
|
|
?>
|
|
|
|
<style>
|
|
.woocommerce-breadcrumb {
|
|
display: none;
|
|
}
|
|
</style>
|
|
|