Version Description
(2019-11-12) = * Yandex CSV template added
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 3.1.49 |
Comparing to | |
See all releases |
Code changes from version 3.1.48 to 3.1.49
- README.txt +4 -1
- admin/js/woo-feed-admin.js +3 -2
- admin/partials/templates/yandex_csv_add-feed.php +444 -0
- includes/classes/class-woo-feed-default-attributes.php +1018 -906
- woo-feed.php +4 -3
README.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://webappick.com
|
|
4 |
Tags:woocommerce,google product feed,facebook product feed,woocommerce product feed,woocommerce,
|
5 |
Requires at least: 3.6
|
6 |
Tested Up To: 5.3
|
7 |
-
Stable tag: 3.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -304,6 +304,9 @@ Using pro version:
|
|
304 |
|
305 |
== Changelog ==
|
306 |
|
|
|
|
|
|
|
307 |
= 3.1.48 (2019-11-09) =
|
308 |
* Fixed: Woocommerce version compare issue
|
309 |
* Fixed: Removed trim for prefix and suffix field
|
4 |
Tags:woocommerce,google product feed,facebook product feed,woocommerce product feed,woocommerce,
|
5 |
Requires at least: 3.6
|
6 |
Tested Up To: 5.3
|
7 |
+
Stable tag: 3.1.49
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
304 |
|
305 |
== Changelog ==
|
306 |
|
307 |
+
= 3.1.49 (2019-11-12) =
|
308 |
+
* Yandex CSV template added
|
309 |
+
|
310 |
= 3.1.48 (2019-11-09) =
|
311 |
* Fixed: Woocommerce version compare issue
|
312 |
* Fixed: Removed trim for prefix and suffix field
|
admin/js/woo-feed-admin.js
CHANGED
@@ -288,8 +288,9 @@
|
|
288 |
event.preventDefault();
|
289 |
// noinspection ES6ConvertVarToLetConst,SpellCheckingInspection
|
290 |
var merchant = $(this).val(), feedType = $("#feedType"), feedForm = $("#providerPage"),
|
291 |
-
|
292 |
-
|
|
|
293 |
feedType.val("csv");
|
294 |
feedType.find('option').not('[value="csv"]').disabled( true );
|
295 |
feedType.find('option').not('[value="csv"]').disabled( true );
|
288 |
event.preventDefault();
|
289 |
// noinspection ES6ConvertVarToLetConst,SpellCheckingInspection
|
290 |
var merchant = $(this).val(), feedType = $("#feedType"), feedForm = $("#providerPage"),
|
291 |
+
merchants_csv_template = ["yandex_csv","pinterest", "fruugo", "fruugo.au", "vergelijk_comparer", "spartoo.fi", "avantlink"];
|
292 |
+
console.log(merchant);
|
293 |
+
if( helper.in_array( merchant, merchants_csv_template ) ) {
|
294 |
feedType.val("csv");
|
295 |
feedType.find('option').not('[value="csv"]').disabled( true );
|
296 |
feedType.find('option').not('[value="csv"]').disabled( true );
|
admin/partials/templates/yandex_csv_add-feed.php
ADDED
@@ -0,0 +1,444 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<ul class="wf_tabs">
|
2 |
+
<li>
|
3 |
+
<input type="radio" name="wf_tabs" id="tab1" checked/>
|
4 |
+
<label class="wf-tab-name" for="tab1"><?php _e('Feed Config', 'woo-feed'); ?></label>
|
5 |
+
|
6 |
+
<div id="wf-tab-content1" class="wf-tab-content">
|
7 |
+
<table class="table tree widefat fixed sorted_table mtable" width="100%" id="table-1">
|
8 |
+
<thead>
|
9 |
+
<tr>
|
10 |
+
<th></th>
|
11 |
+
<th><?php echo ucfirst($provider); ?> <?php _e('Attributes', 'woo-feed'); ?></th>
|
12 |
+
<th><?php _e('Prefix', 'woo-feed'); ?></th>
|
13 |
+
<th><?php _e('Type', 'woo-feed'); ?></th>
|
14 |
+
<th><?php _e('Value', 'woo-feed'); ?></th>
|
15 |
+
<th><?php _e('Suffix', 'woo-feed'); ?></th>
|
16 |
+
<th><?php _e('Output Type', 'woo-feed'); ?></th>
|
17 |
+
<th><?php _e('Output Limit', 'woo-feed'); ?></th>
|
18 |
+
<th></th>
|
19 |
+
</tr>
|
20 |
+
</thead>
|
21 |
+
<tbody>
|
22 |
+
<tr>
|
23 |
+
<td>
|
24 |
+
<i class="wf_sortedtable dashicons dashicons-menu"></i>
|
25 |
+
</td>
|
26 |
+
<td>
|
27 |
+
<input type="text" name="mattributes[]" autocomplete="off" required
|
28 |
+
class="wf_validate_attr wf_mattributes" value="id"/>
|
29 |
+
</td>
|
30 |
+
<td>
|
31 |
+
<input type="text" name="prefix[]" autocomplete="off" class="wf_ps"/>
|
32 |
+
</td>
|
33 |
+
<td>
|
34 |
+
<select name="type[]" class="attr_type wfnoempty">
|
35 |
+
<option value="attribute"><?php _e('Attribute', 'woo-feed'); ?></option>
|
36 |
+
<option value="pattern"><?php _e('Pattern', 'woo-feed'); ?></option>
|
37 |
+
</select>
|
38 |
+
</td>
|
39 |
+
<td>
|
40 |
+
<select name="attributes[]"
|
41 |
+
class="wf_validate_attr wf_attr wf_attributes">
|
42 |
+
<?php echo $product->attributeDropdown('id'); ?>
|
43 |
+
</select>
|
44 |
+
<input type="text" name="default[]" autocomplete="off" class="wf_default wf_attributes"
|
45 |
+
style=" display: none;"/>
|
46 |
+
</td>
|
47 |
+
<td>
|
48 |
+
<input type="text" name="suffix[]" autocomplete="off" class="wf_ps"/>
|
49 |
+
</td>
|
50 |
+
<td>
|
51 |
+
<select name="output_type[][]" class="outputType wfnoempty">
|
52 |
+
<option value="1">Default</option>
|
53 |
+
<option value="2">Strip Tags</option>
|
54 |
+
<option value="3">UTF-8 Encode</option>
|
55 |
+
<option value="4">htmlentities</option>
|
56 |
+
<option value="5">Integer</option>
|
57 |
+
<option value="6">Price</option>
|
58 |
+
<option value="7">Remove Space</option><option value="10">Remove ShortCodes</option><option value="9">Remove Special Character</option>
|
59 |
+
<option value="8">CDATA</option>
|
60 |
+
</select>
|
61 |
+
<i class="dashicons dashicons-editor-expand expandType"></i>
|
62 |
+
<i style="display: none;" class="dashicons dashicons-editor-contract contractType"></i>
|
63 |
+
</td>
|
64 |
+
<td>
|
65 |
+
<input type="text" name="limit[]" class="wf_ps"/>
|
66 |
+
</td>
|
67 |
+
<td>
|
68 |
+
<i class="delRow dashicons dashicons-trash"></i>
|
69 |
+
</td>
|
70 |
+
</tr>
|
71 |
+
<tr>
|
72 |
+
<td>
|
73 |
+
<i class="wf_sortedtable dashicons dashicons-menu"></i>
|
74 |
+
</td>
|
75 |
+
<td>
|
76 |
+
<input type="text" name="mattributes[]" autocomplete="off" required
|
77 |
+
class="wf_validate_attr wf_mattributes" value="available"/>
|
78 |
+
</td>
|
79 |
+
<td>
|
80 |
+
<input type="text" name="prefix[]" autocomplete="off" class="wf_ps"/>
|
81 |
+
</td>
|
82 |
+
<td>
|
83 |
+
<select name="type[]" class="attr_type wfnoempty">
|
84 |
+
<option value="attribute"><?php _e('Attribute', 'woo-feed'); ?></option>
|
85 |
+
<option value="pattern"><?php _e('Pattern', 'woo-feed'); ?></option>
|
86 |
+
</select>
|
87 |
+
</td>
|
88 |
+
<td>
|
89 |
+
<select name="attributes[]"
|
90 |
+
class="wf_validate_attr wf_attr wf_attributes">
|
91 |
+
<?php echo $product->attributeDropdown('availability'); ?>
|
92 |
+
</select>
|
93 |
+
<input type="text" name="default[]" autocomplete="off" class="wf_default wf_attributes"
|
94 |
+
style=" display: none;"/>
|
95 |
+
</td>
|
96 |
+
<td>
|
97 |
+
<input type="text" name="suffix[]" autocomplete="off" class="wf_ps"/>
|
98 |
+
</td>
|
99 |
+
<td>
|
100 |
+
<select name="output_type[][]" class="outputType wfnoempty">
|
101 |
+
<option value="1">Default</option>
|
102 |
+
<option value="2">Strip Tags</option>
|
103 |
+
<option value="3">UTF-8 Encode</option>
|
104 |
+
<option value="4">htmlentities</option>
|
105 |
+
<option value="5">Integer</option>
|
106 |
+
<option value="6">Price</option>
|
107 |
+
<option value="7">Remove Space</option><option value="10">Remove ShortCodes</option><option value="9">Remove Special Character</option>
|
108 |
+
<option value="8">CDATA</option>
|
109 |
+
</select>
|
110 |
+
<i class="dashicons dashicons-editor-expand expandType"></i>
|
111 |
+
<i style="display: none;" class="dashicons dashicons-editor-contract contractType"></i>
|
112 |
+
</td>
|
113 |
+
<td>
|
114 |
+
<input type="text" name="limit[]" class="wf_ps"/>
|
115 |
+
</td>
|
116 |
+
<td>
|
117 |
+
<i class="delRow dashicons dashicons-trash"></i>
|
118 |
+
</td>
|
119 |
+
</tr>
|
120 |
+
<tr>
|
121 |
+
<td>
|
122 |
+
<i class="wf_sortedtable dashicons dashicons-menu"></i>
|
123 |
+
</td>
|
124 |
+
<td>
|
125 |
+
<input type="text" name="mattributes[]" autocomplete="off" required
|
126 |
+
class="wf_validate_attr wf_mattributes" value="price"/>
|
127 |
+
</td>
|
128 |
+
<td>
|
129 |
+
<input type="text" name="prefix[]" autocomplete="off" class="wf_ps"/>
|
130 |
+
</td>
|
131 |
+
<td>
|
132 |
+
<select name="type[]" class="attr_type wfnoempty">
|
133 |
+
<option value="attribute"><?php _e('Attribute', 'woo-feed'); ?></option>
|
134 |
+
<option value="pattern"><?php _e('Pattern', 'woo-feed'); ?></option>
|
135 |
+
</select>
|
136 |
+
</td>
|
137 |
+
<td>
|
138 |
+
<select name="attributes[]"
|
139 |
+
class="wf_validate_attr wf_attr wf_attributes">
|
140 |
+
<?php echo $product->attributeDropdown('price'); ?>
|
141 |
+
</select>
|
142 |
+
<input type="text" name="default[]" autocomplete="off" class="wf_default wf_attributes"
|
143 |
+
style=" display: none;"/>
|
144 |
+
</td>
|
145 |
+
<td>
|
146 |
+
<input type="text" name="suffix[]" autocomplete="off" class="wf_ps"/>
|
147 |
+
</td>
|
148 |
+
<td>
|
149 |
+
<select name="output_type[][]" class="outputType wfnoempty">
|
150 |
+
<option value="1">Default</option>
|
151 |
+
<option value="2">Strip Tags</option>
|
152 |
+
<option value="3">UTF-8 Encode</option>
|
153 |
+
<option value="4">htmlentities</option>
|
154 |
+
<option value="5">Integer</option>
|
155 |
+
<option value="6">Price</option>
|
156 |
+
<option value="7">Remove Space</option><option value="10">Remove ShortCodes</option><option value="9">Remove Special Character</option>
|
157 |
+
<option value="8">CDATA</option>
|
158 |
+
</select>
|
159 |
+
<i class="dashicons dashicons-editor-expand expandType"></i>
|
160 |
+
<i style="display: none;" class="dashicons dashicons-editor-contract contractType"></i>
|
161 |
+
</td>
|
162 |
+
<td>
|
163 |
+
<input type="text" name="limit[]" class="wf_ps"/>
|
164 |
+
</td>
|
165 |
+
<td>
|
166 |
+
<i class="delRow dashicons dashicons-trash"></i>
|
167 |
+
</td>
|
168 |
+
</tr>
|
169 |
+
<tr>
|
170 |
+
<td>
|
171 |
+
<i class="wf_sortedtable dashicons dashicons-menu"></i>
|
172 |
+
</td>
|
173 |
+
<td>
|
174 |
+
<input type="text" name="mattributes[]" autocomplete="off" required
|
175 |
+
class="wf_validate_attr wf_mattributes" value="currencyId"/>
|
176 |
+
</td>
|
177 |
+
<td>
|
178 |
+
<input type="text" name="prefix[]" autocomplete="off" class="wf_ps"/>
|
179 |
+
</td>
|
180 |
+
<td>
|
181 |
+
<select name="type[]" class="attr_type wfnoempty">
|
182 |
+
<option value="attribute"><?php _e('Attribute', 'woo-feed'); ?></option>
|
183 |
+
<option value="pattern" selected><?php _e('Pattern', 'woo-feed'); ?></option>
|
184 |
+
</select>
|
185 |
+
</td>
|
186 |
+
<td>
|
187 |
+
<select name="attributes[]" style=" display: none;
|
188 |
+
class="wf_validate_attr wf_attr wf_attributes">
|
189 |
+
<?php echo $product->attributeDropdown(''); ?>
|
190 |
+
</select>
|
191 |
+
<input type="text" name="default[]" autocomplete="off" class="wf_default wf_attributes"
|
192 |
+
value="RUR" "/>
|
193 |
+
</td>
|
194 |
+
<td>
|
195 |
+
<input type="text" name="suffix[]" autocomplete="off" class="wf_ps"/>
|
196 |
+
</td>
|
197 |
+
<td>
|
198 |
+
<select name="output_type[][]" class="outputType wfnoempty">
|
199 |
+
<option value="1">Default</option>
|
200 |
+
<option value="2">Strip Tags</option>
|
201 |
+
<option value="3">UTF-8 Encode</option>
|
202 |
+
<option value="4">htmlentities</option>
|
203 |
+
<option value="5">Integer</option>
|
204 |
+
<option value="6">Price</option>
|
205 |
+
<option value="7">Remove Space</option><option value="10">Remove ShortCodes</option><option value="9">Remove Special Character</option>
|
206 |
+
<option value="8">CDATA</option>
|
207 |
+
</select>
|
208 |
+
<i class="dashicons dashicons-editor-expand expandType"></i>
|
209 |
+
<i style="display: none;" class="dashicons dashicons-editor-contract contractType"></i>
|
210 |
+
</td>
|
211 |
+
<td>
|
212 |
+
<input type="text" name="limit[]" class="wf_ps"/>
|
213 |
+
</td>
|
214 |
+
<td>
|
215 |
+
<i class="delRow dashicons dashicons-trash"></i>
|
216 |
+
</td>
|
217 |
+
</tr>
|
218 |
+
<tr>
|
219 |
+
<td>
|
220 |
+
<i class="wf_sortedtable dashicons dashicons-menu"></i>
|
221 |
+
</td>
|
222 |
+
<td>
|
223 |
+
<input type="text" name="mattributes[]" autocomplete="off" required
|
224 |
+
class="wf_validate_attr wf_mattributes" value="category"/>
|
225 |
+
</td>
|
226 |
+
<td>
|
227 |
+
<input type="text" name="prefix[]" autocomplete="off" class="wf_ps"/>
|
228 |
+
</td>
|
229 |
+
<td>
|
230 |
+
<select name="type[]" class="attr_type wfnoempty">
|
231 |
+
<option value="attribute"><?php _e('Attribute', 'woo-feed'); ?></option>
|
232 |
+
<option value="pattern"><?php _e('Pattern', 'woo-feed'); ?></option>
|
233 |
+
</select>
|
234 |
+
</td>
|
235 |
+
<td>
|
236 |
+
<select name="attributes[]"
|
237 |
+
class="wf_validate_attr wf_attr wf_attributes">
|
238 |
+
<?php echo $product->attributeDropdown('product_type'); ?>
|
239 |
+
</select>
|
240 |
+
<input type="text" name="default[]" autocomplete="off" class="wf_default wf_attributes"
|
241 |
+
style=" display: none;"/>
|
242 |
+
</td>
|
243 |
+
<td>
|
244 |
+
<input type="text" name="suffix[]" autocomplete="off" class="wf_ps"/>
|
245 |
+
</td>
|
246 |
+
<td>
|
247 |
+
<select name="output_type[][]" class="outputType wfnoempty">
|
248 |
+
<option value="1">Default</option>
|
249 |
+
<option value="2">Strip Tags</option>
|
250 |
+
<option value="3">UTF-8 Encode</option>
|
251 |
+
<option value="4">htmlentities</option>
|
252 |
+
<option value="5">Integer</option>
|
253 |
+
<option value="6">Price</option>
|
254 |
+
<option value="7">Remove Space</option><option value="10">Remove ShortCodes</option><option value="9">Remove Special Character</option>
|
255 |
+
<option value="8">CDATA</option>
|
256 |
+
</select>
|
257 |
+
<i class="dashicons dashicons-editor-expand expandType"></i>
|
258 |
+
<i style="display: none;" class="dashicons dashicons-editor-contract contractType"></i>
|
259 |
+
</td>
|
260 |
+
<td>
|
261 |
+
<input type="text" name="limit[]" class="wf_ps"/>
|
262 |
+
</td>
|
263 |
+
<td>
|
264 |
+
<i class="delRow dashicons dashicons-trash"></i>
|
265 |
+
</td>
|
266 |
+
</tr>
|
267 |
+
<tr>
|
268 |
+
<td>
|
269 |
+
<i class="wf_sortedtable dashicons dashicons-menu"></i>
|
270 |
+
</td>
|
271 |
+
<td>
|
272 |
+
<input type="text" name="mattributes[]" autocomplete="off" required
|
273 |
+
class="wf_validate_attr wf_mattributes" value="picture"/>
|
274 |
+
</td>
|
275 |
+
<td>
|
276 |
+
<input type="text" name="prefix[]" autocomplete="off" class="wf_ps"/>
|
277 |
+
</td>
|
278 |
+
<td>
|
279 |
+
<select name="type[]" class="attr_type wfnoempty">
|
280 |
+
<option value="attribute"><?php _e('Attribute', 'woo-feed'); ?></option>
|
281 |
+
<option value="pattern"><?php _e('Pattern', 'woo-feed'); ?></option>
|
282 |
+
</select>
|
283 |
+
</td>
|
284 |
+
<td>
|
285 |
+
<select name="attributes[]"
|
286 |
+
class="wf_validate_attr wf_attr wf_attributes">
|
287 |
+
<?php echo $product->attributeDropdown('image'); ?>
|
288 |
+
</select>
|
289 |
+
<input type="text" name="default[]" autocomplete="off" class="wf_default wf_attributes"
|
290 |
+
style=" display: none;"/>
|
291 |
+
</td>
|
292 |
+
<td>
|
293 |
+
<input type="text" name="suffix[]" autocomplete="off" class="wf_ps"/>
|
294 |
+
</td>
|
295 |
+
<td>
|
296 |
+
<select name="output_type[][]" class="outputType wfnoempty">
|
297 |
+
<option value="1">Default</option>
|
298 |
+
<option value="2">Strip Tags</option>
|
299 |
+
<option value="3">UTF-8 Encode</option>
|
300 |
+
<option value="4">htmlentities</option>
|
301 |
+
<option value="5">Integer</option>
|
302 |
+
<option value="6">Price</option>
|
303 |
+
<option value="7">Remove Space</option><option value="10">Remove ShortCodes</option><option value="9">Remove Special Character</option>
|
304 |
+
<option value="8">CDATA</option>
|
305 |
+
</select>
|
306 |
+
<i class="dashicons dashicons-editor-expand expandType"></i>
|
307 |
+
<i style="display: none;" class="dashicons dashicons-editor-contract contractType"></i>
|
308 |
+
</td>
|
309 |
+
<td>
|
310 |
+
<input type="text" name="limit[]" class="wf_ps"/>
|
311 |
+
</td>
|
312 |
+
<td>
|
313 |
+
<i class="delRow dashicons dashicons-trash"></i>
|
314 |
+
</td>
|
315 |
+
</tr>
|
316 |
+
<tr>
|
317 |
+
<td>
|
318 |
+
<i class="wf_sortedtable dashicons dashicons-menu"></i>
|
319 |
+
</td>
|
320 |
+
<td>
|
321 |
+
<input type="text" name="mattributes[]" autocomplete="off" required
|
322 |
+
class="wf_validate_attr wf_mattributes" value="name"/>
|
323 |
+
</td>
|
324 |
+
<td>
|
325 |
+
<input type="text" name="prefix[]" autocomplete="off" class="wf_ps"/>
|
326 |
+
</td>
|
327 |
+
<td>
|
328 |
+
<select name="type[]" class="attr_type wfnoempty">
|
329 |
+
<option value="attribute" selected><?php _e('Attribute', 'woo-feed'); ?></option>
|
330 |
+
<option value="pattern" ><?php _e('Pattern', 'woo-feed'); ?></option>
|
331 |
+
</select>
|
332 |
+
</td>
|
333 |
+
<td>
|
334 |
+
<select name="attributes[]"
|
335 |
+
class="wf_validate_attr wf_attr wf_attributes">
|
336 |
+
<?php echo $product->attributeDropdown('title'); ?>
|
337 |
+
</select>
|
338 |
+
<input type="text" style=" display: none;" name="default[]" autocomplete="off" class="wf_default wf_attributes"
|
339 |
+
/>
|
340 |
+
</td>
|
341 |
+
<td>
|
342 |
+
<input type="text" name="suffix[]" autocomplete="off" class="wf_ps"/>
|
343 |
+
</td>
|
344 |
+
<td>
|
345 |
+
<select name="output_type[][]" class="outputType wfnoempty">
|
346 |
+
<option value="1">Default</option>
|
347 |
+
<option value="2">Strip Tags</option>
|
348 |
+
<option value="3">UTF-8 Encode</option>
|
349 |
+
<option value="4">htmlentities</option>
|
350 |
+
<option value="5">Integer</option>
|
351 |
+
<option value="6">Price</option>
|
352 |
+
<option value="7">Remove Space</option><option value="10">Remove ShortCodes</option><option value="9">Remove Special Character</option>
|
353 |
+
<option value="8">CDATA</option>
|
354 |
+
</select>
|
355 |
+
<i class="dashicons dashicons-editor-expand expandType"></i>
|
356 |
+
<i style="display: none;" class="dashicons dashicons-editor-contract contractType"></i>
|
357 |
+
</td>
|
358 |
+
<td>
|
359 |
+
<input type="text" name="limit[]" class="wf_ps"/>
|
360 |
+
</td>
|
361 |
+
<td>
|
362 |
+
<i class="delRow dashicons dashicons-trash"></i>
|
363 |
+
</td>
|
364 |
+
</tr>
|
365 |
+
<tr>
|
366 |
+
<td>
|
367 |
+
<i class="wf_sortedtable dashicons dashicons-menu"></i>
|
368 |
+
</td>
|
369 |
+
<td>
|
370 |
+
<input type="text" name="mattributes[]" autocomplete="off" required
|
371 |
+
class="wf_validate_attr wf_mattributes" value="description"/>
|
372 |
+
</td>
|
373 |
+
<td>
|
374 |
+
<input type="text" name="prefix[]" autocomplete="off" class="wf_ps"/>
|
375 |
+
</td>
|
376 |
+
<td>
|
377 |
+
<select name="type[]" class="attr_type wfnoempty">
|
378 |
+
<option value="attribute"><?php _e('Attribute', 'woo-feed'); ?></option>
|
379 |
+
<option value="pattern"><?php _e('Pattern', 'woo-feed'); ?></option>
|
380 |
+
</select>
|
381 |
+
</td>
|
382 |
+
<td>
|
383 |
+
<select name="attributes[]"
|
384 |
+
class="wf_validate_attr wf_attr wf_attributes">
|
385 |
+
<?php echo $product->attributeDropdown("description"); ?>
|
386 |
+
</select>
|
387 |
+
<input type="text" name="default[]" autocomplete="off" class="wf_default wf_attributes"
|
388 |
+
style=" display: none;"/>
|
389 |
+
</td>
|
390 |
+
<td>
|
391 |
+
<input type="text" name="suffix[]" autocomplete="off" class="wf_ps"/>
|
392 |
+
</td>
|
393 |
+
<td>
|
394 |
+
<select name="output_type[][]" class="outputType wfnoempty">
|
395 |
+
<option value="1">Default</option>
|
396 |
+
<option value="2">Strip Tags</option>
|
397 |
+
<option value="3">UTF-8 Encode</option>
|
398 |
+
<option value="4">htmlentities</option>
|
399 |
+
<option value="5">Integer</option>
|
400 |
+
<option value="6">Price</option>
|
401 |
+
<option value="7">Remove Space</option><option value="10">Remove ShortCodes</option><option value="9">Remove Special Character</option>
|
402 |
+
<option value="8">CDATA</option>
|
403 |
+
</select>
|
404 |
+
<i class="dashicons dashicons-editor-expand expandType"></i>
|
405 |
+
<i style="display: none;" class="dashicons dashicons-editor-contract contractType"></i>
|
406 |
+
</td>
|
407 |
+
<td>
|
408 |
+
<input type="text" name="limit[]" class="wf_ps"/>
|
409 |
+
</td>
|
410 |
+
<td>
|
411 |
+
<i class="delRow dashicons dashicons-trash"></i>
|
412 |
+
</td>
|
413 |
+
</tr>
|
414 |
+
</tbody>
|
415 |
+
<tfoot>
|
416 |
+
<tr>
|
417 |
+
<td>
|
418 |
+
<button type="button" class="button-small button-primary" id="wf_newRow">
|
419 |
+
<?php _e('Add New Row', 'woo-feed'); ?>
|
420 |
+
</button>
|
421 |
+
</td>
|
422 |
+
<td colspan="8">
|
423 |
+
|
424 |
+
</td>
|
425 |
+
</tr>
|
426 |
+
</tfoot>
|
427 |
+
</table>
|
428 |
+
<table class=" widefat fixed">
|
429 |
+
<tr>
|
430 |
+
<td align="left" class="">
|
431 |
+
<div class="makeFeedResponse"></div>
|
432 |
+
<div class="makeFeedComplete"></div>
|
433 |
+
</td>
|
434 |
+
<td align="right">
|
435 |
+
<button type="submit" class="wfbtn"><?php _e( 'Save & Generate Feed', 'woo-feed' ); ?></button>
|
436 |
+
</td>
|
437 |
+
</tr>
|
438 |
+
</table>
|
439 |
+
</div>
|
440 |
+
</li>
|
441 |
+
|
442 |
+
<?php include plugin_dir_path(__FILE__) . "../woo-feed-ftp-sftp-template.php"; ?>
|
443 |
+
|
444 |
+
</ul>
|
includes/classes/class-woo-feed-default-attributes.php
CHANGED
@@ -25,130 +25,132 @@ class Woo_Feed_Default_Attributes
|
|
25 |
|
26 |
}
|
27 |
|
28 |
-
public function merchants()
|
|
|
29 |
//
|
30 |
|
31 |
-
$feed_engine=array(
|
32 |
-
"--1"
|
33 |
-
"custom"
|
34 |
-
"---1"
|
35 |
);
|
36 |
|
37 |
-
$popular_template=array(
|
38 |
-
"--2"
|
39 |
-
"google"
|
40 |
-
"google_local"
|
41 |
-
"google_local_inventory"
|
42 |
-
"adwords"
|
43 |
-
"facebook"
|
44 |
-
"pinterest"
|
45 |
-
"---2"
|
46 |
);
|
47 |
|
48 |
-
$others_temp=array(
|
49 |
-
"shopping"
|
50 |
-
"adroll"
|
51 |
-
"adform"
|
52 |
-
"nextag"
|
53 |
-
"pricegrabber"
|
54 |
-
"polyvore"
|
55 |
-
"pricerunner"
|
56 |
-
"kelkoo"
|
57 |
-
"shopzilla"
|
58 |
-
"shopmania"
|
59 |
-
"shopbot"
|
60 |
-
"bing"
|
61 |
-
"become"
|
62 |
-
"connexity"
|
63 |
|
64 |
-
"pricespy"
|
65 |
-
"prisjakt"
|
66 |
-
"twenga"
|
67 |
-
"fruugo"
|
68 |
-
"fruugo.au"
|
69 |
-
"bonanza"
|
70 |
-
"bol"
|
71 |
-
"leguide"
|
72 |
-
"real"
|
73 |
-
"crowdfox"
|
74 |
-
"jet"
|
75 |
-
"wish"
|
76 |
-
"zap.co.il"
|
77 |
"myshopping.com.au" => "Myshopping.com.au",
|
78 |
-
"smartly.io"
|
79 |
-
"stylight.com"
|
80 |
-
"nextad"
|
81 |
-
"skinflint.co.uk"
|
82 |
-
"yahoo_nfa"
|
83 |
-
"hintaseuranta.fi"
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
"rakuten"
|
88 |
-
"shopalike.fr"
|
89 |
-
"spartoo.fi"
|
90 |
-
"webmarchand"
|
91 |
-
|
92 |
-
"vergelijk_comparer"
|
93 |
-
"kieskeurig.nl"
|
94 |
-
"beslist.nl"
|
95 |
-
"billiger.de"
|
96 |
-
"vertaa.fi"
|
97 |
-
|
98 |
-
"fnac.fr"
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
"criteo"
|
103 |
-
|
104 |
-
|
105 |
-
"walmart"
|
106 |
-
"modina.de"
|
|
|
107 |
);
|
108 |
|
109 |
asort($others_temp);
|
110 |
-
$newTemplate=array();
|
111 |
-
$newTemplate['--3']="Templates";
|
112 |
foreach ($others_temp as $key => $val) {
|
113 |
// echo "$key = $val <br>";
|
114 |
-
$newTemplate[$key]
|
115 |
}
|
116 |
-
$newTemplate['---3']="";
|
117 |
|
118 |
|
119 |
-
$amazon_template=array(
|
120 |
-
"--4"
|
121 |
-
"amazon_clothing"
|
122 |
-
"amazon_clothing"
|
123 |
-
"amazon_lighting"
|
124 |
-
"amazon_wireless"
|
125 |
-
"amazon_autoaccessory"
|
126 |
-
"amazon_tiresandwheels"
|
127 |
-
"amazon_home"
|
128 |
-
"amazon_home"
|
129 |
-
"amazon_health"
|
130 |
-
"amazon_baby"
|
131 |
-
"amazon_BookLoader"
|
132 |
-
"amazon_CameraAndPhoto"
|
133 |
-
"amazon_foodandbeverages"
|
134 |
-
"amazon_computers"
|
135 |
-
"amazon_ConsumerElectronics"
|
136 |
-
"amazon_entertainmentcollectibles"
|
137 |
-
"amazon_homeimprovement"
|
138 |
-
"amazon_office"
|
139 |
-
"amazon_petsupplies"
|
140 |
-
"amazon_sportsmemorabilia"
|
141 |
-
"amazon_shoes"
|
142 |
-
"amazon_sports"
|
143 |
-
"amazon_toys"
|
144 |
-
"amazon_TradingCards"
|
145 |
-
"amazon_watches"
|
146 |
-
"amazon_jewelry"
|
147 |
-
"amazon_jewelry_fr"
|
148 |
-
"---4"
|
149 |
);
|
150 |
|
151 |
-
return array_merge($feed_engine
|
152 |
}
|
153 |
|
154 |
|
@@ -160,10 +162,10 @@ class Woo_Feed_Default_Attributes
|
|
160 |
* @return string
|
161 |
*/
|
162 |
|
163 |
-
public function getAttributeDropDown($merchant
|
164 |
{
|
165 |
$str = "<option></option>";
|
166 |
-
$method
|
167 |
foreach ($this->$method() as $key => $value) {
|
168 |
if (substr($key, 0, 2) == "--") {
|
169 |
$str .= "<optgroup label='$value'>";
|
@@ -181,119 +183,165 @@ class Woo_Feed_Default_Attributes
|
|
181 |
}
|
182 |
|
183 |
|
184 |
-
public function amazon_foodandbeverages_first_row()
|
185 |
-
|
|
|
186 |
return $row;
|
187 |
}
|
188 |
-
|
189 |
-
|
|
|
|
|
190 |
return $row;
|
191 |
}
|
192 |
-
|
193 |
-
|
|
|
|
|
194 |
return $row;
|
195 |
}
|
196 |
-
|
197 |
-
|
|
|
|
|
198 |
return $row;
|
199 |
}
|
200 |
|
201 |
-
public function amazon_jewelry_first_row()
|
202 |
-
|
|
|
203 |
return $row;
|
204 |
}
|
205 |
|
206 |
|
207 |
-
|
208 |
-
|
209 |
-
$row=array("TemplateType=lighting","Version=2016.1123","The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.","","","","","","","","","Offer-These attributes are required to make your item buyable for customers on the site","","","","","","","","","","","","","","","","","","","","Dimensions-These attributes specify the size and weight of a product","","","","","","","","","","","","","","","","Discovery-These attributes have an effect on how customers can find your product on the site using browse or search","","","","","","","","","","Images-These attributes provide links to images for a product","","","","","Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.","","","","","","","Variation-Populate these attributes if your product is available in different variations (for example color or wattage)","","","","Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold","","","","","Ungrouped - These attributes create rich product listings for your buyers.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",);
|
210 |
return $row;
|
211 |
}
|
212 |
|
213 |
-
public function amazon_baby_first_row
|
214 |
-
|
|
|
215 |
return $row;
|
216 |
}
|
217 |
-
|
218 |
-
|
|
|
|
|
219 |
return $row;
|
220 |
}
|
221 |
|
222 |
-
public function amazon_autoaccessory_first_row
|
223 |
-
|
|
|
224 |
return $row;
|
225 |
}
|
226 |
-
|
227 |
-
|
|
|
|
|
228 |
return $row;
|
229 |
}
|
230 |
-
|
231 |
-
|
|
|
|
|
232 |
return $row;
|
233 |
}
|
234 |
|
235 |
-
public function amazon_CameraAndPhoto_first_row
|
236 |
-
|
|
|
237 |
return $row;
|
238 |
}
|
239 |
-
|
240 |
-
|
|
|
|
|
241 |
return $row;
|
242 |
}
|
243 |
-
|
244 |
-
|
|
|
|
|
245 |
return $row;
|
246 |
}
|
247 |
-
|
248 |
-
|
|
|
|
|
249 |
return $row;
|
250 |
}
|
251 |
-
|
252 |
-
|
|
|
|
|
253 |
return $row;
|
254 |
}
|
255 |
-
|
256 |
-
|
|
|
|
|
257 |
return $row;
|
258 |
}
|
259 |
-
|
260 |
-
|
|
|
|
|
261 |
return $row;
|
262 |
}
|
263 |
-
|
264 |
-
|
|
|
|
|
265 |
return $row;
|
266 |
}
|
267 |
-
|
268 |
-
|
|
|
|
|
269 |
return $row;
|
270 |
}
|
271 |
-
|
272 |
-
|
|
|
|
|
273 |
return $row;
|
274 |
}
|
275 |
-
|
276 |
-
|
|
|
|
|
277 |
return $row;
|
278 |
}
|
279 |
-
|
280 |
-
|
|
|
|
|
281 |
return $row;
|
282 |
}
|
283 |
-
|
284 |
-
|
|
|
|
|
285 |
return $row;
|
286 |
}
|
287 |
-
|
288 |
-
|
|
|
|
|
289 |
return $row;
|
290 |
}
|
291 |
-
|
292 |
-
|
|
|
|
|
293 |
return $row;
|
294 |
}
|
295 |
|
296 |
-
public function amazon_watchesAttributes
|
|
|
297 |
$attributes = array(
|
298 |
"item_sku" => "Seller SKU",
|
299 |
"external_product_id" => "Product ID",
|
@@ -394,7 +442,9 @@ class Woo_Feed_Default_Attributes
|
|
394 |
);
|
395 |
return $attributes;
|
396 |
}
|
397 |
-
|
|
|
|
|
398 |
$attributes = array(
|
399 |
"item_sku" => "Seller SKU",
|
400 |
"update_delete" => "Update Delete",
|
@@ -486,7 +536,9 @@ class Woo_Feed_Default_Attributes
|
|
486 |
);
|
487 |
return $attributes;
|
488 |
}
|
489 |
-
|
|
|
|
|
490 |
$attributes = array(
|
491 |
"item_sku" => "Seller SKU",
|
492 |
"external_product_id" => "Product ID",
|
@@ -590,7 +642,9 @@ class Woo_Feed_Default_Attributes
|
|
590 |
);
|
591 |
return $attributes;
|
592 |
}
|
593 |
-
|
|
|
|
|
594 |
$attributes = array(
|
595 |
"update_delete" => "Update Delete",
|
596 |
"item_sku" => "Seller SKU",
|
@@ -653,7 +707,9 @@ class Woo_Feed_Default_Attributes
|
|
653 |
);
|
654 |
return $attributes;
|
655 |
}
|
656 |
-
|
|
|
|
|
657 |
$attributes = array(
|
658 |
"item_sku" => "Seller SKU",
|
659 |
"external_product_id" => "Product ID",
|
@@ -881,7 +937,9 @@ class Woo_Feed_Default_Attributes
|
|
881 |
);
|
882 |
return $attributes;
|
883 |
}
|
884 |
-
|
|
|
|
|
885 |
$attributes = array(
|
886 |
"item_sku" => "Seller SKU",
|
887 |
"item_name" => "Product Name",
|
@@ -1007,7 +1065,9 @@ class Woo_Feed_Default_Attributes
|
|
1007 |
);
|
1008 |
return $attributes;
|
1009 |
}
|
1010 |
-
|
|
|
|
|
1011 |
$attributes = array(
|
1012 |
"item_sku" => "Seller SKU",
|
1013 |
"external_product_id" => "Product ID",
|
@@ -1126,7 +1186,9 @@ class Woo_Feed_Default_Attributes
|
|
1126 |
);
|
1127 |
return $attributes;
|
1128 |
}
|
1129 |
-
|
|
|
|
|
1130 |
$attributes = array(
|
1131 |
"item_sku" => "Seller SKU",
|
1132 |
"external_product_id" => "Product ID",
|
@@ -1337,7 +1399,9 @@ class Woo_Feed_Default_Attributes
|
|
1337 |
);
|
1338 |
return $attributes;
|
1339 |
}
|
1340 |
-
|
|
|
|
|
1341 |
$attributes = array(
|
1342 |
"item_sku" => "Seller SKU",
|
1343 |
"external_product_id" => "Product ID",
|
@@ -1436,7 +1500,9 @@ class Woo_Feed_Default_Attributes
|
|
1436 |
);
|
1437 |
return $attributes;
|
1438 |
}
|
1439 |
-
|
|
|
|
|
1440 |
$attributes = array(
|
1441 |
"item_sku" => "Seller SKU",
|
1442 |
"external_product_id" => "Product ID",
|
@@ -1564,7 +1630,9 @@ class Woo_Feed_Default_Attributes
|
|
1564 |
);
|
1565 |
return $attributes;
|
1566 |
}
|
1567 |
-
|
|
|
|
|
1568 |
$attributes = array(
|
1569 |
"item_sku" => "Seller SKU",
|
1570 |
"external_product_id" => "Product ID",
|
@@ -1767,7 +1835,9 @@ class Woo_Feed_Default_Attributes
|
|
1767 |
);
|
1768 |
return $attributes;
|
1769 |
}
|
1770 |
-
|
|
|
|
|
1771 |
$attributes = array(
|
1772 |
"item_name" => "Product Name",
|
1773 |
"item_type" => "Category (item-type)",
|
@@ -1846,7 +1916,9 @@ class Woo_Feed_Default_Attributes
|
|
1846 |
);
|
1847 |
return $attributes;
|
1848 |
}
|
1849 |
-
|
|
|
|
|
1850 |
$attributes = array(
|
1851 |
"item_sku" => "Seller SKU",
|
1852 |
"external_product_id" => "Product ID",
|
@@ -1982,7 +2054,9 @@ class Woo_Feed_Default_Attributes
|
|
1982 |
);
|
1983 |
return $attributes;
|
1984 |
}
|
1985 |
-
|
|
|
|
|
1986 |
$attributes = array(
|
1987 |
"item_sku" => "Seller SKU",
|
1988 |
"external_product_id" => "Product ID",
|
@@ -2144,7 +2218,9 @@ class Woo_Feed_Default_Attributes
|
|
2144 |
);
|
2145 |
return $attributes;
|
2146 |
}
|
2147 |
-
|
|
|
|
|
2148 |
$attributes = array(
|
2149 |
"item_sku" => "Seller SKU",
|
2150 |
"external_product_id" => "Product ID",
|
@@ -2281,7 +2357,8 @@ class Woo_Feed_Default_Attributes
|
|
2281 |
return $attributes;
|
2282 |
}
|
2283 |
|
2284 |
-
public function amazon_BookLoaderAttributes
|
|
|
2285 |
$attributes = array(
|
2286 |
"item_sku" => "Seller SKU",
|
2287 |
"external_product_id" => "Product ID",
|
@@ -2379,7 +2456,9 @@ class Woo_Feed_Default_Attributes
|
|
2379 |
);
|
2380 |
return $attributes;
|
2381 |
}
|
2382 |
-
|
|
|
|
|
2383 |
$attributes = array(
|
2384 |
"item_sku" => "Seller SKU",
|
2385 |
"external_product_id" => "Product ID",
|
@@ -2474,7 +2553,9 @@ class Woo_Feed_Default_Attributes
|
|
2474 |
);
|
2475 |
return $attributes;
|
2476 |
}
|
2477 |
-
|
|
|
|
|
2478 |
$attributes = array(
|
2479 |
"item_sku" => "Seller SKU",
|
2480 |
"external_product_id" => "Product ID",
|
@@ -2595,7 +2676,8 @@ class Woo_Feed_Default_Attributes
|
|
2595 |
return $attributes;
|
2596 |
}
|
2597 |
|
2598 |
-
public function amazon_wirelessAttributes
|
|
|
2599 |
$attributes = array(
|
2600 |
"item_sku" => "Seller SKU",
|
2601 |
"item_name" => "Title",
|
@@ -2689,7 +2771,9 @@ class Woo_Feed_Default_Attributes
|
|
2689 |
);
|
2690 |
return $attributes;
|
2691 |
}
|
2692 |
-
|
|
|
|
|
2693 |
$attributes = array(
|
2694 |
"item_sku" => "Seller SKU",
|
2695 |
"item_name" => "Title",
|
@@ -2809,8 +2893,10 @@ class Woo_Feed_Default_Attributes
|
|
2809 |
);
|
2810 |
return $attributes;
|
2811 |
}
|
2812 |
-
|
2813 |
-
|
|
|
|
|
2814 |
"item_sku" => "Seller SKU",
|
2815 |
"item_name" => "Product Name",
|
2816 |
"external_product_id" => "Product ID",
|
@@ -2913,8 +2999,10 @@ class Woo_Feed_Default_Attributes
|
|
2913 |
);
|
2914 |
return $attributes;
|
2915 |
}
|
2916 |
-
|
2917 |
-
|
|
|
|
|
2918 |
"item_sku" => "Seller SKU",
|
2919 |
"external_product_id" => "Product ID",
|
2920 |
"external_product_id_type" => "Product ID Type",
|
@@ -3015,8 +3103,10 @@ class Woo_Feed_Default_Attributes
|
|
3015 |
);
|
3016 |
return $attributes;
|
3017 |
}
|
3018 |
-
|
3019 |
-
|
|
|
|
|
3020 |
"item_sku" => "Seller SKU",
|
3021 |
"external_product_id" => "Product ID",
|
3022 |
"external_product_id_type" => "Product ID Type",
|
@@ -3169,8 +3259,10 @@ class Woo_Feed_Default_Attributes
|
|
3169 |
);
|
3170 |
return $attributes;
|
3171 |
}
|
3172 |
-
|
3173 |
-
|
|
|
|
|
3174 |
"item_sku" => "Seller SKU",
|
3175 |
"item_name" => "Title",
|
3176 |
"manufacturer" => "Manufacturer",
|
@@ -3307,169 +3399,174 @@ class Woo_Feed_Default_Attributes
|
|
3307 |
return $attributes;
|
3308 |
}
|
3309 |
|
3310 |
-
public function amazon_jewelry_fr_first_row()
|
3311 |
-
|
|
|
3312 |
return $row;
|
3313 |
}
|
3314 |
-
|
3315 |
-
|
3316 |
-
|
3317 |
-
|
3318 |
-
"
|
3319 |
-
"
|
3320 |
-
"
|
3321 |
-
"
|
3322 |
-
"
|
3323 |
-
"
|
3324 |
-
"
|
3325 |
-
"
|
3326 |
-
"
|
3327 |
-
"
|
3328 |
-
"
|
3329 |
-
"
|
3330 |
-
"
|
3331 |
-
"
|
3332 |
-
"
|
3333 |
-
"
|
3334 |
-
"
|
3335 |
-
"
|
3336 |
-
"
|
3337 |
-
"
|
3338 |
-
"
|
3339 |
-
"
|
3340 |
-
"
|
3341 |
-
"
|
3342 |
-
"
|
3343 |
-
"
|
3344 |
-
"
|
3345 |
-
"
|
3346 |
-
"
|
3347 |
-
"
|
3348 |
-
"
|
3349 |
-
"
|
3350 |
-
"
|
3351 |
-
"
|
3352 |
-
"
|
3353 |
-
"
|
3354 |
-
"
|
3355 |
-
"
|
3356 |
-
"
|
3357 |
-
"
|
3358 |
-
"
|
3359 |
-
"
|
3360 |
-
"
|
3361 |
-
"
|
3362 |
-
"
|
3363 |
-
"
|
3364 |
-
"
|
3365 |
-
"
|
3366 |
-
"
|
3367 |
-
"
|
3368 |
-
"
|
3369 |
-
"
|
3370 |
-
"
|
3371 |
-
"
|
3372 |
-
"
|
3373 |
-
"
|
3374 |
-
"
|
3375 |
-
"
|
3376 |
-
"
|
3377 |
-
"
|
3378 |
-
"
|
3379 |
-
"
|
3380 |
-
"
|
3381 |
-
"
|
3382 |
-
"
|
3383 |
-
"
|
3384 |
-
"
|
3385 |
-
"
|
3386 |
-
"
|
3387 |
-
"
|
3388 |
-
"
|
3389 |
-
"
|
3390 |
-
"
|
3391 |
-
"
|
3392 |
-
"
|
3393 |
-
"
|
3394 |
-
"
|
3395 |
-
"
|
3396 |
-
"
|
3397 |
-
"
|
3398 |
-
"
|
3399 |
-
"
|
3400 |
-
"
|
3401 |
-
"
|
3402 |
-
"
|
3403 |
-
"
|
3404 |
-
"
|
3405 |
-
"
|
3406 |
-
"
|
3407 |
-
"
|
3408 |
-
"
|
3409 |
-
"
|
3410 |
-
"
|
3411 |
-
"
|
3412 |
-
"
|
3413 |
-
"
|
3414 |
-
"
|
3415 |
-
"
|
3416 |
-
"
|
3417 |
-
"
|
3418 |
-
"
|
3419 |
-
"
|
3420 |
-
"
|
3421 |
-
"
|
3422 |
-
"
|
3423 |
-
"
|
3424 |
-
"
|
3425 |
-
"
|
3426 |
-
"
|
3427 |
-
"
|
3428 |
-
"
|
3429 |
-
"
|
3430 |
-
"
|
3431 |
-
"
|
3432 |
-
"
|
3433 |
-
"
|
3434 |
-
"
|
3435 |
-
"
|
3436 |
-
"
|
3437 |
-
"
|
3438 |
-
"
|
3439 |
-
"
|
3440 |
-
"
|
3441 |
-
"
|
3442 |
-
"
|
3443 |
-
"
|
3444 |
-
"
|
3445 |
-
"
|
3446 |
-
"
|
3447 |
-
"
|
3448 |
-
"
|
3449 |
-
"
|
3450 |
-
"
|
3451 |
-
"
|
3452 |
-
"
|
3453 |
-
"
|
3454 |
-
"
|
3455 |
-
"
|
3456 |
-
"
|
3457 |
-
"
|
3458 |
-
"
|
3459 |
-
"
|
3460 |
-
"
|
3461 |
-
"
|
3462 |
-
"
|
3463 |
-
"
|
3464 |
-
"
|
3465 |
-
"
|
3466 |
-
"
|
3467 |
-
"
|
|
|
|
|
3468 |
);
|
3469 |
return $attributes;
|
3470 |
}
|
3471 |
-
|
3472 |
-
|
|
|
|
|
3473 |
"item_sku" => "Seller SKU",
|
3474 |
"external_product_id" => "Product ID",
|
3475 |
"external_product_id_type" => "Product ID Type",
|
@@ -3583,8 +3680,10 @@ class Woo_Feed_Default_Attributes
|
|
3583 |
);
|
3584 |
return $attributes;
|
3585 |
}
|
3586 |
-
|
3587 |
-
|
|
|
|
|
3588 |
"item_sku" => "Seller SKU",
|
3589 |
"item_name" => "Product Name",
|
3590 |
"external_product_id" => "Product ID",
|
@@ -3706,635 +3805,648 @@ class Woo_Feed_Default_Attributes
|
|
3706 |
public function googleAttributes()
|
3707 |
{
|
3708 |
$attributes = array(
|
3709 |
-
"--1"
|
3710 |
-
"id"
|
3711 |
-
"title"
|
3712 |
-
"description"
|
3713 |
-
"link"
|
3714 |
-
"mobile_link"
|
3715 |
-
"product_type"
|
3716 |
-
"current_category"
|
3717 |
-
"image"
|
3718 |
-
"images"
|
3719 |
-
"images_1"
|
3720 |
-
"images_2"
|
3721 |
-
"images_3"
|
3722 |
-
"images_4"
|
3723 |
-
"images_5"
|
3724 |
-
"images_6"
|
3725 |
-
"images_7"
|
3726 |
-
"images_8"
|
3727 |
-
"images_9"
|
3728 |
-
"images_10"
|
3729 |
-
"condition"
|
3730 |
-
"---1"
|
3731 |
|
3732 |
-
"--2"
|
3733 |
-
"availability"
|
3734 |
-
"availability_date"
|
3735 |
-
"cost_of_goods_sold"
|
3736 |
-
"expiration_date"
|
3737 |
-
"inventory"
|
3738 |
-
"override"
|
3739 |
-
"price"
|
3740 |
-
"sale_price"
|
3741 |
-
"sale_price_effective_date"
|
3742 |
-
"---2"
|
3743 |
|
3744 |
-
"--3"
|
3745 |
-
"brand"
|
3746 |
-
"upc"
|
3747 |
-
"sku"
|
3748 |
-
"identifier_exists"
|
3749 |
-
"---3"
|
3750 |
|
3751 |
-
"--4"
|
3752 |
-
"item_group_id"
|
3753 |
-
"color"
|
3754 |
-
"gender"
|
3755 |
-
"age_group"
|
3756 |
-
"material"
|
3757 |
-
"pattern"
|
3758 |
-
"size"
|
3759 |
-
"size_type"
|
3760 |
-
"size_system"
|
3761 |
-
"---4"
|
3762 |
|
3763 |
-
"--5"
|
3764 |
// "tax" => "Tax[tax]",
|
3765 |
-
"tax_country"
|
3766 |
-
"tax_region"
|
3767 |
-
"tax_rate"
|
3768 |
-
"tax_ship"
|
3769 |
-
"tax_category"
|
3770 |
-
"shipping_country"
|
3771 |
-
"shipping_region"
|
3772 |
-
"shipping_service"
|
3773 |
-
"shipping_price"
|
3774 |
-
"weight"
|
3775 |
-
"length"
|
3776 |
-
"width"
|
3777 |
-
"height"
|
3778 |
-
"shipping_label"
|
3779 |
-
"---5"
|
3780 |
|
3781 |
-
"--6"
|
3782 |
-
"multipack"
|
3783 |
-
"is_bundle"
|
3784 |
-
"---6"
|
3785 |
|
3786 |
-
"--7"
|
3787 |
-
"adult"
|
3788 |
-
"---7"
|
3789 |
|
3790 |
-
"--8"
|
3791 |
-
"adwords_redirect"
|
3792 |
-
"---8"
|
3793 |
|
3794 |
-
"--9"
|
3795 |
-
"custom_label_0"
|
3796 |
-
"custom_label_1"
|
3797 |
-
"custom_label_2"
|
3798 |
-
"custom_label_3"
|
3799 |
-
"custom_label_4"
|
3800 |
-
"---9"
|
3801 |
|
3802 |
-
"--10"
|
3803 |
-
"excluded_destination"
|
3804 |
-
"included_destination"
|
3805 |
-
"expiration_date"
|
3806 |
-
"---10"
|
3807 |
|
3808 |
-
"--11"
|
3809 |
-
"unit_pricing_measure"
|
3810 |
-
"unit_pricing_base_measure"
|
3811 |
-
"---11"
|
3812 |
|
3813 |
-
"--12"
|
3814 |
-
"energy_efficiency_class"
|
3815 |
-
"---12"
|
3816 |
|
3817 |
-
"--13"
|
3818 |
-
"loyalty_points"
|
3819 |
-
"---13"
|
3820 |
|
3821 |
-
"--14"
|
3822 |
-
"installment"
|
3823 |
-
"---14"
|
3824 |
|
3825 |
-
"--15"
|
3826 |
-
"promotion_id"
|
3827 |
-
"---15"
|
3828 |
);
|
3829 |
|
3830 |
return $attributes;
|
3831 |
}
|
3832 |
|
3833 |
-
public function pricegrabberAttribute()
|
|
|
3834 |
$attributes = array(
|
3835 |
-
"--1"
|
3836 |
-
"Retsku"
|
3837 |
-
"Product Title"
|
3838 |
-
"Detailed Description"
|
3839 |
-
"Categorization"
|
3840 |
-
"Product URL"
|
3841 |
-
"Primary Image URL"
|
3842 |
-
"Selling Price"
|
3843 |
-
"Regular Price"
|
3844 |
-
"Condition"
|
3845 |
-
"Availability"
|
3846 |
-
"Manufacturer Name"
|
3847 |
-
"GTIN"
|
3848 |
-
"Mature"
|
3849 |
-
"---1"
|
3850 |
-
"--2"
|
3851 |
-
"Parent Retsku"
|
3852 |
-
"Merchant Categorization"
|
3853 |
-
"Manufacturer Part Number"
|
3854 |
-
"Additional Image URL 1"
|
3855 |
-
"Additional Image URL 2"
|
3856 |
-
"Additional Image URL 3"
|
3857 |
-
"Additional Image URL 4"
|
3858 |
-
"Additional Image URL 5"
|
3859 |
-
"Additional Image URL 6"
|
3860 |
-
"Additional Image URL 7"
|
3861 |
-
"Additional Image URL 8"
|
3862 |
-
"Additional Image URL 9"
|
3863 |
-
"Additional Image URL 10"
|
3864 |
-
"Video URL"
|
3865 |
-
"Color"
|
3866 |
-
"Size"
|
3867 |
-
"Material"
|
3868 |
-
"Pattern"
|
3869 |
-
"Gender"
|
3870 |
-
"Age"
|
3871 |
-
"Parent UPC"
|
3872 |
-
"Multipack"
|
3873 |
-
"Shipping Cost"
|
3874 |
-
"Weight"
|
3875 |
-
"---2"
|
3876 |
);
|
3877 |
return $attributes;
|
3878 |
}
|
3879 |
|
3880 |
-
public function nextagAttribute()
|
3881 |
-
|
3882 |
-
|
3883 |
-
"
|
3884 |
-
"Product
|
3885 |
-
"
|
3886 |
-
"
|
3887 |
-
"
|
3888 |
-
"
|
3889 |
-
"
|
3890 |
-
"
|
3891 |
-
"
|
3892 |
-
"
|
3893 |
-
"
|
3894 |
-
"
|
3895 |
-
"
|
3896 |
-
"
|
3897 |
-
"
|
3898 |
-
"
|
3899 |
-
"
|
3900 |
-
"
|
3901 |
-
"
|
3902 |
-
"
|
3903 |
-
"
|
3904 |
-
"
|
3905 |
-
"
|
3906 |
-
"
|
|
|
3907 |
);
|
3908 |
return $attributes;
|
3909 |
}
|
3910 |
|
3911 |
-
public function kelkooAttribute()
|
3912 |
-
|
3913 |
-
|
3914 |
-
"
|
3915 |
-
"
|
3916 |
-
"
|
3917 |
-
"
|
3918 |
-
"
|
3919 |
-
"
|
3920 |
-
"
|
3921 |
-
"
|
3922 |
-
"
|
3923 |
-
"
|
3924 |
-
"
|
3925 |
-
"
|
3926 |
-
"
|
3927 |
-
"
|
3928 |
-
"
|
3929 |
-
"
|
3930 |
-
"
|
3931 |
-
"
|
3932 |
-
"
|
3933 |
-
"
|
3934 |
-
"
|
3935 |
-
"
|
3936 |
-
"
|
3937 |
-
"
|
3938 |
-
"
|
3939 |
-
"
|
3940 |
-
"image-url-
|
3941 |
-
"image-url-
|
3942 |
-
"
|
3943 |
-
"green-
|
3944 |
-
"
|
3945 |
-
"
|
3946 |
-
"
|
3947 |
-
"
|
3948 |
-
"
|
3949 |
-
"
|
3950 |
-
"
|
3951 |
-
"
|
3952 |
-
"
|
3953 |
-
"
|
3954 |
-
"
|
3955 |
-
"
|
3956 |
-
"
|
3957 |
-
"
|
3958 |
-
"
|
3959 |
-
"
|
3960 |
-
"
|
3961 |
-
"voucher-
|
3962 |
-
"voucher-
|
3963 |
-
"voucher-
|
3964 |
-
"voucher-
|
3965 |
-
"voucher-
|
3966 |
-
"
|
3967 |
-
"
|
3968 |
-
"promo
|
3969 |
-
"promo-
|
3970 |
-
"
|
3971 |
-
"
|
3972 |
-
"
|
3973 |
-
"
|
3974 |
-
"video-
|
3975 |
-
"
|
|
|
3976 |
);
|
3977 |
return $attributes;
|
3978 |
}
|
3979 |
|
3980 |
-
public function shopzillaAttribute()
|
3981 |
-
|
3982 |
-
|
3983 |
-
"
|
3984 |
-
"
|
3985 |
-
"
|
3986 |
-
"
|
3987 |
-
"
|
3988 |
-
"
|
3989 |
-
"
|
3990 |
-
"
|
3991 |
-
"
|
3992 |
-
"
|
3993 |
-
"
|
3994 |
-
"
|
3995 |
-
"
|
3996 |
-
"
|
3997 |
-
"
|
3998 |
-
"Ship
|
3999 |
-
"
|
4000 |
-
"
|
4001 |
-
"
|
4002 |
-
"
|
4003 |
-
"
|
4004 |
-
"
|
4005 |
-
"
|
4006 |
-
"
|
4007 |
-
"
|
4008 |
-
"
|
4009 |
-
"
|
4010 |
-
"
|
4011 |
-
"
|
4012 |
-
"Page ID
|
4013 |
-
"
|
4014 |
-
"
|
4015 |
-
"
|
4016 |
-
"
|
4017 |
-
"
|
4018 |
-
"
|
4019 |
-
"
|
4020 |
-
"
|
|
|
4021 |
);
|
4022 |
return $attributes;
|
4023 |
}
|
4024 |
|
4025 |
-
public function shoppingAttribute()
|
4026 |
-
|
4027 |
-
|
4028 |
-
"
|
4029 |
-
"
|
4030 |
-
"Product
|
4031 |
-
"
|
4032 |
-
"
|
4033 |
-
"
|
4034 |
-
"
|
4035 |
-
"
|
4036 |
-
"
|
4037 |
-
"
|
4038 |
-
"
|
4039 |
-
"
|
4040 |
-
"
|
4041 |
-
"
|
4042 |
-
"
|
4043 |
-
"
|
4044 |
-
"Coupon Code
|
4045 |
-
"
|
4046 |
-
"
|
4047 |
-
"Product
|
4048 |
-
"
|
4049 |
-
"Category
|
4050 |
-
"
|
4051 |
-
"Parent
|
4052 |
-
"
|
4053 |
-
"
|
4054 |
-
"
|
4055 |
-
"
|
4056 |
-
"
|
4057 |
-
"
|
4058 |
-
"Size
|
4059 |
-
"
|
4060 |
-
"
|
4061 |
-
"
|
4062 |
-
"Product
|
4063 |
-
"Product Bullet Point
|
4064 |
-
"Product Bullet Point
|
4065 |
-
"Product Bullet Point
|
4066 |
-
"Product Bullet Point
|
4067 |
-
"
|
4068 |
-
"Alternative Image URL
|
4069 |
-
"Alternative Image URL
|
4070 |
-
"Alternative Image URL
|
4071 |
-
"Alternative Image URL
|
4072 |
-
"
|
4073 |
-
"
|
4074 |
-
"
|
4075 |
-
"
|
4076 |
-
"
|
4077 |
-
"
|
4078 |
-
"
|
4079 |
-
"
|
4080 |
-
"
|
4081 |
-
"
|
4082 |
-
"
|
4083 |
-
"
|
|
|
4084 |
);
|
4085 |
return $attributes;
|
4086 |
}
|
4087 |
|
4088 |
-
public function shopmaniaAttribute()
|
4089 |
-
|
4090 |
-
|
4091 |
-
"
|
4092 |
-
"
|
4093 |
-
"
|
4094 |
-
"
|
4095 |
-
"
|
4096 |
-
"
|
4097 |
-
"
|
4098 |
-
"
|
4099 |
-
"
|
4100 |
-
"
|
4101 |
-
"
|
4102 |
-
"
|
4103 |
-
"
|
4104 |
-
"
|
|
|
4105 |
|
4106 |
);
|
4107 |
return $attributes;
|
4108 |
}
|
4109 |
|
4110 |
-
public function leguideAttribute()
|
4111 |
-
|
4112 |
-
|
4113 |
-
"
|
4114 |
-
"
|
4115 |
-
"
|
4116 |
-
"
|
4117 |
-
"
|
4118 |
-
"
|
4119 |
-
"
|
4120 |
-
"
|
4121 |
-
"
|
4122 |
-
"
|
4123 |
-
"
|
4124 |
-
"
|
4125 |
-
"
|
4126 |
-
"
|
4127 |
-
"
|
4128 |
-
"
|
4129 |
-
"
|
4130 |
-
"
|
4131 |
-
"
|
4132 |
-
"
|
4133 |
-
"
|
4134 |
-
"
|
4135 |
-
"
|
4136 |
-
"
|
4137 |
-
"
|
4138 |
-
"
|
|
|
4139 |
);
|
4140 |
return $attributes;
|
4141 |
}
|
4142 |
|
4143 |
-
public function pricespyAttribute()
|
4144 |
-
|
4145 |
-
|
4146 |
-
"
|
4147 |
-
"
|
4148 |
-
"
|
4149 |
-
"
|
4150 |
-
"
|
4151 |
-
"
|
4152 |
-
"manufacturer
|
4153 |
-
"
|
4154 |
-
"
|
4155 |
-
"
|
4156 |
-
"
|
|
|
4157 |
);
|
4158 |
return $attributes;
|
4159 |
}
|
4160 |
|
4161 |
-
public function prisjaktAttribute()
|
4162 |
-
|
4163 |
-
|
4164 |
-
"
|
4165 |
-
"
|
4166 |
-
"
|
4167 |
-
"
|
4168 |
-
"
|
4169 |
-
"
|
4170 |
-
"
|
4171 |
-
"
|
4172 |
-
"
|
4173 |
-
"
|
4174 |
-
"
|
|
|
4175 |
);
|
4176 |
return $attributes;
|
4177 |
}
|
4178 |
|
4179 |
-
public function bingAttribute()
|
4180 |
-
|
4181 |
-
|
4182 |
-
"
|
4183 |
-
"
|
4184 |
-
"
|
4185 |
-
"
|
4186 |
-
"
|
4187 |
-
"
|
4188 |
-
"
|
4189 |
-
"
|
4190 |
-
"
|
4191 |
-
"
|
4192 |
-
"
|
4193 |
-
"
|
4194 |
-
"
|
4195 |
-
"
|
4196 |
-
"
|
4197 |
-
"
|
4198 |
-
"
|
4199 |
-
"
|
4200 |
-
"
|
4201 |
-
"
|
4202 |
-
"
|
4203 |
-
"
|
4204 |
-
"
|
4205 |
-
"
|
4206 |
-
"
|
4207 |
-
"
|
4208 |
-
"
|
4209 |
-
"
|
4210 |
-
"
|
4211 |
-
"
|
4212 |
-
"
|
4213 |
-
"
|
4214 |
-
"
|
4215 |
-
"
|
4216 |
-
"
|
4217 |
-
"
|
4218 |
-
"
|
|
|
4219 |
);
|
4220 |
return $attributes;
|
4221 |
}
|
4222 |
|
4223 |
-
public function shopbotAttribute()
|
4224 |
-
|
4225 |
-
|
4226 |
-
"
|
4227 |
-
"
|
4228 |
-
"
|
4229 |
-
"
|
4230 |
-
"
|
4231 |
-
"
|
4232 |
-
"
|
4233 |
-
"
|
4234 |
-
"
|
4235 |
-
"
|
4236 |
-
"
|
4237 |
-
"
|
4238 |
-
"
|
4239 |
-
"
|
4240 |
-
"
|
4241 |
-
"
|
4242 |
-
"
|
4243 |
-
"
|
4244 |
-
"
|
|
|
4245 |
|
4246 |
);
|
4247 |
return $attributes;
|
4248 |
}
|
4249 |
|
4250 |
-
public function becomeAttribute()
|
4251 |
-
|
4252 |
-
|
4253 |
-
"
|
4254 |
-
"
|
4255 |
-
"
|
4256 |
-
"
|
4257 |
-
"
|
4258 |
-
"
|
4259 |
-
"
|
4260 |
-
"
|
4261 |
-
"
|
4262 |
-
"
|
4263 |
-
"
|
4264 |
-
"
|
4265 |
-
"
|
4266 |
-
"
|
4267 |
-
"
|
4268 |
-
"
|
4269 |
-
"Ship
|
4270 |
-
"
|
4271 |
-
"
|
4272 |
-
"
|
4273 |
-
"
|
4274 |
-
"
|
4275 |
-
"
|
4276 |
-
"
|
4277 |
-
"
|
4278 |
-
"
|
4279 |
-
"
|
4280 |
-
"
|
4281 |
-
"
|
4282 |
-
"
|
4283 |
-
"Page ID
|
4284 |
-
"
|
4285 |
-
"
|
4286 |
-
"
|
4287 |
-
"
|
4288 |
-
"
|
4289 |
-
"
|
4290 |
-
"
|
|
|
4291 |
|
4292 |
-
"---3"
|
4293 |
);
|
4294 |
return $attributes;
|
4295 |
}
|
4296 |
|
4297 |
-
public function connexityAttribute()
|
4298 |
-
|
4299 |
-
|
4300 |
-
"
|
4301 |
-
"
|
4302 |
-
"
|
4303 |
-
"
|
4304 |
-
"
|
4305 |
-
"
|
4306 |
-
"
|
4307 |
-
"
|
4308 |
-
"
|
4309 |
-
"
|
4310 |
-
"
|
4311 |
-
"
|
4312 |
-
"
|
4313 |
-
"
|
4314 |
-
"
|
4315 |
-
"Ship
|
4316 |
-
"
|
4317 |
-
"
|
4318 |
-
"
|
4319 |
-
"
|
4320 |
-
"
|
4321 |
-
"
|
4322 |
-
"
|
4323 |
-
"
|
4324 |
-
"
|
4325 |
-
"
|
4326 |
-
"
|
4327 |
-
"
|
4328 |
-
"
|
4329 |
-
"Page ID
|
4330 |
-
"
|
4331 |
-
"
|
4332 |
-
"
|
4333 |
-
"
|
4334 |
-
"
|
4335 |
-
"
|
4336 |
-
"
|
4337 |
-
"
|
|
|
4338 |
);
|
4339 |
return $attributes;
|
4340 |
}
|
25 |
|
26 |
}
|
27 |
|
28 |
+
public function merchants()
|
29 |
+
{
|
30 |
//
|
31 |
|
32 |
+
$feed_engine = array(
|
33 |
+
"--1" => "Custom Template",
|
34 |
+
"custom" => "Custom Feed",
|
35 |
+
"---1" => "",
|
36 |
);
|
37 |
|
38 |
+
$popular_template = array(
|
39 |
+
"--2" => "Popular Templates",
|
40 |
+
"google" => "Google Shopping",
|
41 |
+
"google_local" => "Google Local Product",
|
42 |
+
"google_local_inventory" => "Google Local Product Inventory",
|
43 |
+
"adwords" => "Google Adwords",
|
44 |
+
"facebook" => "Facebook",
|
45 |
+
"pinterest" => "Pinterest",
|
46 |
+
"---2" => "",
|
47 |
);
|
48 |
|
49 |
+
$others_temp = array(
|
50 |
+
"shopping" => "eBay (Shopping.com)",
|
51 |
+
"adroll" => "AdRoll",
|
52 |
+
"adform" => "AdForm",
|
53 |
+
"nextag" => "Nextag",
|
54 |
+
"pricegrabber" => "Price Grabber",
|
55 |
+
"polyvore" => "Polyvore",
|
56 |
+
"pricerunner" => "PriceRunner",
|
57 |
+
"kelkoo" => "Kelkoo",
|
58 |
+
"shopzilla" => "Shopzilla",
|
59 |
+
"shopmania" => "Shopmania",
|
60 |
+
"shopbot" => "Shopbot",
|
61 |
+
"bing" => "Bing",
|
62 |
+
"become" => "Become",
|
63 |
+
"connexity" => "Connexity",
|
64 |
|
65 |
+
"pricespy" => "PriceSpy",
|
66 |
+
"prisjakt" => "Prisjakt",
|
67 |
+
"twenga" => "Twenga",
|
68 |
+
"fruugo" => "Fruugo",
|
69 |
+
"fruugo.au" => "Fruugoaustralia.com",
|
70 |
+
"bonanza" => "Bonanza",
|
71 |
+
"bol" => "Bol.com",
|
72 |
+
"leguide" => "LeGuide",
|
73 |
+
"real" => "Real",
|
74 |
+
"crowdfox" => "Crowdfox",
|
75 |
+
"jet" => "Jet.com",
|
76 |
+
"wish" => "Wish.com",
|
77 |
+
"zap.co.il" => "Zap.co.il",
|
78 |
"myshopping.com.au" => "Myshopping.com.au",
|
79 |
+
"smartly.io" => "Smartly.io",
|
80 |
+
"stylight.com" => "Stylight.com",
|
81 |
+
"nextad" => "TheNextAd",
|
82 |
+
"skinflint.co.uk" => "SkinFlint.co.uk",
|
83 |
+
"yahoo_nfa" => "Yahoo NFA",
|
84 |
+
"hintaseuranta.fi" => "Hintaseuranta.fi",
|
85 |
+
"incurvy" => "Incurvy",
|
86 |
+
"kijiji.ca" => "Kijiji.ca",
|
87 |
+
"marktplaats.nl" => "Marktplaats.nl",
|
88 |
+
"rakuten" => "Rakuten",
|
89 |
+
"shopalike.fr" => "Shopalike.fr",
|
90 |
+
"spartoo.fi" => "Spartoo.fi",
|
91 |
+
"webmarchand" => "Webmarchand",
|
92 |
+
"fashiola" => "Fashiola",
|
93 |
+
"vergelijk_comparer" => "Vergelijk.be & Comparer.be",
|
94 |
+
"kieskeurig.nl" => "Kieskeurig.nl",
|
95 |
+
"beslist.nl" => "Beslist.nl",
|
96 |
+
"billiger.de" => "Billiger.de",
|
97 |
+
"vertaa.fi" => "Vertaa.fi",
|
98 |
+
"cdiscount.fr" => "CDiscount.fr",
|
99 |
+
"fnac.fr" => "Fnac.fr",
|
100 |
+
"idealo" => "Idealo",
|
101 |
+
"miinto.nl" => "Miinto.nl",
|
102 |
+
'fyndiq.se' => "Fyndiq.se",
|
103 |
+
"criteo" => "Criteo",
|
104 |
+
// "avantlink" => "Avantlink",
|
105 |
+
'shareasale' => "ShareASale",
|
106 |
+
"walmart" => "Walmart",
|
107 |
+
"modina.de" => "Modina.de",
|
108 |
+
"yandex_csv" => "Yandex (CSV)",
|
109 |
);
|
110 |
|
111 |
asort($others_temp);
|
112 |
+
$newTemplate = array();
|
113 |
+
$newTemplate['--3'] = "Templates";
|
114 |
foreach ($others_temp as $key => $val) {
|
115 |
// echo "$key = $val <br>";
|
116 |
+
$newTemplate[$key] = $val;
|
117 |
}
|
118 |
+
$newTemplate['---3'] = "";
|
119 |
|
120 |
|
121 |
+
$amazon_template = array(
|
122 |
+
"--4" => "Amazon Template",
|
123 |
+
"amazon_clothing" => "Clothing",
|
124 |
+
"amazon_clothing" => "Luggage & Travel Accessories",
|
125 |
+
"amazon_lighting" => "Lighting",
|
126 |
+
"amazon_wireless" => "Cell Phones & Accessories (Wireless)",
|
127 |
+
"amazon_autoaccessory" => "Automotive & Powersports (Parts & Accessories)",
|
128 |
+
"amazon_tiresandwheels" => "Automotive & Powersports (Tires & Wheels)",
|
129 |
+
"amazon_home" => "Home, Home Decor, Kitchen & Garden",
|
130 |
+
"amazon_home" => "Furniture",
|
131 |
+
"amazon_health" => "Health",
|
132 |
+
"amazon_baby" => "Baby",
|
133 |
+
"amazon_BookLoader" => "Book",
|
134 |
+
"amazon_CameraAndPhoto" => "Camera And Photo",
|
135 |
+
"amazon_foodandbeverages" => "Grocery & Gourmet Food",
|
136 |
+
"amazon_computers" => "Computers",
|
137 |
+
"amazon_ConsumerElectronics" => "Consumer Electronics",
|
138 |
+
"amazon_entertainmentcollectibles" => "Entertainment Collectibles",
|
139 |
+
"amazon_homeimprovement" => "Home Improvement",
|
140 |
+
"amazon_office" => "Office",
|
141 |
+
"amazon_petsupplies" => "Pet Supplies",
|
142 |
+
"amazon_sportsmemorabilia" => "Sports Memorabilia",
|
143 |
+
"amazon_shoes" => "Shoes",
|
144 |
+
"amazon_sports" => "Sports",
|
145 |
+
"amazon_toys" => "Toys",
|
146 |
+
"amazon_TradingCards" => "Trading Cards",
|
147 |
+
"amazon_watches" => "Watches",
|
148 |
+
"amazon_jewelry" => "Jewelry",
|
149 |
+
"amazon_jewelry_fr" => "Jewelry French",
|
150 |
+
"---4" => "",
|
151 |
);
|
152 |
|
153 |
+
return array_merge($feed_engine, $popular_template, $newTemplate, $amazon_template);
|
154 |
}
|
155 |
|
156 |
|
162 |
* @return string
|
163 |
*/
|
164 |
|
165 |
+
public function getAttributeDropDown($merchant, $selected = "")
|
166 |
{
|
167 |
$str = "<option></option>";
|
168 |
+
$method = $merchant . "Attribute";
|
169 |
foreach ($this->$method() as $key => $value) {
|
170 |
if (substr($key, 0, 2) == "--") {
|
171 |
$str .= "<optgroup label='$value'>";
|
183 |
}
|
184 |
|
185 |
|
186 |
+
public function amazon_foodandbeverages_first_row()
|
187 |
+
{
|
188 |
+
$row = array("TemplateType=foodandbeverages", "Version=2016.1108", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
189 |
return $row;
|
190 |
}
|
191 |
+
|
192 |
+
public function amazon_health_first_row()
|
193 |
+
{
|
194 |
+
$row = array("TemplateType=health", "Version=2016.0825", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
195 |
return $row;
|
196 |
}
|
197 |
+
|
198 |
+
public function amazon_home_first_row()
|
199 |
+
{
|
200 |
+
$row = array("TemplateType=home", "Version=2016.0909", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "", "", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
201 |
return $row;
|
202 |
}
|
203 |
+
|
204 |
+
public function amazon_clothing_first_row()
|
205 |
+
{
|
206 |
+
$row = array("TemplateType=clothing", "Version=2016.0721", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
207 |
return $row;
|
208 |
}
|
209 |
|
210 |
+
public function amazon_jewelry_first_row()
|
211 |
+
{
|
212 |
+
$row = array("TemplateType=jewelry", "Version=2016.1122", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
213 |
return $row;
|
214 |
}
|
215 |
|
216 |
|
217 |
+
public function amazon_lighting_first_row()
|
218 |
+
{
|
219 |
+
$row = array("TemplateType=lighting", "Version=2016.1123", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
220 |
return $row;
|
221 |
}
|
222 |
|
223 |
+
public function amazon_baby_first_row()
|
224 |
+
{
|
225 |
+
$row = array("TemplateType=Baby", "Version=2015.1207", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "", "Offer - These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions - These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "", "", "", "", "", "", "Discovery - These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "", "Images - These attributes provide links to images for a product", "", "", "", "", "Fulfillment - Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation - Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance - Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
226 |
return $row;
|
227 |
}
|
228 |
+
|
229 |
+
public function amazon_wireless_first_row()
|
230 |
+
{
|
231 |
+
$row = array("TemplateType=wireless", "Version=2016.0822", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
232 |
return $row;
|
233 |
}
|
234 |
|
235 |
+
public function amazon_autoaccessory_first_row()
|
236 |
+
{
|
237 |
+
$row = array("TemplateType=autoaccessory", "Version=2016.0909", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
238 |
return $row;
|
239 |
}
|
240 |
+
|
241 |
+
public function amazon_tiresandwheels_first_row()
|
242 |
+
{
|
243 |
+
$row = array("TemplateType=tiresandwheels", "Version=2016.1121", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
244 |
return $row;
|
245 |
}
|
246 |
+
|
247 |
+
public function amazon_BookLoader_first_row()
|
248 |
+
{
|
249 |
+
$row = array("TemplateType=BookLoader", "Version=2016.0114", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "Offer - These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "Discovery - These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "Images - These attributes provide links to images for a product", "", "", "", "", "", "", "Fulfillment - Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
250 |
return $row;
|
251 |
}
|
252 |
|
253 |
+
public function amazon_CameraAndPhoto_first_row()
|
254 |
+
{
|
255 |
+
$row = array("TemplateType=CameraAndPhoto", "Version=2015.1203", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "", "Offer - These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions - These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "Discovery - These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "Images - These attributes provide links to images for a product", "", "", "", "Fulfillment - Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Compliance - Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
256 |
return $row;
|
257 |
}
|
258 |
+
|
259 |
+
public function amazon_computers_first_row()
|
260 |
+
{
|
261 |
+
$row = array("TemplateType=computers", "Version=2016.0719", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
262 |
return $row;
|
263 |
}
|
264 |
+
|
265 |
+
public function amazon_ConsumerElectronics_first_row()
|
266 |
+
{
|
267 |
+
$row = array("TemplateType=ConsumerElectronics", "Version=2015.1224", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "", "Offer - These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions - These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "Discovery - These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "Images - These attributes provide links to images for a product", "", "", "", "Fulfillment - Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Compliance - Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
268 |
return $row;
|
269 |
}
|
270 |
+
|
271 |
+
public function amazon_entertainmentcollectibles_first_row()
|
272 |
+
{
|
273 |
+
$row = array("TemplateType=entertainmentcollectibles", "Version=2016.0719", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
274 |
return $row;
|
275 |
}
|
276 |
+
|
277 |
+
public function amazon_homeimprovement_first_row()
|
278 |
+
{
|
279 |
+
$row = array("TemplateType=homeimprovement", "Version=2016.0909", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
280 |
return $row;
|
281 |
}
|
282 |
+
|
283 |
+
public function amazon_musicalinstruments_first_row()
|
284 |
+
{
|
285 |
+
$row = array("TemplateType=musicalinstruments", "Version=2016.0822", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
286 |
return $row;
|
287 |
}
|
288 |
+
|
289 |
+
public function amazon_office_first_row()
|
290 |
+
{
|
291 |
+
$row = array("TemplateType=office", "Version=2016.0822", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
292 |
return $row;
|
293 |
}
|
294 |
+
|
295 |
+
public function amazon_outdoors_first_row()
|
296 |
+
{
|
297 |
+
$row = array("TemplateType=outdoors", "Version=2016.0721", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
298 |
return $row;
|
299 |
}
|
300 |
+
|
301 |
+
public function amazon_petsupplies_first_row()
|
302 |
+
{
|
303 |
+
$row = array("TemplateType=petsupplies", "Version=2016.0617", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
304 |
return $row;
|
305 |
}
|
306 |
+
|
307 |
+
public function amazon_shoes_first_row()
|
308 |
+
{
|
309 |
+
$row = array("TemplateType=shoes", "Version=2016.0721", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
310 |
return $row;
|
311 |
}
|
312 |
+
|
313 |
+
public function amazon_sports_first_row()
|
314 |
+
{
|
315 |
+
$row = array("TemplateType=sports", "Version=2016.0923", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Variation-Populate these attributes if your product is available in different variations (for example color or wattage)", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
316 |
return $row;
|
317 |
}
|
318 |
+
|
319 |
+
public function amazon_sportsmemorabilia_first_row()
|
320 |
+
{
|
321 |
+
$row = array("TemplateType=sportsmemorabilia", "Version=2015.1203", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "",);
|
322 |
return $row;
|
323 |
}
|
324 |
+
|
325 |
+
public function amazon_toys_first_row()
|
326 |
+
{
|
327 |
+
$row = array("TemplateType=toys", "Version=2016.1109", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
328 |
return $row;
|
329 |
}
|
330 |
+
|
331 |
+
public function amazon_TradingCards_first_row()
|
332 |
+
{
|
333 |
+
$row = array("TemplateType=TradingCards", "Version=2016.0213", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "Offer - These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions - These attributes specify the size and weight of a product", "", "", "", "", "", "", "", "", "Discovery - These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Images - These attributes provide links to images for a product", "", "", "", "", "", "", "Fulfillment - Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
334 |
return $row;
|
335 |
}
|
336 |
+
|
337 |
+
public function amazon_watches_first_row()
|
338 |
+
{
|
339 |
+
$row = array("TemplateType=watches", "Version=2016.0719", "The top 3 rows are for Amazon.com use only. Do not modify or delete the top 3 rows.", "", "", "", "", "", "", "", "Offer-These attributes are required to make your item buyable for customers on the site", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-These attributes specify the size and weight of a product", "", "Discovery-These attributes have an effect on how customers can find your product on the site using browse or search", "", "", "", "", "", "", "", "", "", "", "", "", "", "Images-These attributes provide links to images for a product", "", "", "", "Fulfillment-Use these columns to provide fulfillment-related information for either Amazon-fulfilled (FBA) or seller-fulfilled orders.", "", "", "", "", "", "", "Compliance-Attributes used to comply with consumer laws in the country or region where the item is sold", "", "", "Ungrouped - These attributes create rich product listings for your buyers.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
340 |
return $row;
|
341 |
}
|
342 |
|
343 |
+
public function amazon_watchesAttributes()
|
344 |
+
{
|
345 |
$attributes = array(
|
346 |
"item_sku" => "Seller SKU",
|
347 |
"external_product_id" => "Product ID",
|
442 |
);
|
443 |
return $attributes;
|
444 |
}
|
445 |
+
|
446 |
+
public function amazon_TradingCardsAttributes()
|
447 |
+
{
|
448 |
$attributes = array(
|
449 |
"item_sku" => "Seller SKU",
|
450 |
"update_delete" => "Update Delete",
|
536 |
);
|
537 |
return $attributes;
|
538 |
}
|
539 |
+
|
540 |
+
public function amazon_toysAttributes()
|
541 |
+
{
|
542 |
$attributes = array(
|
543 |
"item_sku" => "Seller SKU",
|
544 |
"external_product_id" => "Product ID",
|
642 |
);
|
643 |
return $attributes;
|
644 |
}
|
645 |
+
|
646 |
+
public function amazon_sportsmemorabiliaAttributes()
|
647 |
+
{
|
648 |
$attributes = array(
|
649 |
"update_delete" => "Update Delete",
|
650 |
"item_sku" => "Seller SKU",
|
707 |
);
|
708 |
return $attributes;
|
709 |
}
|
710 |
+
|
711 |
+
public function amazon_sportsAttributes()
|
712 |
+
{
|
713 |
$attributes = array(
|
714 |
"item_sku" => "Seller SKU",
|
715 |
"external_product_id" => "Product ID",
|
937 |
);
|
938 |
return $attributes;
|
939 |
}
|
940 |
+
|
941 |
+
public function amazon_shoesAttributes()
|
942 |
+
{
|
943 |
$attributes = array(
|
944 |
"item_sku" => "Seller SKU",
|
945 |
"item_name" => "Product Name",
|
1065 |
);
|
1066 |
return $attributes;
|
1067 |
}
|
1068 |
+
|
1069 |
+
public function amazon_petsuppliesAttributes()
|
1070 |
+
{
|
1071 |
$attributes = array(
|
1072 |
"item_sku" => "Seller SKU",
|
1073 |
"external_product_id" => "Product ID",
|
1186 |
);
|
1187 |
return $attributes;
|
1188 |
}
|
1189 |
+
|
1190 |
+
public function amazon_outdoorsAttributes()
|
1191 |
+
{
|
1192 |
$attributes = array(
|
1193 |
"item_sku" => "Seller SKU",
|
1194 |
"external_product_id" => "Product ID",
|
1399 |
);
|
1400 |
return $attributes;
|
1401 |
}
|
1402 |
+
|
1403 |
+
public function amazon_officeAttributes()
|
1404 |
+
{
|
1405 |
$attributes = array(
|
1406 |
"item_sku" => "Seller SKU",
|
1407 |
"external_product_id" => "Product ID",
|
1500 |
);
|
1501 |
return $attributes;
|
1502 |
}
|
1503 |
+
|
1504 |
+
public function amazon_musicalinstrumentsAttributes()
|
1505 |
+
{
|
1506 |
$attributes = array(
|
1507 |
"item_sku" => "Seller SKU",
|
1508 |
"external_product_id" => "Product ID",
|
1630 |
);
|
1631 |
return $attributes;
|
1632 |
}
|
1633 |
+
|
1634 |
+
public function amazon_homeimprovementAttributes()
|
1635 |
+
{
|
1636 |
$attributes = array(
|
1637 |
"item_sku" => "Seller SKU",
|
1638 |
"external_product_id" => "Product ID",
|
1835 |
);
|
1836 |
return $attributes;
|
1837 |
}
|
1838 |
+
|
1839 |
+
public function amazon_entertainmentcollectiblesAttributes()
|
1840 |
+
{
|
1841 |
$attributes = array(
|
1842 |
"item_name" => "Product Name",
|
1843 |
"item_type" => "Category (item-type)",
|
1916 |
);
|
1917 |
return $attributes;
|
1918 |
}
|
1919 |
+
|
1920 |
+
public function amazon_ConsumerElectronicsAttributes()
|
1921 |
+
{
|
1922 |
$attributes = array(
|
1923 |
"item_sku" => "Seller SKU",
|
1924 |
"external_product_id" => "Product ID",
|
2054 |
);
|
2055 |
return $attributes;
|
2056 |
}
|
2057 |
+
|
2058 |
+
public function amazon_computersAttributes()
|
2059 |
+
{
|
2060 |
$attributes = array(
|
2061 |
"item_sku" => "Seller SKU",
|
2062 |
"external_product_id" => "Product ID",
|
2218 |
);
|
2219 |
return $attributes;
|
2220 |
}
|
2221 |
+
|
2222 |
+
public function amazon_CameraAndPhotoAttributes()
|
2223 |
+
{
|
2224 |
$attributes = array(
|
2225 |
"item_sku" => "Seller SKU",
|
2226 |
"external_product_id" => "Product ID",
|
2357 |
return $attributes;
|
2358 |
}
|
2359 |
|
2360 |
+
public function amazon_BookLoaderAttributes()
|
2361 |
+
{
|
2362 |
$attributes = array(
|
2363 |
"item_sku" => "Seller SKU",
|
2364 |
"external_product_id" => "Product ID",
|
2456 |
);
|
2457 |
return $attributes;
|
2458 |
}
|
2459 |
+
|
2460 |
+
public function amazon_tiresandwheelsAttributes()
|
2461 |
+
{
|
2462 |
$attributes = array(
|
2463 |
"item_sku" => "Seller SKU",
|
2464 |
"external_product_id" => "Product ID",
|
2553 |
);
|
2554 |
return $attributes;
|
2555 |
}
|
2556 |
+
|
2557 |
+
public function amazon_autoaccessoryAttributes()
|
2558 |
+
{
|
2559 |
$attributes = array(
|
2560 |
"item_sku" => "Seller SKU",
|
2561 |
"external_product_id" => "Product ID",
|
2676 |
return $attributes;
|
2677 |
}
|
2678 |
|
2679 |
+
public function amazon_wirelessAttributes()
|
2680 |
+
{
|
2681 |
$attributes = array(
|
2682 |
"item_sku" => "Seller SKU",
|
2683 |
"item_name" => "Title",
|
2771 |
);
|
2772 |
return $attributes;
|
2773 |
}
|
2774 |
+
|
2775 |
+
public function amazon_babyAttributes()
|
2776 |
+
{
|
2777 |
$attributes = array(
|
2778 |
"item_sku" => "Seller SKU",
|
2779 |
"item_name" => "Title",
|
2893 |
);
|
2894 |
return $attributes;
|
2895 |
}
|
2896 |
+
|
2897 |
+
public function amazon_healthAttributes()
|
2898 |
+
{
|
2899 |
+
$attributes = array(
|
2900 |
"item_sku" => "Seller SKU",
|
2901 |
"item_name" => "Product Name",
|
2902 |
"external_product_id" => "Product ID",
|
2999 |
);
|
3000 |
return $attributes;
|
3001 |
}
|
3002 |
+
|
3003 |
+
public function amazon_foodandbeveragesAttributes()
|
3004 |
+
{
|
3005 |
+
$attributes = array(
|
3006 |
"item_sku" => "Seller SKU",
|
3007 |
"external_product_id" => "Product ID",
|
3008 |
"external_product_id_type" => "Product ID Type",
|
3103 |
);
|
3104 |
return $attributes;
|
3105 |
}
|
3106 |
+
|
3107 |
+
public function amazon_homeAttributes()
|
3108 |
+
{
|
3109 |
+
$attributes = array(
|
3110 |
"item_sku" => "Seller SKU",
|
3111 |
"external_product_id" => "Product ID",
|
3112 |
"external_product_id_type" => "Product ID Type",
|
3259 |
);
|
3260 |
return $attributes;
|
3261 |
}
|
3262 |
+
|
3263 |
+
public function amazon_jewelryAttributes()
|
3264 |
+
{
|
3265 |
+
$attributes = array(
|
3266 |
"item_sku" => "Seller SKU",
|
3267 |
"item_name" => "Title",
|
3268 |
"manufacturer" => "Manufacturer",
|
3399 |
return $attributes;
|
3400 |
}
|
3401 |
|
3402 |
+
public function amazon_jewelry_fr_first_row()
|
3403 |
+
{
|
3404 |
+
$row = array("TemplateType=jewelry", "Version=2017.0302", "Les 3 lignes supérieures sont réservées à Amazon.com. Ne pas modifier ou supprimer les 3 lignes supérieures.", "", "", "", "", "", "", "", "Offre-Informations sur l'offre : ces attributs sont requis pour que votre article puisse être acheté par les clients sur le site.", "", "", "", "", "", "", "", "", "", "", "", "", "Dimensions-Dimensions du produit : ces attributs spécifient la taille et le poids d'un produit.", "", "", "", "", "", "", "Découverte d'article-Informations de découverte d'article : ces attributs ont un effet sur la manière dont les clients peuvent trouver votre produit sur le site à l'aide du navigateur ou de la fonction de recherche.", "", "", "", "", "", "", "", "", "", "Images-Informations d'image : voir l'onglet Instructions sur l'image pour plus de détails.", "", "", "", "", "", "", "", "", "", "Expédition-Ces colonnes sont destinées à toute information concernant l’expédition de commandes traitées par Expédié par Amazon ou par le vendeur.", "", "", "", "", "", "", "", "", "Variation-Informations de variation : diffusez ces attributs si votre produit est disponible en différents modèles (par exemple, couleur ou puissance en watts).", "", "", "", "Dégroupé - Ces attributs créer des listes de produits riches pour vos acheteurs.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",);
|
3405 |
return $row;
|
3406 |
}
|
3407 |
+
|
3408 |
+
public function amazon_jewelry_frAttributes()
|
3409 |
+
{
|
3410 |
+
$attributes = array(
|
3411 |
+
"item_sku" => "SKU du vendeur [item_sku]",
|
3412 |
+
"item_name" => "Titre [item_name]",
|
3413 |
+
"manufacturer" => "Fabricant [manufacturer]",
|
3414 |
+
"feed_product_type" => "Type de produit [feed_product_type]",
|
3415 |
+
"brand_name" => "Marque [brand_name]",
|
3416 |
+
"external_product_id" => "ID du produit [external_product_id]",
|
3417 |
+
"external_product_id_type" => "Type d'ID du produit [external_product_id_type]",
|
3418 |
+
"product_description" => "Description du produit [product_description]",
|
3419 |
+
"update_delete" => "Mettre à jour Supprimer [update_delete]",
|
3420 |
+
"part_number" => "Numéro du modèle [part_number]",
|
3421 |
+
"standard_price" => "Prix standard [standard_price]",
|
3422 |
+
"quantity" => "quantité [quantity]",
|
3423 |
+
"currency" => "Devise [currency]",
|
3424 |
+
"sale_price" => "Prix réduit [sale_price]",
|
3425 |
+
"sale_from_date" => "Date de début de la remise [sale_from_date]",
|
3426 |
+
"sale_end_date" => "Date de fin de la remise [sale_end_date]",
|
3427 |
+
"fulfillment_latency" => "Délai de traitement [fulfillment_latency]",
|
3428 |
+
"restock_date" => "Date de remise en stock [restock_date]",
|
3429 |
+
"offering_can_be_gift_messaged" => "Message cadeau disponible [offering_can_be_gift_messaged]",
|
3430 |
+
"offering_can_be_giftwrapped" => "Emballage cadeau disponible [offering_can_be_giftwrapped]",
|
3431 |
+
"missing_keyset_reason" => "Modification de l'identifiant produit [missing_keyset_reason]",
|
3432 |
+
"merchant_shipping_group_name" => "Régions d’expéditions du vendeur [merchant_shipping_group_name]",
|
3433 |
+
"product_tax_code" => "Code d'imposition du produit [product_tax_code]",
|
3434 |
+
"website_shipping_weight" => "Poids de l'envoi [website_shipping_weight]",
|
3435 |
+
"website_shipping_weight_unit_of_measure" => "Unité de mesure du poids de l’expédition du site internet [website_shipping_weight_unit_of_measure]",
|
3436 |
+
"item_display_diameter" => "Diamètre du produit [item_display_diameter]",
|
3437 |
+
"item_display_length" => "Longueur du produit [item_display_length]",
|
3438 |
+
"item_display_height" => "Hauteur [item_display_height]",
|
3439 |
+
"item_display_width" => "Largeur [item_display_width]",
|
3440 |
+
"display_dimensions_unit_of_measure" => "Unité de mesure des dimensions de l’affichage [display_dimensions_unit_of_measure]",
|
3441 |
+
"target_audience_base1" => "Cible1 [target_audience_base1]",
|
3442 |
+
"target_audience_base2" => "Cible2 [target_audience_base2]",
|
3443 |
+
"recommended_browse_nodes" => "Catégorie de produits (Code arborescence recommandé) [recommended_browse_nodes]",
|
3444 |
+
"bullet_point1" => "Caractéristiques clés du produit1 [bullet_point1]",
|
3445 |
+
"bullet_point2" => "Caractéristiques clés du produit2 [bullet_point2]",
|
3446 |
+
"bullet_point3" => "Caractéristiques clés du produit3 [bullet_point3]",
|
3447 |
+
"generic_keywords" => "Termes de recherche [generic_keywords]",
|
3448 |
+
"platinum_keywords1" => "Mots-clés platinum1 [platinum_keywords1]",
|
3449 |
+
"platinum_keywords2" => "Mots-clés platinum2 [platinum_keywords2]",
|
3450 |
+
"platinum_keywords3" => "Mots-clés platinum3 [platinum_keywords3]",
|
3451 |
+
"main_image_url" => "URL de l'image principale [main_image_url]",
|
3452 |
+
"swatch_image_url" => "URL d'une image swap [swatch_image_url]",
|
3453 |
+
"other_image_url1" => "URL d'une autre image1 [other_image_url1]",
|
3454 |
+
"other_image_url2" => "URL d'une autre image2 [other_image_url2]",
|
3455 |
+
"other_image_url3" => "URL d'une autre image3 [other_image_url3]",
|
3456 |
+
"other_image_url4" => "URL d'une autre image4 [other_image_url4]",
|
3457 |
+
"other_image_url5" => "URL d'une autre image5 [other_image_url5]",
|
3458 |
+
"other_image_url6" => "URL d'une autre image6 [other_image_url6]",
|
3459 |
+
"other_image_url7" => "URL d'une autre image7 [other_image_url7]",
|
3460 |
+
"other_image_url8" => "URL d'une autre image8 [other_image_url8]",
|
3461 |
+
"fulfillment_center_id" => "ID du centre de distribution [fulfillment_center_id]",
|
3462 |
+
"package_height" => "Hauteur paquet [package_height]",
|
3463 |
+
"package_width_unit_of_measure" => "Unité de mesure de la largeur du paquet [package_width_unit_of_measure]",
|
3464 |
+
"package_width" => "largeur du colis [package_width]",
|
3465 |
+
"package_length" => "Longueur paquet [package_length]",
|
3466 |
+
"package_length_unit_of_measure" => "Unité de mesure longueur [package_length_unit_of_measure]",
|
3467 |
+
"package_weight" => "Poids du Colis [package_weight]",
|
3468 |
+
"package_weight_unit_of_measure" => "Unite de mesure Poids [package_weight_unit_of_measure]",
|
3469 |
+
"package_height_unit_of_measure" => "Unité de mesure du poids du colis. [package_height_unit_of_measure]",
|
3470 |
+
"parent_child" => "Parenté [parent_child]",
|
3471 |
+
"parent_sku" => "SKU Parent [parent_sku]",
|
3472 |
+
"relationship_type" => "Type de relation [relationship_type]",
|
3473 |
+
"variation_theme" => "Thème de la variation [variation_theme]",
|
3474 |
+
"model" => "Numéro de modèle [model]",
|
3475 |
+
"total_metal_weight" => "Poids total du métal [total_metal_weight]",
|
3476 |
+
"total_metal_weight_unit_of_measure" => "Unité de mesure du poids total du métal [total_metal_weight_unit_of_measure]",
|
3477 |
+
"total_diamond_weight" => "Poids total du diamant [total_diamond_weight]",
|
3478 |
+
"total_gem_weight" => "poids total de la gemme [total_gem_weight]",
|
3479 |
+
"material_type" => "Type de matériau [material_type]",
|
3480 |
+
"metal_type" => "Type de métal [metal_type]",
|
3481 |
+
"metal_stamp" => "Cachet (Poinçon) métal [metal_stamp]",
|
3482 |
+
"setting_type" => "type de sertissage [setting_type]",
|
3483 |
+
"number_of_stones" => "Nombre de pierres [number_of_stones]",
|
3484 |
+
"clasp_type" => "type de fermoir [clasp_type]",
|
3485 |
+
"chain_type" => "type de chaine [chain_type]",
|
3486 |
+
"back_finding" => "Type de fermeture de la boucle d'oreilles [back_finding]",
|
3487 |
+
"certificate_type" => "type de certificat [certificate_type]",
|
3488 |
+
"warranty_type" => "Type de garantie [warranty_type]",
|
3489 |
+
"warranty_description" => "Description garantie [warranty_description]",
|
3490 |
+
"gem_type1" => "type de gemme1 [gem_type1]",
|
3491 |
+
"gem_type2" => "type de gemme2 [gem_type2]",
|
3492 |
+
"gem_type3" => "type de gemme3 [gem_type3]",
|
3493 |
+
"stone_cut1" => "Coupe (taille) de la pierre1 [stone_cut1]",
|
3494 |
+
"stone_cut2" => "Coupe (taille) de la pierre2 [stone_cut2]",
|
3495 |
+
"stone_cut3" => "Coupe (taille) de la pierre3 [stone_cut3]",
|
3496 |
+
"stone_color1" => "Couleur de la pierre1 [stone_color1]",
|
3497 |
+
"stone_color2" => "Couleur de la pierre2 [stone_color2]",
|
3498 |
+
"stone_color3" => "Couleur de la pierre3 [stone_color3]",
|
3499 |
+
"stone_clarity1" => "Clarté de la pierre1 [stone_clarity1]",
|
3500 |
+
"stone_clarity2" => "Clarté de la pierre2 [stone_clarity2]",
|
3501 |
+
"stone_clarity3" => "Clarté de la pierre3 [stone_clarity3]",
|
3502 |
+
"stone_shape1" => "Forme de la pierre1 [stone_shape1]",
|
3503 |
+
"stone_shape2" => "Forme de la pierre2 [stone_shape2]",
|
3504 |
+
"stone_shape3" => "Forme de la pierre3 [stone_shape3]",
|
3505 |
+
"stone_weight1" => "Poids de la pierre1 [stone_weight1]",
|
3506 |
+
"stone_weight2" => "Poids de la pierre2 [stone_weight2]",
|
3507 |
+
"stone_weight3" => "Poids de la pierre3 [stone_weight3]",
|
3508 |
+
"is_lab_created1" => "a été créé dans un laboratoire1 [is_lab_created1]",
|
3509 |
+
"is_lab_created2" => "a été créé dans un laboratoire2 [is_lab_created2]",
|
3510 |
+
"is_lab_created3" => "a été créé dans un laboratoire3 [is_lab_created3]",
|
3511 |
+
"stone_symmetry1" => "Symétrie de la pierre1 [stone_symmetry1]",
|
3512 |
+
"stone_symmetry2" => "Symétrie de la pierre2 [stone_symmetry2]",
|
3513 |
+
"stone_symmetry3" => "Symétrie de la pierre3 [stone_symmetry3]",
|
3514 |
+
"stone_polish1" => "Brillance/Polissage de la pierre1 [stone_polish1]",
|
3515 |
+
"stone_polish2" => "Brillance/Polissage de la pierre2 [stone_polish2]",
|
3516 |
+
"stone_polish3" => "Brillance/Polissage de la pierre3 [stone_polish3]",
|
3517 |
+
"pearl_type" => "type de perle [pearl_type]",
|
3518 |
+
"pearl_minimum_color" => "Couleur de la perle [pearl_minimum_color]",
|
3519 |
+
"pearl_lustre" => "Lustre de la perle [pearl_lustre]",
|
3520 |
+
"pearl_shape" => "Forme de la perle [pearl_shape]",
|
3521 |
+
"pearl_uniformity" => "Uniformité de la perle [pearl_uniformity]",
|
3522 |
+
"pearl_surface_blemishes" => "Défauts superficiels de la perle [pearl_surface_blemishes]",
|
3523 |
+
"pearl_stringing_method" => "Technique d'enfilage de perles [pearl_stringing_method]",
|
3524 |
+
"size_per_pearl" => "taille par perle [size_per_pearl]",
|
3525 |
+
"number_of_pearls" => "Nombre de perles [number_of_pearls]",
|
3526 |
+
"theme" => "Thème [theme]",
|
3527 |
+
"style_name" => "Style [style_name]",
|
3528 |
+
"model_name" => "Model Name [model_name]",
|
3529 |
+
"item_shape" => "Type de produit [item_shape]",
|
3530 |
+
"color_name" => "Color [color_name]",
|
3531 |
+
"color_map" => "couleur standardiséee [color_map]",
|
3532 |
+
"ring_size" => "Taille de la Bague [ring_size]",
|
3533 |
+
"is_resizable" => "est ajustable [is_resizable]",
|
3534 |
+
"ring_sizing_lower_range" => "taille maximale en cas d'ajustement [ring_sizing_lower_range]",
|
3535 |
+
"ring_sizing_upper_range" => "taille minimale en cas d'ajustement [ring_sizing_upper_range]",
|
3536 |
+
"occasion_type1" => "Occasion1 [occasion_type1]",
|
3537 |
+
"occasion_type2" => "Occasion2 [occasion_type2]",
|
3538 |
+
"occasion_type3" => "Occasion3 [occasion_type3]",
|
3539 |
+
"occasion_type4" => "Occasion4 [occasion_type4]",
|
3540 |
+
"occasion_type5" => "Occasion5 [occasion_type5]",
|
3541 |
+
"occasion_type6" => "Occasion6 [occasion_type6]",
|
3542 |
+
"occasion_type7" => "Occasion7 [occasion_type7]",
|
3543 |
+
"occasion_type8" => "Occasion8 [occasion_type8]",
|
3544 |
+
"occasion_type9" => "Occasion9 [occasion_type9]",
|
3545 |
+
"occasion_type10" => "Occasion10 [occasion_type10]",
|
3546 |
+
"occasion_type11" => "Occasion11 [occasion_type11]",
|
3547 |
+
"occasion_type12" => "Occasion12 [occasion_type12]",
|
3548 |
+
"occasion_type13" => "Occasion13 [occasion_type13]",
|
3549 |
+
"occasion_type14" => "Occasion14 [occasion_type14]",
|
3550 |
+
"occasion_type15" => "Occasion15 [occasion_type15]",
|
3551 |
+
"occasion_type16" => "Occasion16 [occasion_type16]",
|
3552 |
+
"occasion_type17" => "Occasion17 [occasion_type17]",
|
3553 |
+
"occasion_type18" => "Occasion18 [occasion_type18]",
|
3554 |
+
"occasion_type19" => "Occasion19 [occasion_type19]",
|
3555 |
+
"occasion_type20" => "Occasion20 [occasion_type20]",
|
3556 |
+
"occasion_type21" => "Occasion21 [occasion_type21]",
|
3557 |
+
"occasion_type22" => "Occasion22 [occasion_type22]",
|
3558 |
+
"occasion_type23" => "Occasion23 [occasion_type23]",
|
3559 |
+
"occasion_type24" => "Occasion24 [occasion_type24]",
|
3560 |
+
"occasion_type25" => "Occasion25 [occasion_type25]",
|
3561 |
+
"occasion_type26" => "Occasion26 [occasion_type26]",
|
3562 |
+
"occasion_type27" => "Occasion27 [occasion_type27]",
|
3563 |
);
|
3564 |
return $attributes;
|
3565 |
}
|
3566 |
+
|
3567 |
+
public function amazon_lightingAttributes()
|
3568 |
+
{
|
3569 |
+
$attributes = array(
|
3570 |
"item_sku" => "Seller SKU",
|
3571 |
"external_product_id" => "Product ID",
|
3572 |
"external_product_id_type" => "Product ID Type",
|
3680 |
);
|
3681 |
return $attributes;
|
3682 |
}
|
3683 |
+
|
3684 |
+
public function amazon_clothingAttributes()
|
3685 |
+
{
|
3686 |
+
$attributes = array(
|
3687 |
"item_sku" => "Seller SKU",
|
3688 |
"item_name" => "Product Name",
|
3689 |
"external_product_id" => "Product ID",
|
3805 |
public function googleAttributes()
|
3806 |
{
|
3807 |
$attributes = array(
|
3808 |
+
"--1" => "Basic Information",
|
3809 |
+
"id" => "Product Id[id]",
|
3810 |
+
"title" => "Product Title[title]",
|
3811 |
+
"description" => "Product Description[description]",
|
3812 |
+
"link" => "Product URL[link]",
|
3813 |
+
"mobile_link" => "Product URL[mobile_link]",
|
3814 |
+
"product_type" => "Product Categories[product_type] ",
|
3815 |
+
"current_category" => "Google Product Category[google_product_category]",
|
3816 |
+
"image" => "Main Image[image_link]",
|
3817 |
+
"images" => "Comma Separated Images [additional_image_link]",
|
3818 |
+
"images_1" => "Additional Image 1 [additional_image_link]",
|
3819 |
+
"images_2" => "Additional Image 2 [additional_image_link]",
|
3820 |
+
"images_3" => "Additional Image 3 [additional_image_link]",
|
3821 |
+
"images_4" => "Additional Image 4 [additional_image_link]",
|
3822 |
+
"images_5" => "Additional Image 5 [additional_image_link]",
|
3823 |
+
"images_6" => "Additional Image 6 [additional_image_link]",
|
3824 |
+
"images_7" => "Additional Image 7 [additional_image_link]",
|
3825 |
+
"images_8" => "Additional Image 8 [additional_image_link]",
|
3826 |
+
"images_9" => "Additional Image 9 [additional_image_link]",
|
3827 |
+
"images_10" => "Additional Image 10 [additional_image_link]",
|
3828 |
+
"condition" => "Condition[condition]",
|
3829 |
+
"---1" => "",
|
3830 |
|
3831 |
+
"--2" => "Availability & Price",
|
3832 |
+
"availability" => "Stock Status[availability]",
|
3833 |
+
"availability_date" => "Availability Date[availability_date]",
|
3834 |
+
"cost_of_goods_sold" => "Cost of Goods Sold[cost_of_goods_sold]",
|
3835 |
+
"expiration_date" => "Expiration Date[expiration_date]",
|
3836 |
+
"inventory" => "Facebook Inventory[inventory]",
|
3837 |
+
"override" => "Facebook Override[override]",
|
3838 |
+
"price" => "Regular Price[price]",
|
3839 |
+
"sale_price" => "Sale Price[sale_price]",
|
3840 |
+
"sale_price_effective_date" => "Sale Price Effective Date[sale_price_effective_date]",
|
3841 |
+
"---2" => "",
|
3842 |
|
3843 |
+
"--3" => "Unique Product Identifiers",
|
3844 |
+
"brand" => "Manufacturer[brand]",
|
3845 |
+
"upc" => "GTIN[gtin]",
|
3846 |
+
"sku" => "MPN[mpn]",
|
3847 |
+
"identifier_exists" => "Identifier Exist[identifier_exists]",
|
3848 |
+
"---3" => "",
|
3849 |
|
3850 |
+
"--4" => "Detailed Product Attributes",
|
3851 |
+
"item_group_id" => "Item Group Id[item_group_id]",
|
3852 |
+
"color" => "Color[color]",
|
3853 |
+
"gender" => "Gender[gender]",
|
3854 |
+
"age_group" => "Age Group[age_group]",
|
3855 |
+
"material" => "Material[material]",
|
3856 |
+
"pattern" => "Pattern[pattern]",
|
3857 |
+
"size" => "Size of the item[size]",
|
3858 |
+
"size_type" => "Size Type[size_type]",
|
3859 |
+
"size_system" => "Size System[size_system]",
|
3860 |
+
"---4" => "",
|
3861 |
|
3862 |
+
"--5" => "Tax & Shipping",
|
3863 |
// "tax" => "Tax[tax]",
|
3864 |
+
"tax_country" => "Tax Country[tax_country]",
|
3865 |
+
"tax_region" => "Tax Region[tax_region]",
|
3866 |
+
"tax_rate" => "Tax Rate[tax_rate]",
|
3867 |
+
"tax_ship" => "Tax Ship[tax_ship]",
|
3868 |
+
"tax_category" => "Tax[tax_category]",
|
3869 |
+
"shipping_country" => "Shipping Country",
|
3870 |
+
"shipping_region" => "Shipping Region",
|
3871 |
+
"shipping_service" => "Shipping Service",
|
3872 |
+
"shipping_price" => "Shipping Price",
|
3873 |
+
"weight" => "Shipping Weight[shipping_weight]",
|
3874 |
+
"length" => "Shipping Length[shipping_length]",
|
3875 |
+
"width" => "Shipping Width[shipping_width]",
|
3876 |
+
"height" => "Shipping Height[shipping_height]",
|
3877 |
+
"shipping_label" => "Shipping Label[shipping_label]",
|
3878 |
+
"---5" => "",
|
3879 |
|
3880 |
+
"--6" => "Product Combinations",
|
3881 |
+
"multipack" => "Multipack[multipack]",
|
3882 |
+
"is_bundle" => "Is Bundle[is_bundle]",
|
3883 |
+
"---6" => "",
|
3884 |
|
3885 |
+
"--7" => "Adult Products",
|
3886 |
+
"adult" => "Adult[adult]",
|
3887 |
+
"---7" => "",
|
3888 |
|
3889 |
+
"--8" => "AdWord Attributes",
|
3890 |
+
"adwords_redirect" => "Adwords Redirect[adwords_redirect]",
|
3891 |
+
"---8" => "",
|
3892 |
|
3893 |
+
"--9" => "Custom Label Attributes",
|
3894 |
+
"custom_label_0" => "Custom label 0 [custom_label_0]",
|
3895 |
+
"custom_label_1" => "Custom label 1 [custom_label_1]",
|
3896 |
+
"custom_label_2" => "Custom label 2 [custom_label_2]",
|
3897 |
+
"custom_label_3" => "Custom label 3 [custom_label_3]",
|
3898 |
+
"custom_label_4" => "Custom label 4 [custom_label_4]",
|
3899 |
+
"---9" => "",
|
3900 |
|
3901 |
+
"--10" => "Additional Attributes",
|
3902 |
+
"excluded_destination" => "Excluded Destination[excluded_destination]",
|
3903 |
+
"included_destination" => "Included Destination[included_destination]",
|
3904 |
+
"expiration_date" => "Expiration Date [expiration_date]",
|
3905 |
+
"---10" => "",
|
3906 |
|
3907 |
+
"--11" => "Unit Prices (EU Countries and Switzerland Only)",
|
3908 |
+
"unit_pricing_measure" => "Unit Pricing Measure[unit_pricing_measure]",
|
3909 |
+
"unit_pricing_base_measure" => "Unit Pricing Base Measure[unit_pricing_base_measure]",
|
3910 |
+
"---11" => "",
|
3911 |
|
3912 |
+
"--12" => "Energy Labels",
|
3913 |
+
"energy_efficiency_class" => "Energy Efficiency Class[energy_efficiency_class]",
|
3914 |
+
"---12" => "",
|
3915 |
|
3916 |
+
"--13" => "Loyalty Points (Japan Only)",
|
3917 |
+
"loyalty_points" => "loyalty_points[loyalty_points]",
|
3918 |
+
"---13" => "",
|
3919 |
|
3920 |
+
"--14" => "Multiple Installments (Brazil Only)",
|
3921 |
+
"installment" => "Installment[installment]",
|
3922 |
+
"---14" => "",
|
3923 |
|
3924 |
+
"--15" => "Merchant Promotions Attribute",
|
3925 |
+
"promotion_id" => "Promotion Id[promotion_id]",
|
3926 |
+
"---15" => "",
|
3927 |
);
|
3928 |
|
3929 |
return $attributes;
|
3930 |
}
|
3931 |
|
3932 |
+
public function pricegrabberAttribute()
|
3933 |
+
{
|
3934 |
$attributes = array(
|
3935 |
+
"--1" => "Required Attributes",
|
3936 |
+
"Retsku" => "Retsku",
|
3937 |
+
"Product Title" => "Product Title",
|
3938 |
+
"Detailed Description" => "Detailed Description",
|
3939 |
+
"Categorization" => "Categorization",
|
3940 |
+
"Product URL" => "Product URL",
|
3941 |
+
"Primary Image URL" => "Primary Image URL",
|
3942 |
+
"Selling Price" => "Selling Price",
|
3943 |
+
"Regular Price" => "Regular Price",
|
3944 |
+
"Condition" => "Condition",
|
3945 |
+
"Availability" => "Availability",
|
3946 |
+
"Manufacturer Name" => "Manufacturer Name",
|
3947 |
+
"GTIN" => "GTIN (UPC / EAN / ISBN)",
|
3948 |
+
"Mature" => "Mature",
|
3949 |
+
"---1" => "",
|
3950 |
+
"--2" => "Additional Attributes",
|
3951 |
+
"Parent Retsku" => "Parent Retsku",
|
3952 |
+
"Merchant Categorization" => "Merchant Categorization",
|
3953 |
+
"Manufacturer Part Number" => "Manufacturer Part Number",
|
3954 |
+
"Additional Image URL 1" => "Additional Image URL 1",
|
3955 |
+
"Additional Image URL 2" => "Additional Image URL 2",
|
3956 |
+
"Additional Image URL 3" => "Additional Image URL 3",
|
3957 |
+
"Additional Image URL 4" => "Additional Image URL 4",
|
3958 |
+
"Additional Image URL 5" => "Additional Image URL 5",
|
3959 |
+
"Additional Image URL 6" => "Additional Image URL 6",
|
3960 |
+
"Additional Image URL 7" => "Additional Image URL 7",
|
3961 |
+
"Additional Image URL 8" => "Additional Image URL 8",
|
3962 |
+
"Additional Image URL 9" => "Additional Image URL 9",
|
3963 |
+
"Additional Image URL 10" => "Additional Image URL 10",
|
3964 |
+
"Video URL" => "Video URL",
|
3965 |
+
"Color" => "Color",
|
3966 |
+
"Size" => "Size",
|
3967 |
+
"Material" => "Material",
|
3968 |
+
"Pattern" => "Pattern",
|
3969 |
+
"Gender" => "Gender",
|
3970 |
+
"Age" => "Age",
|
3971 |
+
"Parent UPC" => "Parent UPC",
|
3972 |
+
"Multipack" => "Multipack",
|
3973 |
+
"Shipping Cost" => "Shipping Cost",
|
3974 |
+
"Weight" => "Weight",
|
3975 |
+
"---2" => "",
|
3976 |
);
|
3977 |
return $attributes;
|
3978 |
}
|
3979 |
|
3980 |
+
public function nextagAttribute()
|
3981 |
+
{
|
3982 |
+
$attributes = array(
|
3983 |
+
"--1" => "Required Attributes",
|
3984 |
+
"Product Name" => "Product Name",
|
3985 |
+
"Product Description" => "Product Description",
|
3986 |
+
"Image URL" => "Image URL",
|
3987 |
+
"Click-Out URL" => "Click-Out URL",
|
3988 |
+
"Price" => "Price",
|
3989 |
+
"Category" => "Category: Nextag Numeric ID or Other",
|
3990 |
+
"---1" => "",
|
3991 |
+
"--2" => "Additional Attributes",
|
3992 |
+
"Manufacturer" => "Manufacturer",
|
3993 |
+
"Condition" => "Condition",
|
3994 |
+
"Stock Status" => "Stock Status",
|
3995 |
+
"Cost-per-Click " => "Cost-per-Click ",
|
3996 |
+
"Distributor ID " => "Distributor ID ",
|
3997 |
+
"Ground Shipping" => "Ground Shipping",
|
3998 |
+
"Ingram Part #" => "Ingram Part #",
|
3999 |
+
"ISBN" => "ISBN",
|
4000 |
+
"Manufacturer Part #" => "Manufacturer Part #",
|
4001 |
+
"Marketing Message " => "Marketing Message ",
|
4002 |
+
"MUZE ID" => "MUZE ID",
|
4003 |
+
"Seller Part #" => "Seller Part #",
|
4004 |
+
"UPC" => "UPC",
|
4005 |
+
"Weight" => "Weight",
|
4006 |
+
"ListPrice" => "ListPrice",
|
4007 |
+
"---2" => "",
|
4008 |
);
|
4009 |
return $attributes;
|
4010 |
}
|
4011 |
|
4012 |
+
public function kelkooAttribute()
|
4013 |
+
{
|
4014 |
+
$attributes = array(
|
4015 |
+
"--1" => "Required Attributes",
|
4016 |
+
"title" => "title",
|
4017 |
+
"product-url" => "product-url",
|
4018 |
+
"price" => "price",
|
4019 |
+
"merchant-category" => "merchant-category",
|
4020 |
+
"ean" => "ean",
|
4021 |
+
"delivery-cost" => "delivery-cost",
|
4022 |
+
"brand" => "brand",
|
4023 |
+
"description" => "description",
|
4024 |
+
"image-url" => "image-url",
|
4025 |
+
"availability" => "availability",
|
4026 |
+
"mpn" => "mpn",
|
4027 |
+
"sku" => "sku",
|
4028 |
+
"---1" => "",
|
4029 |
+
"--2" => "Additional Attributes",
|
4030 |
+
"delivery-time" => "delivery-time",
|
4031 |
+
"condition" => "condition",
|
4032 |
+
"ecotax" => "ecotax",
|
4033 |
+
"warranty" => "warranty",
|
4034 |
+
"mobile-url" => "mobile-url",
|
4035 |
+
"kelkoo-category-id" => "kelkoo-category-id",
|
4036 |
+
"colour" => "colour",
|
4037 |
+
"unit-price" => "unit-price",
|
4038 |
+
"offer-type" => "offer-type",
|
4039 |
+
"merchant-info" => "merchant-info",
|
4040 |
+
"currency" => "currency",
|
4041 |
+
"image-url-2" => "image-url-2",
|
4042 |
+
"image-url-3" => "image-url-3",
|
4043 |
+
"image-url-4" => "image-url-4",
|
4044 |
+
"green-product" => "green-product",
|
4045 |
+
"green-label" => "green-label",
|
4046 |
+
"sales-rank" => "sales-rank",
|
4047 |
+
"unit-quantity" => "unit-quantity",
|
4048 |
+
"made-in" => "made-in",
|
4049 |
+
"occasion" => "occasion",
|
4050 |
+
"efficiency-class" => "efficiency-class",
|
4051 |
+
"shipping-method" => "shipping-method",
|
4052 |
+
"delivery-cost-2" => "delivery-cost-2",
|
4053 |
+
"shipping-method-2" => "shipping-method-2",
|
4054 |
+
"delivery-cost-3" => "delivery-cost-3",
|
4055 |
+
"shipping-method-3" => "shipping-method-3",
|
4056 |
+
"delivery-cost-4" => "delivery-cost-4 ",
|
4057 |
+
"shipping-method-4" => "shipping-method-4",
|
4058 |
+
"zip-code" => "zip-code",
|
4059 |
+
"stock-quantity" => "stock-quantity",
|
4060 |
+
"shipping-weight" => "shipping-weight",
|
4061 |
+
"payment-methods" => "payment-methods",
|
4062 |
+
"voucher-title" => "voucher-title",
|
4063 |
+
"voucher-description" => "voucher-description",
|
4064 |
+
"voucher-url" => "voucher-url",
|
4065 |
+
"voucher-code" => "voucher-code",
|
4066 |
+
"voucher-start-date" => "voucher-start-date",
|
4067 |
+
"voucher-end-date" => "voucher-end-date",
|
4068 |
+
"price-no-rebate" => "price-no-rebate",
|
4069 |
+
"percentage-promo" => "percentage-promo",
|
4070 |
+
"promo-start-date" => "promo-start-date",
|
4071 |
+
"promo-end-dat" => "promo-end-dat",
|
4072 |
+
"user-rating" => "user-rating",
|
4073 |
+
"nb-reviews" => "nb-reviews",
|
4074 |
+
"user-review-link" => "user-review-link",
|
4075 |
+
"video-link" => "video-link",
|
4076 |
+
"video-title" => "video-title",
|
4077 |
+
"---2" => "",
|
4078 |
);
|
4079 |
return $attributes;
|
4080 |
}
|
4081 |
|
4082 |
+
public function shopzillaAttribute()
|
4083 |
+
{
|
4084 |
+
$attributes = array(
|
4085 |
+
"--1" => "Required Attributes",
|
4086 |
+
"Unique ID" => "Unique ID",
|
4087 |
+
"Title" => "Title",
|
4088 |
+
"Description" => "Description",
|
4089 |
+
"Category" => "Category",
|
4090 |
+
"Product URL" => "Product URL",
|
4091 |
+
"Image URL" => "Image URL",
|
4092 |
+
"Condition" => "Condition",
|
4093 |
+
"Availability" => "Availability",
|
4094 |
+
"Current Price" => "Current Price",
|
4095 |
+
"---1" => "",
|
4096 |
+
"--2" => "Recommended Attributes",
|
4097 |
+
"Brand" => "Brand",
|
4098 |
+
"GTIN" => "GTIN",
|
4099 |
+
"MPN" => "MPN",
|
4100 |
+
"Ship Cost" => "Ship Cost",
|
4101 |
+
"Ship Weight" => "Ship Weight",
|
4102 |
+
"Bid" => "Bid",
|
4103 |
+
"Regular Price" => "Regular Price",
|
4104 |
+
"Promo Text" => "Promo Text",
|
4105 |
+
"Gender" => "Gender",
|
4106 |
+
"Age Group" => "Age Group",
|
4107 |
+
"Color" => "Color",
|
4108 |
+
"Size" => "Size",
|
4109 |
+
"Material" => "Material",
|
4110 |
+
"Pattern" => "Pattern",
|
4111 |
+
"Item Group ID" => "Item Group ID",
|
4112 |
+
"---2" => "",
|
4113 |
+
"--3" => "Optional Attributes",
|
4114 |
+
"Page ID" => "Page ID",
|
4115 |
+
"Page ID Variant" => "Page ID Variant",
|
4116 |
+
"Generic Title" => "Generic Title",
|
4117 |
+
"Unit Price" => "Unit Price",
|
4118 |
+
"Currency" => "Currency",
|
4119 |
+
"PZN" => "PZN",
|
4120 |
+
"Adult" => "Adult",
|
4121 |
+
"Delivery Period" => "Delivery Period",
|
4122 |
+
"Energy Efficiency Class" => "Energy Efficiency Class",
|
4123 |
+
"---3" => "",
|
4124 |
);
|
4125 |
return $attributes;
|
4126 |
}
|
4127 |
|
4128 |
+
public function shoppingAttribute()
|
4129 |
+
{
|
4130 |
+
$attributes = array(
|
4131 |
+
"--1" => "Required Attributes",
|
4132 |
+
"Unique Merchant SKU" => "Unique Merchant SKU",
|
4133 |
+
"Product Name" => "Product Name",
|
4134 |
+
"Product URL" => "Product URL",
|
4135 |
+
"Image URL" => "Image URL",
|
4136 |
+
"Current Price" => "Current Price",
|
4137 |
+
"Stock Availability" => "Stock Availability",
|
4138 |
+
"Condition" => "Condition",
|
4139 |
+
"MPN" => "MPN",
|
4140 |
+
"ISBN" => "ISBN",
|
4141 |
+
"UPC" => "UPC",
|
4142 |
+
"EAN" => "EAN",
|
4143 |
+
"---1" => "",
|
4144 |
+
"--2" => "Additional Attributes",
|
4145 |
+
"Shipping Rate" => "Shipping Rate",
|
4146 |
+
"Original Price" => "Original Price",
|
4147 |
+
"Coupon Code" => "Coupon Code",
|
4148 |
+
"Coupon Code Description" => "Coupon Code Description",
|
4149 |
+
"Manufacturer" => "Brand / Manufacturer",
|
4150 |
+
"Product Description" => "Product Description",
|
4151 |
+
"Product Type" => "Product Type",
|
4152 |
+
"Category" => "Category",
|
4153 |
+
"Category ID" => "Category ID",
|
4154 |
+
"Parent SKU" => "Parent SKU",
|
4155 |
+
"Parent Name" => "Parent Name",
|
4156 |
+
"Top Seller Rank" => "Top Seller Rank",
|
4157 |
+
"Estimated Ship Date" => "Estimated Ship Date",
|
4158 |
+
"Gender" => "Gender",
|
4159 |
+
"Color" => "Color",
|
4160 |
+
"Material" => "Material",
|
4161 |
+
"Size" => "Size",
|
4162 |
+
"Size Unit of Measure" => "Size Unit of Measure",
|
4163 |
+
"Age Range" => "Age Range",
|
4164 |
+
"Stock Description" => "Stock Description",
|
4165 |
+
"Product Launch Date" => "Product Launch Date",
|
4166 |
+
"Product Bullet Point 1" => "Product Bullet Point 1",
|
4167 |
+
"Product Bullet Point 2" => "Product Bullet Point 2",
|
4168 |
+
"Product Bullet Point 3" => "Product Bullet Point 3",
|
4169 |
+
"Product Bullet Point 4" => "Product Bullet Point 4",
|
4170 |
+
"Product Bullet Point 5" => "Product Bullet Point 5",
|
4171 |
+
"Alternative Image URL 1" => "Alternative Image URL 1",
|
4172 |
+
"Alternative Image URL 2" => "Alternative Image URL 2",
|
4173 |
+
"Alternative Image URL 3" => "Alternative Image URL 3",
|
4174 |
+
"Alternative Image URL 4" => "Alternative Image URL 4",
|
4175 |
+
"Alternative Image URL 5" => "Alternative Image URL 5",
|
4176 |
+
"Mobile URL" => "Mobile URL",
|
4177 |
+
"Related Products" => "Related Products",
|
4178 |
+
"Merchandising Type" => "Merchandising Type",
|
4179 |
+
"Zip Code" => "Zip Code",
|
4180 |
+
"Shipping Weight" => "Shipping Weight",
|
4181 |
+
"Format" => "Format",
|
4182 |
+
"Unit Price" => "Unit Price",
|
4183 |
+
"Bundle" => "Bundle",
|
4184 |
+
"Software Platform" => "Software Platform",
|
4185 |
+
"Watch Display Type" => "Watch Display Type",
|
4186 |
+
"Custom" => "Custom",
|
4187 |
+
"---2" => "",
|
4188 |
);
|
4189 |
return $attributes;
|
4190 |
}
|
4191 |
|
4192 |
+
public function shopmaniaAttribute()
|
4193 |
+
{
|
4194 |
+
$attributes = array(
|
4195 |
+
"--1" => "Required Attributes",
|
4196 |
+
"Category" => "Category",
|
4197 |
+
"Manufacturer" => "Manufacturer",
|
4198 |
+
"Model" => "Model",
|
4199 |
+
"MPC" => "Merchant Code",
|
4200 |
+
"Name" => "Product name",
|
4201 |
+
"Description" => "Product description",
|
4202 |
+
"URL" => "Product URL",
|
4203 |
+
"Image" => "Image URL",
|
4204 |
+
"Price" => "Product price",
|
4205 |
+
"Currency" => "Currency",
|
4206 |
+
"Shipping" => "Shipping cost",
|
4207 |
+
"Availability" => "Availability",
|
4208 |
+
"GTIN" => "GTIN",
|
4209 |
+
"---1" => "",
|
4210 |
|
4211 |
);
|
4212 |
return $attributes;
|
4213 |
}
|
4214 |
|
4215 |
+
public function leguideAttribute()
|
4216 |
+
{
|
4217 |
+
$attributes = array(
|
4218 |
+
"--1" => "",
|
4219 |
+
"category" => "category",
|
4220 |
+
"unique_id" => "unique_id",
|
4221 |
+
"category" => "category",
|
4222 |
+
"title" => "title",
|
4223 |
+
"description" => "description",
|
4224 |
+
"price" => "price",
|
4225 |
+
"product_URL" => "product_URL",
|
4226 |
+
"image_URL" => "image_URL",
|
4227 |
+
"EAN" => "EAN",
|
4228 |
+
"delivery_charge" => "delivery_charge",
|
4229 |
+
"availability" => "availability",
|
4230 |
+
"delivery_time" => "delivery_time",
|
4231 |
+
"guarantee" => "guarantee",
|
4232 |
+
"model_reference" => "model_reference",
|
4233 |
+
"marque" => "marque",
|
4234 |
+
"MPN" => "MPN",
|
4235 |
+
"full_price" => "full_price",
|
4236 |
+
"colour" => "colour",
|
4237 |
+
"size" => "size",
|
4238 |
+
"material" => "material",
|
4239 |
+
"currency" => "currency",
|
4240 |
+
"second-hand" => "second-hand",
|
4241 |
+
"type_promotion" => "type_promotion",
|
4242 |
+
"mobile_URL" => "mobile_URL",
|
4243 |
+
"unit_price" => "unit_price",
|
4244 |
+
"---1" => "",
|
4245 |
);
|
4246 |
return $attributes;
|
4247 |
}
|
4248 |
|
4249 |
+
public function pricespyAttribute()
|
4250 |
+
{
|
4251 |
+
$attributes = array(
|
4252 |
+
"--1" => "",
|
4253 |
+
"Product-name" => "Product-name",
|
4254 |
+
"Your-item-number" => "Your-item-number",
|
4255 |
+
"category" => "category",
|
4256 |
+
"price-including-gst" => "price-including-gst",
|
4257 |
+
"Product-URL" => "Product-URL",
|
4258 |
+
"manufacturer" => "manufacturer",
|
4259 |
+
"manufacturer-SKU" => "manufacturer-SKU",
|
4260 |
+
"shipping" => "shipping",
|
4261 |
+
"image-URL" => "image-URL",
|
4262 |
+
"stock status" => "stock status",
|
4263 |
+
"---1" => "",
|
4264 |
);
|
4265 |
return $attributes;
|
4266 |
}
|
4267 |
|
4268 |
+
public function prisjaktAttribute()
|
4269 |
+
{
|
4270 |
+
$attributes = array(
|
4271 |
+
"--1" => "",
|
4272 |
+
"Produktnamn" => "Produktnamn",
|
4273 |
+
"Art.nr." => "Art.nr.",
|
4274 |
+
"Kategori" => "Kategori",
|
4275 |
+
"Pris inkl.moms" => "Pris inkl.moms",
|
4276 |
+
"Produkt-URL" => "Produkt-URL",
|
4277 |
+
"Tillverkare" => "Tillverkare",
|
4278 |
+
"Tillverkar-SKU" => "Tillverkar-SKU",
|
4279 |
+
"Frakt" => "Frakt",
|
4280 |
+
"Bild-URL" => "Bild-URL",
|
4281 |
+
"Lagerstatus" => "Lagerstatus",
|
4282 |
+
"---1" => "",
|
4283 |
);
|
4284 |
return $attributes;
|
4285 |
}
|
4286 |
|
4287 |
+
public function bingAttribute()
|
4288 |
+
{
|
4289 |
+
$attributes = array(
|
4290 |
+
"id" => "ID",
|
4291 |
+
"title" => "Title",
|
4292 |
+
"link" => "Product URL",
|
4293 |
+
"price" => "Price",
|
4294 |
+
"description" => "Description",
|
4295 |
+
"image_link" => "ImageURL",
|
4296 |
+
"shipping" => "Shipping",
|
4297 |
+
"required" => "",
|
4298 |
+
"brand" => "Brand",
|
4299 |
+
"mpn" => "MPN",
|
4300 |
+
"gtin" => "GTIN",
|
4301 |
+
"gender" => "Gender",
|
4302 |
+
"age_group" => "Age Group",
|
4303 |
+
"color" => "Color",
|
4304 |
+
"size" => "Size",
|
4305 |
+
"item_group_id" => "Item Group Id",
|
4306 |
+
"material" => "Material",
|
4307 |
+
"pattern" => "Pattern",
|
4308 |
+
"adult" => "Adult",
|
4309 |
+
"availability" => "Availability",
|
4310 |
+
"product_category" => "Product Category",
|
4311 |
+
"condition" => "Condition",
|
4312 |
+
"expiration_date" => "Expiration Date",
|
4313 |
+
"multipack" => "Multipack",
|
4314 |
+
"product_type" => "Product Type",
|
4315 |
+
"mobile_link" => "Mobile Link",
|
4316 |
+
"seller_name" => "Seller Name",
|
4317 |
+
"bingads_grouping" => "bingads_grouping",
|
4318 |
+
"bingads_label" => "bingads_label",
|
4319 |
+
"bingads_redirect" => "bingads_redirect",
|
4320 |
+
"custom_label_0" => "custom_label_0",
|
4321 |
+
"custom_label_1" => "custom_label_1",
|
4322 |
+
"custom_label_2" => "custom_label_2",
|
4323 |
+
"custom_label_3" => "custom_label_3",
|
4324 |
+
"custom_label_4" => "custom_label_4",
|
4325 |
+
"sale_price" => "Sale Price",
|
4326 |
+
"sale_price_effective_date" => "Sale Price Effective Date",
|
4327 |
+
"promotion_ID" => "Promotion Id",
|
4328 |
);
|
4329 |
return $attributes;
|
4330 |
}
|
4331 |
|
4332 |
+
public function shopbotAttribute()
|
4333 |
+
{
|
4334 |
+
$attributes = array(
|
4335 |
+
"--1" => "Required Attributes",
|
4336 |
+
"ID" => "ID",
|
4337 |
+
"Product Name" => "Product Name",
|
4338 |
+
"URL" => "URL",
|
4339 |
+
"Category" => "Category",
|
4340 |
+
"Photo URL" => "Photo URL",
|
4341 |
+
"Price" => "Price",
|
4342 |
+
"Original Price" => "Original Price",
|
4343 |
+
"Description" => "Description",
|
4344 |
+
"MPN" => "MPN",
|
4345 |
+
"Brand" => "Brand",
|
4346 |
+
"Shipment Cost" => "Shipment Cost",
|
4347 |
+
"---1" => "",
|
4348 |
+
"--2" => "Recommended Attributes",
|
4349 |
+
"Stock" => "Stock",
|
4350 |
+
"Promotional Phrase" => "Promotional Phrase",
|
4351 |
+
"Model" => "Model",
|
4352 |
+
"Color" => "Color",
|
4353 |
+
"Product Type" => "Product Type",
|
4354 |
+
"---2" => "",
|
4355 |
|
4356 |
);
|
4357 |
return $attributes;
|
4358 |
}
|
4359 |
|
4360 |
+
public function becomeAttribute()
|
4361 |
+
{
|
4362 |
+
$attributes = array(
|
4363 |
+
"--1" => "Required Attributes",
|
4364 |
+
"Unique ID" => "Unique ID",
|
4365 |
+
"Title" => "Title",
|
4366 |
+
"Description" => "Description",
|
4367 |
+
"Category" => "Category",
|
4368 |
+
"Product URL" => "Product URL",
|
4369 |
+
"Image URL" => "Image URL",
|
4370 |
+
"Condition" => "Condition",
|
4371 |
+
"Availability" => "Availability",
|
4372 |
+
"Current Price" => "Current Price",
|
4373 |
+
"---1" => "",
|
4374 |
+
"--2" => "Recommended Attributes",
|
4375 |
+
"Additional Image URL" => "Additional Image URL",
|
4376 |
+
"Brand" => "Brand",
|
4377 |
+
"GTIN" => "GTIN",
|
4378 |
+
"MPN" => "MPN",
|
4379 |
+
"Ship Cost" => "Ship Cost",
|
4380 |
+
"Ship Weight" => "Ship Weight",
|
4381 |
+
"Bid" => "Bid",
|
4382 |
+
"Regular Price" => "Regular Price",
|
4383 |
+
"Promo Text" => "Promo Text",
|
4384 |
+
"Gender" => "Gender",
|
4385 |
+
"Age Group" => "Age Group",
|
4386 |
+
"Color" => "Color",
|
4387 |
+
"Size" => "Size",
|
4388 |
+
"Material" => "Material",
|
4389 |
+
"Pattern" => "Pattern",
|
4390 |
+
"Item Group ID" => "Item Group ID",
|
4391 |
+
"---2" => "",
|
4392 |
+
"--3" => "Optional Attributes",
|
4393 |
+
"Page ID" => "Page ID",
|
4394 |
+
"Page ID Variant" => "Page ID Variant",
|
4395 |
+
"Generic Title" => "Generic Title",
|
4396 |
+
"Unit Price" => "Unit Price",
|
4397 |
+
"Currency" => "Currency",
|
4398 |
+
"PZN" => "PZN",
|
4399 |
+
"Adult" => "Adult",
|
4400 |
+
"Delivery Period" => "Delivery Period",
|
4401 |
+
"Energy Efficiency Class" => "Energy Efficiency Class",
|
4402 |
|
4403 |
+
"---3" => "",
|
4404 |
);
|
4405 |
return $attributes;
|
4406 |
}
|
4407 |
|
4408 |
+
public function connexityAttribute()
|
4409 |
+
{
|
4410 |
+
$attributes = array(
|
4411 |
+
"--1" => "Required Attributes",
|
4412 |
+
"Unique ID" => "Unique ID",
|
4413 |
+
"Title" => "Title",
|
4414 |
+
"Description" => "Description",
|
4415 |
+
"Category" => "Category",
|
4416 |
+
"Product URL" => "Product URL",
|
4417 |
+
"Image URL" => "Image URL",
|
4418 |
+
"Condition" => "Condition",
|
4419 |
+
"Availability" => "Availability",
|
4420 |
+
"Current Price" => "Current Price",
|
4421 |
+
"---1" => "",
|
4422 |
+
"--2" => "Recommended Attributes",
|
4423 |
+
"Brand" => "Brand",
|
4424 |
+
"GTIN" => "GTIN",
|
4425 |
+
"MPN" => "MPN",
|
4426 |
+
"Ship Cost" => "Ship Cost",
|
4427 |
+
"Ship Weight" => "Ship Weight",
|
4428 |
+
"Bid" => "Bid",
|
4429 |
+
"Regular Price" => "Regular Price",
|
4430 |
+
"Promo Text" => "Promo Text",
|
4431 |
+
"Gender" => "Gender",
|
4432 |
+
"Age Group" => "Age Group",
|
4433 |
+
"Color" => "Color",
|
4434 |
+
"Size" => "Size",
|
4435 |
+
"Material" => "Material",
|
4436 |
+
"Pattern" => "Pattern",
|
4437 |
+
"Item Group ID" => "Item Group ID",
|
4438 |
+
"---2" => "",
|
4439 |
+
"--3" => "Optional Attributes",
|
4440 |
+
"Page ID" => "Page ID",
|
4441 |
+
"Page ID Variant" => "Page ID Variant",
|
4442 |
+
"Generic Title" => "Generic Title",
|
4443 |
+
"Unit Price" => "Unit Price",
|
4444 |
+
"Currency" => "Currency",
|
4445 |
+
"PZN" => "PZN",
|
4446 |
+
"Adult" => "Adult",
|
4447 |
+
"Delivery Period" => "Delivery Period",
|
4448 |
+
"Energy Efficiency Class" => "Energy Efficiency Class",
|
4449 |
+
"---3" => "",
|
4450 |
);
|
4451 |
return $attributes;
|
4452 |
}
|
woo-feed.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
* Plugin Name: WooCommerce Product Feed
|
16 |
* Plugin URI: https://webappick.com/
|
17 |
* Description: This plugin generate WooCommerce product feed for Shopping Engines like Google Shopping,Facebook Product Feed,eBay,Amazon,Idealo and many more..
|
18 |
-
* Version: 3.1.
|
19 |
* Author: WebAppick
|
20 |
* Author URI: https://webappick.com/
|
21 |
* License: GPL v2
|
@@ -40,7 +40,7 @@ if( ! defined( 'WOO_FEED_VERSION' ) ) {
|
|
40 |
* Plugin Version
|
41 |
* @var string
|
42 |
*/
|
43 |
-
define( 'WOO_FEED_VERSION', '3.1.
|
44 |
}
|
45 |
if( ! defined( 'WOO_FEED_FREE_FILE') ) {
|
46 |
/**
|
@@ -940,7 +940,8 @@ if( ! function_exists( 'woo_feed_manage_feed' ) ) {
|
|
940 |
"avantlink",
|
941 |
"shareasale",
|
942 |
"walmart",
|
943 |
-
"modina.de"
|
|
|
944 |
);
|
945 |
|
946 |
if ( isset( $_GET['feed'] ) && ! empty( $_GET['feed'] ) ) {
|
15 |
* Plugin Name: WooCommerce Product Feed
|
16 |
* Plugin URI: https://webappick.com/
|
17 |
* Description: This plugin generate WooCommerce product feed for Shopping Engines like Google Shopping,Facebook Product Feed,eBay,Amazon,Idealo and many more..
|
18 |
+
* Version: 3.1.49
|
19 |
* Author: WebAppick
|
20 |
* Author URI: https://webappick.com/
|
21 |
* License: GPL v2
|
40 |
* Plugin Version
|
41 |
* @var string
|
42 |
*/
|
43 |
+
define( 'WOO_FEED_VERSION', '3.1.49' );
|
44 |
}
|
45 |
if( ! defined( 'WOO_FEED_FREE_FILE') ) {
|
46 |
/**
|
940 |
"avantlink",
|
941 |
"shareasale",
|
942 |
"walmart",
|
943 |
+
"modina.de",
|
944 |
+
"yandex_csv",
|
945 |
);
|
946 |
|
947 |
if ( isset( $_GET['feed'] ) && ! empty( $_GET['feed'] ) ) {
|