PAGES
LIVE
Shop common situations
While setting your shop page, you may come upon one of the following common issues.
I need option field (size, color or other) for my catalog items
Some sellers need to set one or more option field for their products. Let's say you sell clothes and have defined clothes items in your catalog - skirts, dresses, pullovers, etc. If you want to let the buyer choose between different colors or sizes, you will need an option field.
I need to define different prices for a single item in my catalog, depending on some characteristics (size, color or other)
This can work along with the above listed option field. Shop uses standard Price field as basic price. You will use option field to define price offsets to increase/decrease the basic price.
Sliver;Black[+20 EUR];Green
Sliver;Black[-20 EUR];Green
OR
Sliver;Black[+20];Green
Sliver;Black[-20];Green
To set the price offset invisible for users, put equal sign just before the left bracket. Example: Black =[+20 EUR].
How does EZG handles VAT?
EZGenerator Shop is shop with VAT included. This means that when you define your products, you set the prices with VAT included.
However, if you want to show how much is the VAT, EZGenerator can calculate this for you.
I need to set each category in my shop as a menu item
Some sellers prefer to have each category from their shop to be accessed directly from the menu.
Example for relative path:
../folder_name/shop_name.php?cat=Y , where shop_name is the filename of your shop page and Y is the number of the shop category.
You can check the shop page number on the status line at the bottom. Shop category numbers follow the integer numbers - 1, 2, 3, etc. The folder_name is documents by default. In case you have moved your shop page to different folder, make sure to set the proper folder name in the path.
I will not use PayPal or any other payment processor. Instead, I need to receive the orders submitted as email.
Some sellers do not use any of the payment processors supported by EZGenerator shop page. What they need is to receive the orders as emails. If this is the case you will have to set your shop to use the BANKWIRE option only.
I need to replace my Buy button with an image
I have URL field in my catalog and I want to insert link to it in my Shop Categories page
I have URL field in my catalog and I want to insert link to it in my Shop Categories page
I want to insert random products from my Shop on Home page
%P_Name%
%short description%
%SCALE(%P_ImageFull%,50,50)%
<script>
document.write("<script language='Javascript' type='text/javascript' src='../<shop_folder>/<myshop>.php?action=random&count=X&file=random.html'></scr" + "ipt>");
</script>
Where <shop_folder> is the folder where your shop page is stored, <myshop> is the name of your shop page, X sets the number of random items to be displayed.
In case your home page is in root, you will need to append &root=%root% to the javascript call.
To set your random products horizontally, append parameter &dir=h to the javascript call (dir means direction).
To show only one specific product, set count=1 and append &iid=Y (where Y is the product ID).
In case you want to insert random products in editable area, use src='%ROOT%<shop_folder>/<myshop>.php?action=random&count=X&file=random.html'>.