The basics of a store form the foundation of the Simple Store module. Create a store in just a few minutes without the high costs associated with unnecessary features!
Simple Store supports the following features:
With this feature set, we likely support the entire low to mid-range of webshops. However, even some large webshops run on the Simple Store module for ExpressionEngine.
Make sure your system meets the minimum requirements:
For every paid addon you need to validate your license in order to activate the module.
On a local environment, like *.dev
*.local
*.localhost
*.test
the license is valid for testing and building a new or existing sites.
For every other domain, you need to have a valid license.
Once installed, you will asked to enter your license key. When you entered a valid license you can hit the "Save license" button. This will start validating your license and will redirect you to addons.reinos.nl to login into your account. You can also register a new account in this process.
Once logged in, you are asked to use your current account or to login with another one.
Using the current logged in account, the server will check all info related to your license and once valid, it will redirect you back to your site where you see either a success message or an error message.
This module is using a license field to check if the license for the module is valid or not. On addons.reinos.nl you can check your license and add your valid domains.
In the Module CP you can enter then your license
When you enter a wrong license, the module will not work and it shows you an warning
Sometimes it happens that the license system says you have an invalid license. When this happens, make sure you have entered your domain url in your account, next to your license on addons.reinos.nl.
If this will not fix your license problem, please contact us on https://addons.reinos.nl/support
On the CP page you can modify a couple of things.
Set this to the url where your order is shown on the frontend.
By setting this url, you are able to view the order in the admin panel just the way the user its seeing the order.
(By default we always show the native Order view)
Set the price for shipping
Set the first (high) tax rate
The second (low) tax rate
Set the default rate
The TAX rate for the shipping
Is the price of a product incl TAX or excl TAX or none?
Set the default currency
Set the decimal point value to format the price
Set the thousand separator
The From address
The from name
Send the mail also to notification one or more addresses.
Send it as text or HTML
Set a default country
Select the countries that are allowed for the shop
This is the field where you can put your store info (can be HTML for formatting the data). This data will be printed in your invoices (top right)
Make a sum of all discount of just the first.
If not enabled, it will pick the highest value.
What should we log?
The module comes with some default predefined templates that can be used for your shop. On this page you can install them.
Create a discount coupon or add a discount per member ID with a fixed amount or order percentage.
(Note: discount code can only be used one time)
This is where you can track all error logs
The order overview page. For the detail page we connect the url of your frontend to the order. If you did not set an order template (we suggest you do), it will show the details in a simple page.
Enter your license key to activate your module
We use the following off-site gateways. The following gateways can be enabled and configured in the control panel and after that you can use the following tag (inside your checkout tag) to loop over your enabled gateways.
{exp:reinos_simple_store:checkout}
{!-- This is a select list, but your can convert it to anything you like. As long we have an input[gateway] field in the checkout tag --}
<select name="gateway">
<option value="">Choose your gateway</option>
{exp:reinos_simple_store:gateway_list}
<option value="{gateway:name}">{gateway:label}</option>
{/exp:reinos_simple_store:gateway_list}
</select>
{/exp:reinos_simple_store:checkout}
By using this Gateway you can order any product without doing a real payment. Mostly this is used to send the customer a custom invoice. But it can also be used when developing your site where you cannot use the real provider.
This is a Dutch payment provider that support a large amount of payment methods.
Go to your dashboard --> Developers --> API Keys. There you see an API key for either testing or for production. Both API keys are needed, so you can copy both.
This is another Dutch payment provider that support a large amount of payment methods.
Go to your dashboard --> Settings --> Website --> API Keys. By default you have a production account, but you can also create a developer account via https://testmerchant.multisafepay.com to obtain a test API key
For Paypal we use the REST client to give the best Paypal experience.
Client ID
and the Secret
to the Simple Store Paypal fields.We support Stripe checkout. See the official documentation https://stripe.com/docs/payments/checkout
If you'd like to use a different Gateway, please let me know, so I can add this for you (not free).
In order to setup the store you have to follow the following steps.
Create a channel (e.g. called Products) with at least the following fields
product_price
and assign the fieldtype Simple Store
to it.product_sale_price
and assign the fieldtype Simple Store
to it. *product_disable_shipping
and assign the fieldtype toggle
to it. *product_weight
and assign the fieldtype text
to it and set the Allowed content
for this field to Number
. ** Not required, but the template expect this field. However, you can omit this field in your own template
The tag for adding items to the cart
{exp:reinos_simple_store:add_to_cart}
Below are the Tag Parameters. Those parameters can be used in the tag described above
The return url, default to the current url
return_url=""
The SKU for a product. If omitted, it allows you to add multiple lines of the same products in to your cart.
sku=""
Set the entry_id of your product. This way we can reference the product to your entry.
entry_id=""
Set your product name
name=""
Set the price of the product.
price="0.00"
Set the sales price of the product. This will be the price for the product and you can show this in your cart where for example you strike-through the {price}.
sale_price="0.00"
Set the tax.
This can either low
or high
and load the value that has been set in your settings
If omit the param, it will fallback on the default tax rate set in the settings.
tax_rate="low"
Set the weight of the product. Mostly used when using the Shipping module
product_price="70" {!-- This set a weight of 70kg or 70lbs --}
When adding a product, your can clear the cart to have a cart with always one product.
clear_cart="no"
If you have no shipping cost, you can disable it for a product
disable_shipping="no"
Set the form class
form_class=""
Set the form id
form_id=""
Set custom fields
custom_fields:test="value"
custom_fields:or_an_other_value="value"
Set nice labels for your custom fields.
This also works for input elements.
custom_fields_label:test="Your nice label for field TEST"
<input name="qty" value="1"/><br>
<input name="custom_fields[yet_another]" value="custom value"/><br>
<input name="custom_fields[and_another]" value="other custom value"/><br>
Return the error when an invalid price is given.
{if error:invalid_price}
<p style="color:red;">You have entered an invalid price</p>
{/if}
Return the error when an invalid sales price is given.
{if error:invalid_sale_price}
<p style="color:red;">You have entered an invalid sales price</p>
{/if}
Below a small example how you can add a product to your cart
<div class="grid grid-cols-3 gap-3">
{exp:channel:entries channel="products"}
<div class="border p-5 rounded-md bg-gray-100 space-y-3">
<h2 class="font-medium text-lg">{title}</h2>
<h3>
<span {if product_sale_price > 0}class="line-through"{/if}>{product_price:formatted}</span>
{if product_sale_price > 0}<span>{product_sale_price:formatted}</span>{/if}
</h3>
<img class="w-full" src="http://via.placeholder.com/640x360" alt="Card image cap">
<p>Some quick example text to build on the card title and make up the bulk of the card's content.</p>
{exp:reinos_simple_store:add_to_cart
form_class="space-y-3"
entry_id="{entry_id}"
sku="{entry_id}"
name="{title}"
price="{product_price}"
sale_price="{product_sale_price}"
weight="10"
disable_shipping="{product_disable_shipping}"
return_url="simple_store/cart"
custom_fields:test="test custom field"
tax_rate="high"
{!-- set a label for your custom fields --}
custom_fields_label:test="Testing"
custom_fields_label:field_from_input="Field from Input"
}
{if error:invalid_price}
<p style="color:red;">You have entered an invalid price</p>
{/if}
{if error:invalid_sale_price}
<p style="color:red;">You have entered an invalid sale price</p>
{/if}
<div class="flex flex-col space-y-1">
<label class="font-medium">Custom Field</label>
<input class="input" type="text" name="custom_fields[field_from_input]" placeholder="custom field"/>
</div>
<div class="flex flex-col space-y-1">
<label class="font-medium" for="qty">Aantal</label>
<input class="input" type="number" id="qty" name="qty" value="1"/><br>
</div>
<input type="submit" class="button" value="Add to Cart"/>
{/exp:reinos_simple_store:add_to_cart}
</div>
{/exp:channel:entries}
</div>
The cart tag is responsible for creating a cart overview.
{exp:reinos_simple_store:cart}
Below are the Tag Parameters. Those parameters can be used in the tag described above
The return url, default to the current url
return_url=""
Set the form class
form_class=""
Set the form id
form_id=""
Set a prefix for your variables
prefix="cart:"
Mark the cart so it can be updated. We add a <form/>
tag in the html.
can_update="yes"
Below are the Tag Variables. Those Variables can be used in the tag described above
Check if there are no_items
{if cart:no_items}...{/if}
Loop over the items in the cart
{cart:items}
{cart:name}
{cart:price}
{cart:price:formatted}
{cart:old_price} // when dealing with a sale price, this is the original_price
{cart:old_price:formatted} // when dealing with a sale price, this is the original_price
{cart:price_plus_tax}
{cart:price_plus_tax:formatted}
{cart:old_price_plus_tax} // when dealing with a sale price, this is the original_price
{cart:old_price_plus_tax:formatted} // when dealing with a sale price, this is the original_price
{cart:qty}
{cart:sku}
{cart:entry_id}
{cart:disable_shipping}
{cart:price_total}
{cart:price_total:formatted}
{cart:old_price_total} // when dealing with a sale price, this is the original_price
{cart:old_price_total:formatted} // when dealing with a sale price, this is the original_price
{cart:price_total_plus_tax}
{cart:price_total_plus_tax:formatted}
{cart:old_price_total_plus_tax} // when dealing with a sale price, this is the original_price
{cart:old_price_total_plus_tax:formatted} // when dealing with a sale price, this is the original_price
{cart:custom_fields}<strong>{custom_fields:label}:</strong> {custom_fields:value}{/cart:custom_fields}
{cart:on_sale} // bool if the product is on sale
{/cart:items}
The total number of different products in the cart
{cart:total_items}
The total qty of all items in the cart
{cart:total_items_qty}
{cart:subtotal}
{cart:subtotal:formatted}
{cart:subtotal_plus_tax}
{cart:subtotal_plus_tax:formatted}
To use the coupon code, simply add the field <input type="text" name="coupon_code" value="{cart:coupon_code}"/>
. (see the examples for details)
{cart:discount}
{cart:discount:formatted}
{cart:total}
{cart:total:formatted}
{cart:total_plus_tax}
{cart:total_plus_tax:formatted}
{cart:tax}
{cart:tax:formatted}
{cart:shipping}
{cart:shipping:formatted}
{cart:shipping_plus_tax}
{cart:shipping_plus_tax:formatted}
Hold all entry_ids as a pipeline delimited string
{cart:entry_ids}
{exp:reinos_simple_store:cart prefix="cart:" can_update="yes" return_url="simple_store/cart"}
<h1 class="font-bold mt-5 text-2xl">Your cart</h1>
{if cart:no_items}
<p>No cart items</p>
{if:else}
<p class="mb-10 text-italic">({cart:total_items} products in cart and {cart:total_items_qty} items in cart)</p>
<table class="w-full table-auto mt-4 mb-4">
<thead class="border-b-2">
<tr>
<th align="left">Name</th>
<th align="left">Qty</th>
<th align="left">Price</th>
<th align="left">Subtotal</th>
<th />
</tr>
</thead>
<tbody>
{cart:items}
{exp:channel:entries entry_id="{cart:entry_id}" dynamic="no"}
<tr class="border-b">
<td>
<div class="py-3">
<a href="{page_uri}">{title}</a>
{if cart:sku != ''}<small>sku: {cart:sku}</small>{/if}
{cart:custom_fields}<br><strong>{custom_fields:label}:</strong> {custom_fields:value}{/cart:custom_fields}
</div>
</td>
<td><input class="border p-1 rounded" type="number" value="{cart:qty}" name="qty[{cart:id}]"></td>
<td>
{cart:price_plus_tax:formatted}
{if cart:on_sale} <strike>{cart:old_price_plus_tax:formatted}</strike>{/if}
</td>
<td>
{cart:price_total_plus_tax:formatted}
{if cart:on_sale} <strike>{cart:old_price_total_plus_tax:formatted}</strike>{/if}
</td>
<td align="right">
{exp:reinos_simple_store:delete_cart_item cart_item_id="{cart:id}" return_url="/simple_store"}
<a class="button" href="{remove_cart_item_url}">Remove</a>
{/exp:reinos_simple_store:delete_cart_item}
</td>
</tr>
{/exp:channel:entries}
{/cart:items}
</tbody>
</table>
<div class="w-1/2 flex flex-col ml-auto">
<h3 class="text-lg font-medium mt-5">Coupon code</h3>
<div class="flex gap-x-1 mb-5">
<input class="w-full border p-1 rounded" type="text" name="coupon_code" value="{cart:coupon_code}"/>
<input type="submit" name="update" value="Apply" class="button"/>
</div>
<table>
<tbody>
<tr>
<td align="right"><strong>Subtotal</strong></td>
<td align="right">{cart:subtotal_plus_tax:formatted}</td>
</tr>
{if cart:discount > 0}
<tr>
<td align="right"><strong>Discount</strong></td>
<td align="right">{cart:discount:formatted}</td>
</tr>
{/if}
{if cart:tax > 0}
<tr>
<td align="right"><strong>TAX</strong></td>
<td align="right">{cart:tax:formatted}</td>
</tr>
{/if}
{if cart:shipping_plus_tax > 0}
<tr>
<td align="right"><strong>Shipping</strong></td>
<td align="right">{cart:shipping_plus_tax:formatted}</td>
</tr>
{/if}
<tr>
<td align="right"><strong>Total excl</strong></td>
<td align="right">{cart:total:formatted}</td>
</tr>
<tr>
<td align="right"><strong>Total</strong></td>
<td align="right">{cart:total_plus_tax:formatted}</td>
</tr>
</tbody>
</table>
</div>
<input type="submit" name="update" value="Update" class="button"/>
<input type="submit" name="clear" value="Clear cart" class="button"/>
<a class="button" href="/index.php/simple_store/checkout">Checkout</a>
{/if}
{/exp:reinos_simple_store:cart}
With the remove Cart Item Tag your are able to remove a single item from the cart
{exp:reinos_simple_store:delete_cart_item}
Below are the Tag Parameters. Those parameters can be used in the tag described above
The unique cart item ID
cart_item_id=""
Below are the Tag Variables. Those Variables can be used in the tag described above
The actual url that can be used to delete the cart item
{exp:reinos_simple_store:cart prefix="cart:" can_update="yes"}
{cart:items}
{exp:reinos_simple_store:delete_cart_item cart_item_id="{cart:id}"}
<a href="{remove_cart_item_url}">Remove</a>
{/exp:reinos_simple_store:delete_cart_item}
{/cart:items}
{/exp:reinos_simple_store:cart}
The Checkout tag. This is the tag that is responsible for the whole checkout process.
The moulde is shipped with a ready-to-go template, however, you can still change everything to your needs.
{exp:reinos_simple_store:checkout}
Below are the Tag Parameters. Those parameters can be used in the tag described above
Set the customer phone as required.
customer_phone_required="false"
Set the customer company name as required.
customer_company_required="false"
The return url, default to the current url
return_url=""
Set the form class
form_class=""
Set the form id
form_id=""
Control wether the billing address fields are required or not.
enable_billing_address="yes" (default)
Control wether the shipping address fields are required or not.
enable_shipping_address="yes" (default)
Below are the Tag Variables. Those Variables can be used in the tag described above
Global errors
{global_errors}
{global_errors:error}
{/global_errors}
But we also have them as separated error variables
{global_error:no_items_to_checkout}
{global_error:gateway_not_exists}
{global_error:no_gateway_selected}
{global_error:transaction_error}
{global_error:shipping_type_missing} // coming from the shipping module
Check for global errors
{if has_global_errors}
{global_error}
{/if}
Check for field errors
{if has_field_errors}
...
{/if}
Error, if there is one, per field
{customer_first_name:error}
{customer_last_name:error}
{customer_email:error}
{customer_phone:error}
{customer_company:error}
{billing_address:error}
{billing_address2:error}
{billing_zip:error}
{billing_city:error}
{billing_country:error}
{shipping_address:error}
{shipping_address2:error}
{shipping_zip:error}
{shipping_city:error}
{shipping_country:error}
{!-- for example --}
{if customer_company:error != ''}<span class="text-red">{customer_company:error}</span>{/if}
Values, if there is something, per field
{customer_first_name:value}
{customer_last_name:value}
{customer_email:value}
{customer_phone:value}
{customer_company:value}
{billing_address:value}
{billing_address2:value}
{billing_zip:value}
{billing_city:value}
{billing_country:value}
{shipping_address:value}
{shipping_address2:value}
{shipping_zip:value}
{shipping_city:value}
{shipping_country:value}
Add extra fields to your checkout process.
You need to define the field names in extra_fields
and in the body of {exp:reinos_simple_store:checkout} you can add the actual HTML
{exp:reinos_simple_store:checkout
extra_fields="agree_with_terms|name|email"
}
<input name="name" placeholder="extra[name]" />
<input name="email" type="extra[email]" placeholder="email" />
<input type="checkbox" name="extra[agree_with_terms]" value="yes"/> Agree with the terms
{/exp:reinos_simple_store:checkout}
The example templates are using the stepping technique. Each step Personal and billing and shipping adress
, Shipping
and payment
are a step in the order process.
We enable this by adding the name name="step-1"
name="step-2"
or name="step-3"
to the next button as you can seen in the example template
<button name="step-2" type="submit" class="button">Next step</button>
This tag will convert your ISO-2 lang code to a readable one.
{exp:reinos_simple_store:country}DE{/exp:reinos_simple_store:country}
Get a select HTML list of all your countries, and also checking the settings for default and allowed countries
{exp:reinos_simple_store:country_list type="billing" class="form-control" value=""}
Below are the Tag Parameters. Those parameters can be used in the tag described above
Set the CLASS for the select
class=""
Set the ID for the select
id=""
Set to billing
or shipping
type="billing"
set the default value
value=""
Format the price to the correct decimals and currency symbol
{exp:reinos_simple_store:format}9.95{/exp:reinos_simple_store:format}
Below the global variables that can be used anywhere.
The total number of different products in the cart
{reinos_simple_store_total_products_in_cart}
The total qty of all items in the cart
{reinos_simple_store_total_items_in_cart}
Check if the shipping module is installed
{reinos_simple_store_shipping_module_installed}
Check if the Tax module is installed
{reinos_simple_store_tax_module_installed}
Return the ajax url for updating the checkout details. See the example template for the usage.
{reinos_simple_store_update_checkout_details_ajax_url}
The order tag. It comes in 2 flavours, one for getting a single order {exp:reinos_simple_store:order}
and one for getting a list of orders {exp:reinos_simple_store:orders}
.
Both tags have the same parameters and variables.
{exp:reinos_simple_store:order}
{exp:reinos_simple_store:orders}
Below are the Tag Parameters. Those parameters can be used in the tag described above
Prefix the variables
prefix="order:"
Set a order_id for the order you want to fetch
order_id=""
Set a hash for the order you want to fetch
hash=""
Select all orders for the given member_id
member_id=""
Filter based on the status.
Possible options: open
paid
pending
failed
expired
cancelled
refunded
paid_chargeback
status="open"
Below are the Tag Variables. Those Variables can be used in the tag described above
Check if there is any result
{if no_results}...{/if}
Check if we still cancan pay the order.
Some providers support to pay after the order has been created but somehow is now paid and still open
{if order:can_complete }
Your order is not yet payed, finish your order by clicking <a href="{order:payment_url}">here</a>.
{/if}
The payment url, used when the order is open and should be paid
{if order:can_complete }
Your order is not yet payed, finish your order by clicking <a href="{order:payment_url}">here</a>.
{/if}
{order:order_id}
{order:time format="%d %M %Y"}
{order:transaction_id}
{order:status}
{order:customer_company}
{order:status}
{order:customer_last_name}
{order:customer_email}
{order:customer_phone}
{order:billing_address}
{order:billing_address2}
{order:billing_zip}
{order:billing_city}
The ISO-2 lang code. Convert it with {exp:reinos_simple_store:country}
to get a readable name
{exp:reinos_mollie:country}{order:billing_country}{/exp:reinos_mollie:country}
{order:shipping_address}
{order:shipping_address2}
{order:shipping_zip}
{order:shipping_city}
The ISO-2 lang code. Convert it with {exp:reinos_simple_store:country}
to get a readable name
{exp:reinos_mollie:country}{order:shipping_country}{/exp:reinos_mollie:country}
Loop over the items in the order
{order:items}
{order:name}
{order:price}
{order:price:formatted}
{order:old_price} // when dealing with a sale price, this is the original_price
{order:old_price:formatted} // when dealing with a sale price, this is the original_price
{order:price_plus_tax}
{order:price_plus_tax:formatted}
{order:old_price_plus_tax} // when dealing with a sale price, this is the original_price
{order:old_price_plus_tax:formatted} // when dealing with a sale price, this is the original_price
{order:qty}
{order:sku}
{order:entry_id}
{order:disable_shipping}
{order:price_total}
{order:price_total:formatted}
{order:old_price_total} // when dealing with a sale price, this is the original_price
{order:old_price_total:formatted} // when dealing with a sale price, this is the original_price
{order:price_total_plus_tax}
{order:price_total_plus_tax:formatted}
{order:old_price_total_plus_tax} // when dealing with a sale price, this is the original_price
{order:old_price_total_plus_tax:formatted} // when dealing with a sale price, this is the original_price
{order:items:custom_fields}<strong>{custom_fields:label}:</strong> {custom_fields:value}{/order:items:custom_fields}
{order:items:on_sale} // bool if the product is on sale
{/order:items}
{order:subtotal}
{order:subtotal:formatted}
{order:subtotal_plus_tax}
{order:subtotal_plus_tax:formatted}
{order:discount}
{order:discount:formatted}
{order:total}
{order:total:formatted}
{order:total_plus_tax}
{order:total_plus_tax:formatted}
{order:tax}
{order:tax:formatted}
{order:shipping}
{order:shipping:formatted}
{order:shipping_plus_tax}
{order:shipping_plus_tax:formatted}
Hold all entry_ids as a pipeline delimited string
{order:entry_ids}
Get the extra fields that are used in the checkout tag
{order:extra_fields}
{extra_field:name}: {extra_field:value}
{/order:extra_fields}
The price fieldtype is a special fieldtype that can hold currency values.
By default the fieldtype field output a numeric value that can be used for the {exp:reinos_mollie:add_to_cart product_price=""}
parameter.
Below are the Fieldtype Modifiers. Those Variables can be used in the tag described above
Output the price without TAX and formatted
{your-field-name:no_tax}
Output the price with TAX and formatted
{your-field-name:plus_tax} //fall back on the default tax value
{your-field-name:plus_tax tax="low"}
{your-field-name:plus_tax tax="high"}
{your-field-name:plus_tax tax="22"} //custom numeric value
Output the price with TAX as a numeric value
{your-field-name:plus_tax_numeric} //fall back on the default tax value
{your-field-name:plus_tax_numeric tax="low"}
{your-field-name:plus_tax_numeric tax="high"}
{your-field-name:plus_tax_numeric tax="22"} //custom numeric value
Output the price without TAX as a numeric value
{your-field-name:no_tax_numeric}
Output the price, as given as a numeric value
{your-field-name:numeric} //fall back on the default tax value
{your-field-name:numeric tax="low"}
{your-field-name:numeric tax="high"}
{your-field-name:numeric tax="22"} //custom numeric value
Output the price, as given formatted
{your-field-name:formatted} //fall back on the default tax value
{your-field-name:formatted tax="low"}
{your-field-name:formatted tax="high"}
{your-field-name:formatted tax="22"} //custom numeric value
Get the available shipping methods
(Added in v3.0.0)
Due to the integration of the shipping module we are also making the shipping methods available via a template tag.
Without the shipping module, there is always one option.
{exp:reinos_simple_store:shipping_methods}...{/exp:reinos_simple_store:shipping_methods}
Below are the Tag Parameters. Those parameters can be used in the tag described above
class=":shipping_methods"
{exp:reinos_simple_store:shipping_methods}
{shipping_methods:name}
{shipping_methods:title}
{shipping_methods:selected}
{shipping_methods:price}
{shipping_methods:price:formatted}
{shipping_methods:price_plus_tax}
{shipping_methods:price_plus_tax:formatted}
{/exp:reinos_simple_store:shipping_methods}
You can use it as following in your checkout tag, just as the example template
{exp:reinos_simple_store:shipping_methods}
<div class="border rounded p-4 flex items-center gap-x-4">
<input {if shipping_methods:selected}checked{/if} id="{shipping_methods:name}" type="radio" name='shipping_type' value='{shipping_methods:name}' />
<label for="{shipping_methods:name}">{shipping_methods:title}</label>
</div>
{/exp:reinos_simple_store:shipping_methods}
As of version 2.x.x it is possible to sync your Order and Order Items to your regular Entry Channels. By doing so, you have the freedom at your proposal via regular Entry tags. But also you can add extra fields if you'd like.
After you configure the settings, syncing is done in the background. Orders will be synced to the Entries and if you changed an order that sits in an entry, it will also be synced back to the module so the module and the entries are in sync.
Note: If you upgraded from an older version before 2.x.x. You have to manually sync the entries. Please go to you Order overview and click "Sync Order Status". On this page you can sync your entries.
Remember, syncing a lot of order can take a while.
First you need to create your channels and your fields. For the Order Channel you can sync the following fields:
As of v3.0.0 we added a folder that can be zipped and imported into EE. Simply zip the folder ee_reinos_store/system/user/addons/reinos_store/custom_channels/order_items/ChannelSet
--> <give-it-a-name>.zip
and import it into ExpressionEngine.
The following fields should be created for an Order Channel
text input
text input
text input
text input
text input
text input
text input
text input
text input
text input
text input
text input
text input
text input
text input
simple store - price
simple store - price
simple store - price
simple store - price
simple store - price
simple store - price
simple store - price
simple store - price
text input
text input
text input
simple store - custom fields
- render the custom fieldssimple store - order fields
- render the Items of an OrderThe following fields should be created for the Order Items Channel
text input
text input
(the entry_id of the product)text input
text input
simple store - price
simple store - price
simple store - price
simple store - price
simple store - price
simple store - price
simple store - price
simple store - price
simple store - custom fields
- render the custom fieldsThe following fields needs to configured in order to sync your Orders to Entries.
Field | Description |
---|---|
Channel | Choose the channel where we should save the Order to. |
Order Title Prefix | Set a prefix for the title. By default we will use #order-{orderId} |
URL Title Prefix | Set prefix for your URL Title |
Order Status | Select the Status from your Channel that we should map |
Order Fields | Select a Field from your Channel that we should map |
Just like the orders, Order Items needs to be configured in the same way as Orders.
Field | Description |
---|---|
Channel | Choose the channel where we should save the Order Item to. |
Order Title Prefix | Set a prefix for the title |
Order Status | Select the Status from your Channel that we should map |
Order Fields | Select a Field from your Channel that we should map |
The custom_field fieldtype is a special fieldtype that can read out the custom fields of a synced item. It will render a table in the Channel Entry view and has a tagpair to render the custom_fields in your HTML.
You should use
{order_custom_fields}
{custom_fields:label}
{custom_fields:value}
{/order_custom_fields}
The order_items fieldtype is a special fieldtype that can read out the Order Items of a synced item. It will render a table in the Channel Entry view and has a tagpair to render the order_items in your HTML.
You should use
{order_items_field}
{order_item:entry_id}
{/order_items_field}
{reinos_simple_store_update_checkout_details_ajax_url}
{reinos_simple_store_shipping_module_installed}
{reinos_simple_store_tax_module_installed}
was showing in the price if you set the currency behind the pricetax=""
to tax_rate="high|low"
for the {reinos_simple_store:add_to_cart}
tag{exp:reinos_simple_store:orders member_id='1'}
to list orders for a specific user{exp:reinos_simple_store:delete_cart_item cart_item_id=""}
to remove a single product from the cartstatus="open"
param to the {exp:reinos_simple_store:order}
tagsale_price
custom_fields:test="test value"
) can be set via custom_fields_label:test="Testing"
. Input fields are supported as welltotal_items_qty
--> return the total qty of all items in the cart{exp:reinos_simple_store:store_address}
to print the global store address fieldcustomer_phone_required
customer_company_required
to mark the Phone and Company name as required if needed{billing_country_full_name}
and {billing_country_full_name}
to output the full name for the country{cart:total_items}
variable:formatted
price values