1 | # Edit Product | 1 | # Edit Product
|
---|
2 | | 2 |
|
---|
3 | ## General | 3 | ## Code
|
---|
4 | | 4 |
|
---|
5 | ### Code | 5 | Code is your internal reference id. It could be a product id in another
|
---|
6 | | 6 | system. You decide. This is an alternative to SKU and UPC.
|
---|
7 | Code is your internal reference id. It could be a product id in another | 7 |
|
---|
8 | system. You decide. This is an alternative to SKU and UPC. | 8 | ### Manufacturer
|
---|
9 | | 9 |
|
---|
10 | ## Information | 10 | Can be used for vendor or brand.
|
---|
11 | | 11 |
|
---|
12 | ### Manufacturer | 12 | ## Supplier
|
---|
13 | | 13 |
|
---|
14 | Can be used for vendor or brand. | 14 | Can be used for the company supplying you with the product. Convenient
|
---|
15 | | 15 | for reports or drop shipping solutions.
|
---|
16 | ### Supplier | 16 |
|
---|
17 | | 17 | ## Keywords
|
---|
18 | Can be used for the company supplying you with the product. Convenient | 18 |
|
---|
19 | for reports or drop shipping solutions. | 19 | Keywords are used internally, among other things, to display similar
|
---|
20 | | 20 | products. Keywords can be comma separated.
|
---|
21 | ### Keywords | 21 |
|
---|
22 | | 22 | ## Head Title
|
---|
23 | Keywords are used internally, among other things, to display similar | 23 |
|
---|
24 | products. Keywords can be comma separated. | 24 | The head title is the title of the page displayed in Google search
|
---|
25 | | 25 | results. If blank it will display the product name.
|
---|
26 | ### Head Title | 26 |
|
---|
27 | | 27 | ## META description
|
---|
28 | The head title is the title of the page displayed in Google search | 28 |
|
---|
29 | results. If blank it will display the product name. | 29 | The meta description is the description of the page displayed in Google
|
---|
30 | | 30 | search results. If blank it will display the product short description.
|
---|
31 | ### META description | 31 |
|
---|
32 | | 32 | ## SKU
|
---|
33 | The meta description is the description of the page displayed in Google | 33 |
|
---|
34 | search results. If blank it will display the product short description. | 34 | Stock Keeping Unit is the item id that refers to your product in stock.
|
---|
35 | | 35 | SKU is also available for options (See options stock).
|
---|
36 | ## Data | 36 |
|
---|
37 | | 37 | ## GTIN (UPC/EAN)
|
---|
38 | ### SKU | 38 |
|
---|
39 | | 39 | Universal Product Code can be used for your vendor's article number.
|
---|
40 | Stock Keeping Unit is the item id that refers to your product in stock. | 40 | The term UPC is more common United States, Canada, the United Kingdom,
|
---|
41 | SKU is also available for options (See options stock). | 41 | Australia, and New Zealand but can also be used for European Article
|
---|
42 | | 42 | Number (EAN).
|
---|
43 | ### GTIN (UPC/EAN/) | 43 |
|
---|
44 | | 44 | External Link: [GTIN](https://en.wikipedia.org/wiki/Global_Trade_Item_Number)
|
---|
45 | Universal Product Code can be used for your vendor's article number. | 45 |
|
---|
46 | The term UPC is more common United States, Canada, the United Kingdom, | 46 | ## TARIC
|
---|
47 | Australia, and New Zealand but can also be used for European Article | 47 |
|
---|
48 | Number (EAN). | 48 | The TARIC code (Integrated Tariff of the European Communities) can be
|
---|
49 | | 49 | used to specify product type when it comes to shipping and toll.
|
---|
50 | External Link: | 50 |
|
---|
51 | [GTIN](https://en.wikipedia.org/wiki/Global_Trade_Item_Number) | 51 | External Link: [TARIC](http://en.wikipedia.org/wiki/Taric_code)
|
---|
52 | | 52 | External Link: [European Comission](http://ec.europa.eu/taxation_customs/dds2/taric/taric_consultation.jsp?Lang=en&Screen=0&Expand=true)
|
---|
53 | ### TARIC | 53 |
|
---|
54 | | 54 | ## Options
|
---|
55 | The TARIC code (Integrated Tariff of the European Communities) can be | 55 |
|
---|
56 | used to specify product type when it comes to shipping and toll. | 56 | Options lets your customers customize their product before adding it to the shopping cart.
|
---|
57 | | 57 |
|
---|
58 | External Link: | 58 | ## Stock Options
|
---|
59 | [TARIC](http://en.wikipedia.org/wiki/Taric_code) | 59 |
|
---|
60 | | 60 | If any combination of product options are bound to a physical stock
|
---|
61 | External Link: [European Comission](http://ec.europa.eu/taxation_customs/dds2/taric/taric_consultation.jsp?Lang=en&Screen=0&Expand=true) | 61 | product. Add the combination to the options stock to have it quantity
|
---|
62 | | 62 | tracked.
|
---|
63 | ## Options | 63 |
|
---|
64 | | 64 | If any SKU, weight or dimensions are not given it will use the product
|
---|
65 | Options are selectable product alternatives that customers can choose | 65 | default values.
|
---|
66 | between on the product page. | 66 |
|
---|
67 | | 67 | ## Entity Object
|
---|
68 | ## Options Stock | 68 |
|
---|
69 | | 69 | ```php
|
---|
70 | If any combination of product options are bound to a physical stock | 70 | $product = new ent_product();
|
---|
71 | product. Add the combination to the options stock to have it quantity | 71 | $product->data['name'] = ['en' => 'Yellow Duck'];
|
---|
72 | tracked. | 72 | $product->data['prices'] = ['USD' => 9.99];
|
---|
73 | | 73 | $product->save();
|
---|
74 | If any SKU, weight or dimensions are not given it will use the product | 74 | ``` |
---|
75 | default values. | | |
---|