Get started here.', 'maizi' ), array( 25 | 'a' => array( 26 | 'href' => array(), 27 | ), 28 | ) ), esc_url( admin_url( 'post-new.php' ) ) ); ?>
29 | 30 | 31 | 32 | 33 | 36 | 37 | 38 | 41 |├── .gitignore ├── screenshot.png ├── languages └── zh_CN.mo ├── loop-templates ├── content-empty.php ├── content-page.php ├── content.php ├── content-none.php ├── content-archive.php └── content-aside.php ├── includes ├── pagination.php ├── previous-next.php ├── inline-js.php ├── jetpack.php ├── editor.php ├── post-view.php ├── plugins-support.php ├── extras.php ├── comment-form.php ├── control-checkbox-multiple.php ├── security.php ├── list-count-optimize.php ├── woocommerce.php ├── widgets-position.php ├── template-tags.php ├── setup.php ├── widget-singular-menu.php └── widget-slider-unit.php ├── page-templates ├── empty.php ├── blank.php ├── content-only.php ├── content-with-meta.php └── content-with-sidebar.php ├── install-lnmp-on-centos8.sh ├── searchform.php ├── assets ├── js │ ├── checkbox-multiple.js │ ├── theme-customizer.js │ ├── theme.js │ ├── js.cookie-2.2.1.min.js │ └── maizi-admin.js └── bootstrap │ └── css │ ├── bootstrap-reboot.min.css │ └── bootstrap-reboot.css ├── sidebar-footerfull.php ├── woocommerce ├── global │ ├── wrapper-end.php │ ├── wrapper-start.php │ ├── quantity-input.php │ └── form-login.php ├── loop │ ├── pagination.php │ ├── add-to-cart.php │ └── orderby.php ├── single-product │ ├── tabs │ │ ├── description.php │ │ ├── additional-information.php │ │ └── tabs.php │ ├── short-description.php │ └── add-to-cart │ │ ├── variation-add-to-cart-button.php │ │ └── simple.php ├── cart │ ├── proceed-to-checkout-button.php │ ├── cart-empty.php │ ├── mini-cart.php │ └── cart.php ├── myaccount │ ├── navigation.php │ ├── form-lost-password.php │ ├── form-reset-password.php │ ├── form-edit-address.php │ ├── my-address.php │ ├── form-edit-account.php │ ├── my-orders.php │ ├── downloads.php │ ├── form-login.php │ └── orders.php ├── product-searchform.php ├── checkout │ ├── form-coupon.php │ ├── form-checkout.php │ ├── payment.php │ └── form-pay.php └── archive-product.php ├── codesniffer.ruleset.xml ├── README.md ├── woocommerce.php ├── sidebar.php ├── footer.php ├── functions.php ├── single.php ├── sidebar-slider.php ├── editor-style.css ├── archive.php ├── index.php ├── search.php ├── 404.php ├── page.php ├── author.php ├── comments.php ├── .travis.yml └── header.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | assets/**/*.map -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garylab/maizi/HEAD/screenshot.png -------------------------------------------------------------------------------- /languages/zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garylab/maizi/HEAD/languages/zh_CN.mo -------------------------------------------------------------------------------- /loop-templates/content-empty.php: -------------------------------------------------------------------------------- 1 | 8 |
18 | -------------------------------------------------------------------------------- /assets/js/checkbox-multiple.js: -------------------------------------------------------------------------------- 1 | jQuery( document ).ready( function() { 2 | 3 | /* === Checkbox Multiple Control === */ 4 | 5 | jQuery( '.customize-control-checkbox-multiple input[type="checkbox"]' ).on( 'change', function() { 6 | 7 | checkbox_values = jQuery( this ).parents( '.customize-control' ).find( 'input[type="checkbox"]:checked' ).map( 8 | function() { 9 | return this.value; 10 | } 11 | ).get().join( ',' ); 12 | 13 | jQuery( this ).parents( '.customize-control' ).find( 'input[type="hidden"]' ).val( checkbox_values ).trigger( 'change' ); 14 | } 15 | ); 16 | 17 | } ); -------------------------------------------------------------------------------- /includes/previous-next.php: -------------------------------------------------------------------------------- 1 | 8 |32 | 33 | 34 | 35 |
36 | 37 | -------------------------------------------------------------------------------- /woocommerce/loop/add-to-cart.php: -------------------------------------------------------------------------------- 1 | %s', 28 | esc_url( $product->add_to_cart_url() ), 29 | esc_attr( isset( $quantity ) ? $quantity : 1 ), 30 | esc_attr( $product->get_id() ), 31 | esc_attr( $product->get_sku() ), 32 | esc_html( $product->add_to_cart_text() ) 33 | ), 34 | $product ); 35 | -------------------------------------------------------------------------------- /woocommerce/global/wrapper-start.php: -------------------------------------------------------------------------------- 1 |Get started here.', 'maizi' ), array( 25 | 'a' => array( 26 | 'href' => array(), 27 | ), 28 | ) ), esc_url( admin_url( 'post-new.php' ) ) ); ?>
29 | 30 | 31 | 32 | 33 | 36 | 37 | 38 | 41 |