banner.php
9 months 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
4 months ago
featured-category-cover-image.php
1 year ago
featured-category-triple.php
1 year ago
footer-large.php
1 year ago
footer-simple-menu.php
2 years ago
footer-with-3-menus.php
4 months ago
four-image-grid-content-left.php
4 months 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
4 months ago
hero-product-3-split.php
9 months ago
hero-product-chessboard.php
9 months ago
hero-product-split.php
9 months ago
intro-centered-content-with-image-below.php
4 months ago
just-arrived-full-hero.php
9 months 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-image-gallery.php
1 year ago
page-coming-soon-minimal-left-image.php
1 year ago
page-coming-soon-modern-black.php
1 year ago
page-coming-soon-split-right-image.php
1 year ago
page-coming-soon-with-header-footer.php
4 months 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
9 months ago
product-query-product-gallery.php
7 months ago
product-search-form.php
2 years ago
related-products.php
1 year ago
social-follow-us-in-social-media.php
4 months ago
testimonials-3-columns.php
1 year ago
testimonials-single.php
4 months ago
three-columns-with-images-and-content.php
4 months ago
footer-with-3-menus.php
66 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Title: Footer with 3 Menus |
| 4 | * Slug: woocommerce-blocks/footer-with-3-menus |
| 5 | * Categories: WooCommerce |
| 6 | * Block Types: core/template-part/footer |
| 7 | */ |
| 8 | ?> |
| 9 | |
| 10 | <!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"40px","padding":{"top":"40px","right":"40px","bottom":"40px","left":"40px"}}},"className":"wc-blocks-footer-pattern"} --> |
| 11 | <div class="wc-blocks-pattern-footer-with-3-menus wp-block-group alignfull wc-blocks-footer-pattern" style="padding-top:40px;padding-right:40px;padding-bottom:40px;padding-left:40px"> |
| 12 | <!-- wp:columns {"style":{"spacing":{"padding":{"right":"0","left":"0"}}},"className":"are-vertically-aligned-top"} --> |
| 13 | <div class="wp-block-columns are-vertically-aligned-top" style="padding-right:0;padding-left:0"> |
| 14 | <!-- wp:column {"verticalAlignment":"top","width":"60%"} --> |
| 15 | <div class="wp-block-column is-vertically-aligned-top" style="flex-basis:60%"> |
| 16 | <!-- wp:group {"style":{"spacing":{"blockGap":"32px"}},"layout":{"type":"flex","flexWrap":"wrap","verticalAlignment":"top"}} --> |
| 17 | <div class="wp-block-group"> |
| 18 | <!-- wp:site-logo /--> |
| 19 | |
| 20 | <!-- wp:columns {"style":{"spacing":{"blockGap":{"left":"var:preset|spacing|50"}},"layout":{"selfStretch":"fill","flexSize":null}}} --> |
| 21 | <div class="wp-block-columns"> |
| 22 | <!-- wp:column --> |
| 23 | <div class="wp-block-column"> |
| 24 | <!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","orientation":"vertical"},"style":{"spacing":{"blockGap":"10px"}}} /--> |
| 25 | </div> |
| 26 | <!-- /wp:column --> |
| 27 | </div> |
| 28 | <!-- /wp:columns --> |
| 29 | </div> |
| 30 | <!-- /wp:group --> |
| 31 | </div> |
| 32 | <!-- /wp:column --> |
| 33 | |
| 34 | <!-- wp:column {"width":"10%"} --> |
| 35 | <div class="wp-block-column" style="flex-basis:10%"></div> |
| 36 | <!-- /wp:column --> |
| 37 | |
| 38 | <!-- wp:column {"verticalAlignment":"stretch","width":"30%","style":{"spacing":{"blockGap":"60px"}},"layout":{"type":"default"}} --> |
| 39 | <div class="wp-block-column is-vertically-aligned-stretch" style="flex-basis:30%"> |
| 40 | <!-- wp:search {"style":{"border":{"radius":"0px"}}, "label":"<?php esc_html_e( 'Search', 'woocommerce' ); ?>","showLabel":false,"placeholder":"<?php esc_html_e( 'Search', 'woocommerce' ); ?>","buttonText":"<?php esc_html_e( 'Search', 'woocommerce' ); ?>","buttonUseIcon":true,"query":{"post_type":"product"},"width":100,"widthUnit":"%"} /--> |
| 41 | <!-- wp:group {"style":{"spacing":{"blockGap":"0","padding":{"right":"0","left":"0"},"margin":{"top":"56px","bottom":"0"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"right"}} --> |
| 42 | <div class="wp-block-group" style="margin-top:56px;margin-bottom:0;padding-right:0;padding-left:0"> |
| 43 | <!-- wp:site-title {"style":{"typography":{"fontStyle":"normal","fontWeight":"700"}}} /--> |
| 44 | |
| 45 | <!-- wp:paragraph {"align":"right"} --><p class="has-text-align-right"> |
| 46 | <?php |
| 47 | echo sprintf( |
| 48 | /* translators: Footer powered by text. %1$s being WordPress, %2$s being WooCommerce */ |
| 49 | esc_html__( |
| 50 | 'Powered by %1$s with %2$s', |
| 51 | 'woocommerce' |
| 52 | ), |
| 53 | '<a href="https://wordpress.org" target="_blank" rel="noreferrer nofollow">WordPress</a>', |
| 54 | '<a href="https://woocommerce.com" target="_blank" rel="noreferrer nofollow">WooCommerce</a>' |
| 55 | ); |
| 56 | ?> |
| 57 | </p><!-- /wp:paragraph --> |
| 58 | </div> |
| 59 | <!-- /wp:group --> |
| 60 | </div> |
| 61 | <!-- /wp:column --> |
| 62 | </div> |
| 63 | <!-- /wp:columns --> |
| 64 | </div> |
| 65 | <!-- /wp:group --> |
| 66 |