Skip to content

Instantly share code, notes, and snippets.

@waltercruz
Created July 22, 2020 21:12
Show Gist options
  • Save waltercruz/3257711f78de1854ac28a3f7f5a6dedd to your computer and use it in GitHub Desktop.
Save waltercruz/3257711f78de1854ac28a3f7f5a6dedd to your computer and use it in GitHub Desktop.
.
├── archive-product.php
├── auth
│   ├── footer.php
│   ├── form-grant-access.php
│   ├── form-login.php
│   └── header.php
├── cart
│   ├── cart-empty.php
│   ├── cart-item-data.php
│   ├── cart-shipping.php
│   ├── cart-totals.php
│   ├── cart.php
│   ├── cross-sells.php
│   ├── mini-cart.php
│   ├── proceed-to-checkout-button.php
│   └── shipping-calculator.php
├── checkout
│   ├── cart-errors.php
│   ├── form-billing.php
│   ├── form-checkout.php
│   ├── form-coupon.php
│   ├── form-login.php
│   ├── form-pay.php
│   ├── form-shipping.php
│   ├── order-receipt.php
│   ├── payment-method.php
│   ├── payment.php
│   ├── review-order.php
│   ├── terms.php
│   └── thankyou.php
├── content-product.php
├── content-product_cat.php
├── content-single-product.php
├── content-widget-price-filter.php
├── content-widget-product.php
├── content-widget-reviews.php
├── emails
│   ├── admin-cancelled-order.php
│   ├── admin-failed-order.php
│   ├── admin-new-order.php
│   ├── customer-completed-order.php
│   ├── customer-invoice.php
│   ├── customer-new-account.php
│   ├── customer-note.php
│   ├── customer-on-hold-order.php
│   ├── customer-processing-order.php
│   ├── customer-refunded-order.php
│   ├── customer-reset-password.php
│   ├── email-addresses.php
│   ├── email-customer-details.php
│   ├── email-downloads.php
│   ├── email-footer.php
│   ├── email-header.php
│   ├── email-order-details.php
│   ├── email-order-items.php
│   ├── email-styles.php
│   └── plain
│   ├── admin-cancelled-order.php
│   ├── admin-failed-order.php
│   ├── admin-new-order.php
│   ├── customer-completed-order.php
│   ├── customer-invoice.php
│   ├── customer-new-account.php
│   ├── customer-note.php
│   ├── customer-on-hold-order.php
│   ├── customer-processing-order.php
│   ├── customer-refunded-order.php
│   ├── customer-reset-password.php
│   ├── email-addresses.php
│   ├── email-customer-details.php
│   ├── email-downloads.php
│   ├── email-order-details.php
│   └── email-order-items.php
├── global
│   ├── breadcrumb.php
│   ├── form-login.php
│   ├── quantity-input.php
│   ├── sidebar.php
│   ├── wrapper-end.php
│   └── wrapper-start.php
├── loop
│   ├── add-to-cart.php
│   ├── loop-end.php
│   ├── loop-start.php
│   ├── no-products-found.php
│   ├── orderby.php
│   ├── pagination.php
│   ├── price.php
│   ├── rating.php
│   ├── result-count.php
│   └── sale-flash.php
├── myaccount
│   ├── dashboard.php
│   ├── downloads.php
│   ├── form-add-payment-method.php
│   ├── form-edit-account.php
│   ├── form-edit-address.php
│   ├── form-login.php
│   ├── form-lost-password.php
│   ├── form-reset-password.php
│   ├── lost-password-confirmation.php
│   ├── my-account.php
│   ├── my-address.php
│   ├── my-downloads.php
│   ├── my-orders.php
│   ├── navigation.php
│   ├── orders.php
│   ├── payment-methods.php
│   └── view-order.php
├── notices
│   ├── error.php
│   ├── notice.php
│   └── success.php
├── order
│   ├── form-tracking.php
│   ├── order-again.php
│   ├── order-details-customer.php
│   ├── order-details-item.php
│   ├── order-details.php
│   ├── order-downloads.php
│   └── tracking.php
├── product-searchform.php
├── single-product
│   ├── add-to-cart
│   │   ├── external.php
│   │   ├── grouped.php
│   │   ├── simple.php
│   │   ├── variable.php
│   │   ├── variation-add-to-cart-button.php
│   │   └── variation.php
│   ├── meta.php
│   ├── photoswipe.php
│   ├── price.php
│   ├── product-attributes.php
│   ├── product-image.php
│   ├── product-thumbnails.php
│   ├── rating.php
│   ├── related.php
│   ├── review-meta.php
│   ├── review-rating.php
│   ├── review.php
│   ├── sale-flash.php
│   ├── share.php
│   ├── short-description.php
│   ├── stock.php
│   ├── tabs
│   │   ├── additional-information.php
│   │   ├── description.php
│   │   └── tabs.php
│   ├── title.php
│   └── up-sells.php
├── single-product-reviews.php
├── single-product.php
├── t.txt
├── taxonomy-product_cat.php
└── taxonomy-product_tag.php
13 directories, 143 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment