banner.php
1 year ago
coming-soon-entire-site.php
1 year ago
coming-soon-store-only.php
1 year ago
coming-soon.php
1 year ago
content-right-image-left.php
1 year ago
featured-category-cover-image.php
1 year ago
featured-category-triple.php
1 year ago
filters.php
1 year ago
footer-large.php
1 year ago
footer-simple-menu.php
2 years ago
footer-with-3-menus.php
2 years ago
four-image-grid-content-left.php
1 year ago
header-centered-pattern.php
1 year ago
header-distraction-free.php
1 year ago
header-essential.php
1 year ago
header-large.php
1 year ago
header-minimal.php
1 year ago
heading-with-three-columns-of-content-with-link.php
1 year ago
hero-product-3-split.php
1 year ago
hero-product-chessboard.php
1 year ago
hero-product-split.php
1 year ago
intro-centered-content-with-image-below.php
1 year ago
just-arrived-full-hero.php
1 year ago
no-products-found-filters.php
2 years ago
no-products-found.php
2 years ago
page-coming-soon-default.php
1 year ago
page-coming-soon-with-header-footer.php
1 year ago
product-collection-3-columns.php
1 year ago
product-collection-4-columns.php
1 year ago
product-collection-5-columns.php
1 year ago
product-collection-featured-products-5-columns.php
1 year ago
product-query-product-gallery.php
1 year ago
product-search-form.php
2 years ago
related-products.php
1 year ago
social-follow-us-in-social-media.php
1 year ago
testimonials-3-columns.php
1 year ago
testimonials-single.php
1 year ago
three-columns-with-images-and-content.php
1 year ago
page-coming-soon-with-header-footer.php
60 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Title: Coming Soon With Header and Footer |
| 4 | * Slug: woocommerce/page-coming-soon-with-header-footer |
| 5 | * Categories: WooCommerce |
| 6 | * Template Types: coming-soon |
| 7 | * Inserter: false |
| 8 | * Feature Flag: coming-soon-newsletter-template |
| 9 | */ |
| 10 | |
| 11 | $current_theme = wp_get_theme()->get_stylesheet(); |
| 12 | $inter_font_family = 'inter'; |
| 13 | $cardo_font_family = 'cardo'; |
| 14 | |
| 15 | if ( 'twentytwentyfour' === $current_theme ) { |
| 16 | $inter_font_family = 'body'; |
| 17 | $cardo_font_family = 'heading'; |
| 18 | } |
| 19 | |
| 20 | ?> |
| 21 | |
| 22 | <!-- wp:woocommerce/coming-soon {"storeOnly":true, "className":"woocommerce-coming-soon-store-only"} --> |
| 23 | <div class="wp-block-woocommerce-coming-soon woocommerce-coming-soon-store-only"> |
| 24 | |
| 25 | <?php |
| 26 | if ( wc_current_theme_is_fse_theme() ) { |
| 27 | echo '<!-- wp:template-part {"slug":"header","tagName":"header"} /-->'; |
| 28 | } |
| 29 | ?> |
| 30 | |
| 31 | <!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center","orientation":"vertical"}} --> |
| 32 | <div class="wp-block-group"><!-- wp:spacer --> |
| 33 | <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div> |
| 34 | <!-- /wp:spacer --> |
| 35 | |
| 36 | <!-- wp:heading {"textAlign":"center","level":1,"fontFamily":"<?php echo esc_html( $cardo_font_family ); ?>"} --> |
| 37 | <h1 class="wp-block-heading has-text-align-center has-<?php echo esc_html( $cardo_font_family ); ?>-font-family"><?php echo esc_html__( 'Great things are on the horizon', 'woocommerce' ); ?></h1> |
| 38 | <!-- /wp:heading --> |
| 39 | |
| 40 | <!-- wp:spacer {"height":"10px"} --> |
| 41 | <div style="height:10px" aria-hidden="true" class="wp-block-spacer"></div> |
| 42 | <!-- /wp:spacer --> |
| 43 | |
| 44 | <!-- wp:paragraph {"align":"center","fontFamily":"<?php echo esc_html( $inter_font_family ); ?>"} --> |
| 45 | <p class="has-text-align-center has-<?php echo esc_html( $inter_font_family ); ?>-font-family"><?php echo esc_html__( 'Something big is brewing! Our store is in the works and will be launching soon!', 'woocommerce' ); ?></p> |
| 46 | <!-- /wp:paragraph --> |
| 47 | |
| 48 | <!-- wp:spacer --> |
| 49 | <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div> |
| 50 | <!-- /wp:spacer --></div> |
| 51 | <!-- /wp:group --> |
| 52 | |
| 53 | <?php |
| 54 | if ( wc_current_theme_is_fse_theme() ) { |
| 55 | echo '<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->'; |
| 56 | } |
| 57 | ?> |
| 58 | </div> |
| 59 | <!-- /wp:woocommerce/coming-soon --> |
| 60 |