If you’ve been following the daily tasks of the course, by now you should have your webstore almost ready for launch, your shipping materials on the way, and your payment gateway and shipping settings set up. That’s quite a lot to get done in 3 days!
Today, we’ll cover how to test your online store to make sure everything’s working properly, and the final steps to making it live to the world! You’re actually almost done with the computer aspect of launching your farm online. Tomorrow will be mostly about setting up your shipping system and announcing your new online store to the world!
First, click here for today’s free printout to download.
So let’s get started. Begin by watching the video below, then go through the checklist after the video on how to set up these things. As always with these videos, it’s best to play the video on your phone or something while directly following along on your desktop and pausing when you need to!
Just copy and paste this into your new template. Don’t edit it!
<p style="float: right; text-align: right; margin: 0;">
Order Date: {{ date }}<br />
<strong>Invoice for {{ order_name }}</strong>
</p>
<div style="float: left; margin: 0 0 0.5em 0;" >
<strong style="font-size: 1em;">{{ shop_name }}</strong><br /><br />
</div>
<hr />
<h4 style="margin: 0 0 0.5em 0;">Order Items</h4>
<table class="table-tabular" style="margin: 0 0 0.0em 0;">
<thead>
<tr>
<th>Quantity</th>
<th>Item</th>
<th>Weight</th>
{% if show_line_item_taxes %}
<th>Taxes</th>
{% endif %}
<th>Price Per Unit</th>
<th>Price</th>
</tr>
</thead>
<tbody>
{% for line_item in line_items %}
<tr>
<!--<td>{{ line_item.image | img_url: 'thumb' | img_tag }}</td>-->
<td>{{ line_item.quantity }} x</td>
<td><b>{{ line_item.title }}</b></td>
<td>{{ line_item.weight | weight_with_unit}}</td>
{% if line_item.tax_lines %}
<td>
{% for tax_line in line_item.tax_lines %}
{{ tax_line.price | money }} {{ tax_line.title }}<br/>
{% endfor %}
</td>
{% endif %}
<td>
{% if line_item.original_price != line_item.price %}
<s>{{ line_item.original_price | money }}</s>
{% endif %}
{{ line_item.price | money }}
</td>
<td>{{ line_item.line_price | money}}</td>
</tr>
{% endfor %}
</tbody>
</table>
<div style="float: left; margin: 0 0 0.5em 0;" >
<h4 style="margin: 0.25 0 0.25em 0;">Payment Details</h4>
<table class="table-tabular" style="margin: 0 0 0.5em 0;">
<tr>
<td>Subtotal price:</td>
<td>{{ subtotal_price | money }}</td>
</tr>
{% for discount in discounts %}
<tr>
<td>Includes discount "{{ discount.code }}"</td>
<td>{{ discount.savings | money }}</td>
</tr>
{% endfor %}
<tr>
<td>Total tax:</td>
<td>{{ tax_price | money }}</td>
</tr>
{% if shipping_address %}
<tr>
<td>Shipping:</td>
<td>{{ shipping_price | money }}</td>
</tr>
{% endif %}
<tr>
<td><strong>Total price:</strong></td>
<td><strong>{{ total_price | money }}</strong></td>
</tr>
</table>
</div>
<div style="float: right; margin: 0 0 0.5em 0;" >{% if shipping_address %}
<h4 style="margin: 0.25 0 0.25em 0;">Ship To</h4>
<div style="margin: 0 0 0.5em 0; padding: 0.5em; border: .25px solid black;">
<strong>{{ shipping_address.name }}</strong><br/>
{% if shipping_address.company %}
{{ shipping_address.company }}<br/>
{% endif %}
{{ shipping_address.street }}<br/>
{{ shipping_address.city }}
{{ shipping_address.province_code }}
{{ shipping_address.zip | upcase }}<br/>
{{ shipping_address.country }}
<p>{{ shipping_line.title }}</p>
<p>Customer Phone: {{ shipping_address.phone }}</p>
<p>Customer Email: {{ customer.email }}</p>
<p>Number of Orders Placed by this Customer:{{ customer.orders_count }}</p>
</div>
</div>
{% endif %}
{% if note %}
<div><h3 style="margin: 0 0 0.5em 0;">Note</h3>
<p>{{ note }}</p>
<p>{{ customer.note }}</p>
</div>
{% endif %}
So that’s all for today! Tomorrow we’ll turn on your store and prepare you for your first shipping day!