Subversion Repositories wpShopGermany4

Rev

Rev 8279 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
7706 daniel 1
<?php
2
 
3
	/*
4
	 * Template für Flächenprodukte im Frontend
5
	 * Angepasstes standard.phtml
6
	 */
7
 
8
	/** @var wpsg_product $oProduct */
9
	$oProduct = $this->view['oProduct'];
10
 
11
	$ap = [
12
		'set' => intval($oProduct->getMeta('wpsg_mod_printshop_set')),
13
		'mode' => intval($oProduct->getMeta('wpsg_mod_printshop_mode')),
14
		'price_unit' => sanitize_text_field($oProduct->getMeta('wpsg_mod_printshop_unit_price')),
15
		'width' => wpsg_tf($oProduct->getMeta('wpsg_mod_printshop_width')),
16
		'width_step' => intval($oProduct->getMeta('wpsg_mod_printshop_width_step')),
17
		'width_min' => intval($oProduct->getMeta('wpsg_mod_printshop_width_min')),
18
		'width_max' => intval($oProduct->getMeta('wpsg_mod_printshop_width_max')),
19
		'length_step' => intval($oProduct->getMeta('wpsg_mod_printshop_length_step')),
20
		'length_min' => intval($oProduct->getMeta('wpsg_mod_printshop_length_min')),
21
		'length_max' => intval($oProduct->getMeta('wpsg_mod_printshop_length_max'))
22
	];
23
 
24
	$this->view['ap'] = $ap;
25
 
26
?>
27
 
28
<div class="wpsg_produkt_wrapper">
29
 
30
	<input type="hidden" name="wpsg_post_id" value="<?php echo get_the_ID(); ?>" />
31
	<input type="hidden" name="titleDisplayed" value="<?php echo $this->titleDisplayed; ?>" />
32
 
33
	<div class="wpsg_produkt wpsg_product_name">
34
 
35
		<?php if (!$this->titleDisplayed) { ?>
36
			<h1 itemprop="name" class="wpsg_producttitle"><?php echo $this->getProductName($this->view['data']['id']); ?></h1>
37
			<h2 itemprop="detailname" class="wpsg_productdetailtitle"><?php echo $this->view['data']['detailname']; ?></h2>
38
		<?php } ?>
39
 
40
		<?php $this->callMods('product_top_afterheadline', array(&$this->view['data']['id'], $this->getTemplateIndex())); ?>
41
 
42
	</div>
43
 
44
	<?php $this->callMods('product_top', array(&$this->view['data']['id'], $this->getTemplateIndex())); ?>
45
 
46
	<div itemscope itemtype="http://schema.org/Product" class="wpsg_produkt wpsg_produkt_<?php echo $this->view['data']['id']; ?>">
47
 
48
		<?php /* Block für die Produktbilder START */ ?>
49
		<?php
50
 
51
			/* Das ist das primäre Anzeigebild des Produktes (AttachmentID) */
52
			$arAttachmentID = $this->imagehandler->getAttachmentID($this->view['data']['product_key']);
53
 
54
			/* Array mit allen AttachmentIDs der Produktbilder */
55
			$arAttachmentIDsAll = $this->imagehandler->getAttachmentIDs($this->view['data']['product_id']);
56
 
57
		?>
58
 
59
		<?php if (wpsg_isSizedArray($arAttachmentIDsAll)) { ?>
60
		<div class="wpsg_productimages">
61
 
62
			<div class="wpsg_produkt_produktbilder">
63
 
64
				<?php if (sizeof($arAttachmentIDsAll) > 0) { for ($i = 0; $i < sizeof($arAttachmentIDsAll); $i ++) { ?>
65
 
66
					<?php /* URL für die Lightbox */ ?>
67
					<?php $att = wp_get_attachment_image_src($arAttachmentIDsAll[$i], array(800, 600), false); ?>
68
 
8410 daniel 69
					<a <?php if ($arAttachmentIDsAll[$i] != $arAttachmentID) echo 'style="display:none;"'; ?> data-fslightbox="<?php echo $this->getTemplateIndex(); ?>" title="<?php echo $this->getProductName($this->view['data']['id']); ?>" href="<?php echo $att[0]; ?>">
7706 daniel 70
 
71
						<?php echo wp_get_attachment_image($arAttachmentIDsAll[$i], array(300, 300), false, array()); ?>
72
 
73
					</a>
74
 
75
				<?php } } ?>
76
 
77
			</div>
78
 
79
		</div>
80
		<?php } ?>
81
		<?php /* Block für die Produktbilder ENDE */ ?>
82
 
83
		<?php if ($this->get_option('wpsg_showArticelnumber') == '1') { ?>
84
		<div class="wpsg_artikelnummer">
85
			<?php echo __('Artikelnummer', 'wpsg'); ?>: <span class="wpsg_anr"><?php echo wpsg_hspc($this->view['data']['anr']); ?></span><br />
8279 daniel 86
		</div>
87
		<?php } ?>
88
 
89
		<?php $arProductCodes = $oProduct->getAllProductCodes(); ?>
90
		<?php if (sizeof($arProductCodes) > 0) { ?>
91
			<div class="product_code_wrap">
92
			<?php foreach ($arProductCodes as $product_code) { ?>
93
				<?php if ($product_code !== null) { ?>
94
 
95
					<div class="product_code <?php echo $product_code['code_key']; ?>">
96
						<span class="label"><?php echo $product_code['label']; ?></span>: <span class="code"><?php echo $product_code['code']; ?></span>
97
					</div>
98
 
99
				<?php } ?>
7706 daniel 100
			<?php } ?>
8279 daniel 101
			</div>
7706 daniel 102
		<?php } ?>
8279 daniel 103
 
7706 daniel 104
		<?php /* Abfrage Preisanzeige nur für eingeloggte User aktiv und User eingeloggt START*/ ?>
105
		<?php if ($this->view['oProduct']->canDisplayPrice()) { ?>
106
 
107
			<div itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="wpsg_produkt_preis">
108
 
109
				<meta itemprop="priceCurrency" content="<?php echo $this->get_option('wpsg_currency'); ?>" />
110
 
111
				<?php echo wpsg_translate(__('Preis je #1#²:', 'wpsg'), $ap['price_unit']); ?>
112
 
113
				<?php $oldPrice = $this->view['oProduct']->getOldPrice();  ?>
114
 
115
				<?php if ($oldPrice !== false && $oldPrice != $this->view['oProduct']->getPrice($this->view['data']['product_key'])) { ?>
116
					<span class="wpsg_mod_productview_price wpsg_mod_productview_current"><?php echo wpsg_ff($this->view['oProduct']->getPrice($this->view['data']['product_key']), $this->get_option('wpsg_currency')); ?></span>
117
					<span class="wpsg_mod_productview_oldprice"><?php echo wpsg_ff($oldPrice, $this->get_option('wpsg_currency')); ?></span>
118
				<?php } else { ?>
119
					<span class="wpsg_mod_productview_price"><?php echo wpsg_ff($this->view['oProduct']->getPrice($this->view['data']['product_key']), $this->get_option('wpsg_currency')); ?></span>
120
				<?php } ?>
121
 
122
			</div>
123
 
124
			<?php if ($this->get_option('wpsg_kleinunternehmer')) { /* Kleinunternehmerregelung aktiviert START */ ?>
125
 
126
				<div class="wpsg_produkt_preishinweis">
127
					<?php echo wpsg_translate(__('#2# zzgl. #1#', 'wpsg'), '<a href="'.$this->getURL(wpsg_ShopController::URL_VERSANDKOSTEN).'">'.__('Versandkosten', 'wpsg').'</a>', '<a href="#kkhint" title="'.wpsg_hspc($this->get_option('wpsg_kleinunternehmer_text')).'">Endpreis</a>'); ?>
128
				</div>
129
 
130
			<?php } else { /* Kleinunternehmerregelung aktiviert ENDE */ ?>
131
 
132
				<div class="wpsg_produkt_preishinweis">
133
					<?php if ($this->getFrontendTaxview() == WPSG_NETTO) { /* Frontend = NETTO Preise */ ?>
134
						<?php if ($this->hasMod('wpsg_mod_freeshipping') && $this->get_option('wpsg_mod_freeshipping_aktiv') == '1') { /* Versandkostenfrei aktiv */?>
135
 
136
							<?php if ($this->get_option('wpsg_mod_freeshipping_minvalue') > 0) { ?>
137
								<?php echo wpsg_translate(__('(zzgl. #1#% MwSt. und <a href="#3#">ab #2# € versandkostenfrei</a>)', 'wpsg'),
138
									wpsg_ff($this->view['data']['mwst_value']),
139
									wpsg_ff($this->get_option('wpsg_mod_freeshipping_minvalue')),
140
									$this->getUrl(wpsg_ShopController::URL_VERSANDKOSTEN)
141
								); ?>
142
							<?php } else { ?>
143
								<?php echo wpsg_translate(__('(zzgl. #1#% MwSt. und versandkostenfrei)', 'wpsg'), wpsg_ff($this->view['data']['mwst_value'])); ?>
144
							<?php } ?>
145
 
146
						<?php } else { ?>
147
							<?php echo wpsg_translate(__('(zzgl. #1#% MwSt. und zzgl. #2#)', 'wpsg'), wpsg_ff($this->view['data']['mwst_value']), '<a href="'.$this->getURL(wpsg_ShopController::URL_VERSANDKOSTEN).'">'.__('Versandkosten', 'wpsg').'</a>'); ?>
148
						<?php }?>
149
					<?php } else { /* Frontend = BRUTTO Preise */ ?>
150
						<?php if ($this->hasMod('wpsg_mod_freeshipping') && $this->get_option('wpsg_mod_freeshipping_aktiv') == '1') { /* Versandkostenfrei aktiv */ ?>
151
 
152
							<?php if ($this->get_option('wpsg_mod_freeshipping_minvalue') > 0) { ?>
153
								<?php echo wpsg_translate(__('(inkl. #1#% MwSt. und <a href="#3#">ab #2# € versandkostenfrei</a>)', 'wpsg'),
154
									wpsg_ff($this->view['data']['mwst_value']),
155
									wpsg_ff($this->get_option('wpsg_mod_freeshipping_minvalue')),
156
									$this->getUrl(wpsg_ShopController::URL_VERSANDKOSTEN)
157
								); ?>
158
							<?php } else { ?>
159
								<?php echo wpsg_translate(__('(inkl. #1#% MwSt. und versandkostenfrei)', 'wpsg'), wpsg_ff($this->view['data']['mwst_value'])); ?>
160
							<?php } ?>
161
 
162
						<?php } else { ?>
163
							<?php echo wpsg_translate(__('(inkl. #1#% MwSt. und zzgl. #2#)', 'wpsg'), wpsg_ff($this->view['data']['mwst_value']), '<a href="'.$this->getURL(wpsg_ShopController::URL_VERSANDKOSTEN).'">'.__('Versandkosten', 'wpsg').'</a>'); ?>
164
						<?php }?>
165
					<?php } ?>
166
				</div>
167
 
168
			<?php } ?>
169
 
170
		<?php } else {?>
171
 
172
			<?php echo wpsg_translate(__('Die Produktpreise werden nur eingeloggten Benutzern angezeigt. Loggen Sie sich <a href="'.$this->getURL(wpsg_ShopController::URL_PROFIL).'">hier</a> bitte ein, um zu bestellen.')); ?>
173
 
174
		<?php }?>
175
		<?php /* Abfrage Preisanzeige nur für eingeloggte User aktiv und User eingeloggt ENDE */ ?>
176
 
177
		<div itemprop="description" class="wpsg_produkt_shortdescription">
178
 
179
			<span><?php echo $this->view['data']['shortdesc']; ?></span>
180
 
181
		</div>
182
 
183
		<div class="wpsg_clear"></div>
184
 
185
		<?php /* Lagerbestand START*/?>
186
		<?php if ($this->hasMod('wpsg_mod_stock') && $this->get_option('wpsg_mod_stock_showProduct') == '1') { ?>
187
 
188
		<div class="wpsg_mod_produktindex_stock">
189
 
190
			<?php if (($this->view['data']['stock']) > '0') {?>
191
 
192
                <label><?php echo __('Lagerbestand', 'wpsg'); ?></label>
193
                <?php echo wpsg_translate(__('#1# Artikel auf Lager','wpsg'), $this->view['data']['stock']);  ?>
194
 
195
			<?php } else { ?>
196
 
197
			 	<label><?php echo wpsg_translate(__('', 'wpsg')); ?></label>
198
 
199
			<?php } ?>
200
 
201
		</div>
202
		<?php } ?>
203
		<?php /* Lagerbestand ENDE*/?>
204
 
205
		<?php /* Füllmengenanzeige START */ ?>
206
		<?php if ($this->hasMod('wpsg_mod_fuellmenge')) { ?>
207
 
208
			<div class="wpsg_produkt_fuellmenge">
209
 
210
				<?php if (($this->view['data']['fmenge']) > '0') { ?>
211
 
212
					<span class="label label_fuellmenge"><?php echo wpsg_translate(__('Füllmenge:', 'wpsg')); ?></span>
213
 
214
					<?php echo wpsg_translate(__('#1# (#2# / #3#)', 'wpsg'),
215
						'<span class="wpsg_fmenge">'.wpsg_ff($this->view['data']['fmenge'], '', true).'</span> '.$this->view['data']['feinheit'],
216
						'<span class="fmenge_preis">'.wpsg_ff($this->view['data']['fmenge_preis'], $this->get_option('wpsg_currency')).'</span> ',
217
						wpsg_ff($this->get_option('wpsg_mod_fuellmenge_bezug'), $this->view['data']['feinheit'])
218
					); ?>
219
 
220
				<?php } else { ?>
221
 
222
					<label><?php echo wpsg_translate(__('', 'wpsg')); ?></label>
223
 
224
				<?php } ?>
225
 
226
			</div>
227
 
228
		<?php } ?>
229
		<?php /* Füllmengenanzeige ENDE */ ?>
230
 
231
		<?php /* Gewichtsanzeige START */ ?>
232
		<?php if ($this->hasMod('wpsg_mod_weight') && $this->get_option('wpsg_mod_weight_showProduct') === '1') { ?>
233
		<div class="wpsg_mod_weight_produkt">
234
 
235
			<?php if (($this->view['data']['weight']) > '0') { ?>
236
				<span class="label label_weight"><?php echo wpsg_translate(__('Gewicht:', 'wpsg')); ?></span>
237
				<?php echo wpsg_translate(__('#1# #2#', 'wpsg'), '<span class="wpsg_weight" id="weight_'.$this->view['data']['id'].'">'.wpsg_ff($this->view['data']['weight']).'</span>', $this->get_option('wpsg_mod_weight_unit')); ?>
238
			<?php } else { ?>
239
				<label><?php wpsg_translate(__('', 'wpsg'))?></label>
240
			<?php } ?>
241
		</div>
242
		<?php } ?>
243
		<?php /* Gewichtsanzeige ENDE */ ?>
244
 
245
		<?php /* Lieferzeit Anzeige START */ ?>
246
		<?php if ($this->hasMod('wpsg_mod_deliverytime') && $this->get_option('wpsg_mod_deliverytime_show_product') == '1') { ?>
247
 
248
			<?php /* Produkt nur im Store, nicht im Onlineshop vorhanden */ ?>
249
			<?php if ($this->callMod('wpsg_mod_deliverytime', 'isStoreProduct', array($this->view['data']['product_key']))) { ?>
250
 
251
				<div class="wpsg_product_only_store"><?php echo __($this->callMod('wpsg_mod_deliverytime', 'displayStoreText', array($this->view['data']['product_key']))); ?></div>
252
 
253
				<?php $stl = 0; $stl = $this->callMod('wpsg_mod_deliverytime', 'displayStoreLink', array($this->view['data']['product_key'])) ?>
254
				<?php if (wpsg_isSizedInt($stl)) { ?>
255
 
256
					&nbsp;<a href="<?php echo get_permalink($stl); ?>"><?php echo __('So erreichen Sie uns.'); ?></a>
257
 
258
				<?php } ?>
259
 
260
			<?php } else { ?>
261
 
262
				<?php $strDelayNote = $this->callMod('wpsg_mod_deliverytime', 'displayDelayTime', array($this->view['data']['product_key'])); ?>
263
				<?php if (wpsg_isSizedString($strDelayNote)) { ?>
264
 
265
					<div class="wpsg_mod_deliverytime_offline">
266
 
267
						<div class="wpsg_mod_deliverytime_delay"><?php echo wpsg_hspc($strDelayNote); ?></div>
268
 
269
					</div>
270
 
271
				<?php } else { ?>
272
 
273
				<div class="wpsg_mod_deliverytime">
274
					<span class="label label_deliverytime"><?php echo wpsg_translate(__('Lieferzeit:', 'wpsg')); ?></span>
275
					<?php echo $this->callMod('wpsg_mod_deliverytime', 'displayDeliveryTime', array($this->view['data']['product_key'])); ?>
276
				</div>
277
 
278
				<?php } ?>
279
 
280
			<?php } ?>
281
 
282
		<?php } ?>
283
		<?php /* Lieferzeit Anzeige ENDE */ ?>
284
 
285
		<?php /* Produktkurzbeschreibung START */ ?>
286
		<div class="wpsg_product_informationarea">
287
 
288
			<?php if (strlen(trim($this->view['data']['beschreibung'])) > 0) { ?>
289
			<div class="wpsg_product_information_short">
290
				<div class="wpsg_produkt_additional_information">
291
					<div itemprop="description" class="wpsg_produkt_shortdescription">
292
						<span><?php echo $this->view['data']['beschreibung']; ?></span>
293
					</div>
294
				</div>
295
			</div>
296
			<?php } ?>
297
 
298
		</div>
299
		<?php /* Produktkurzbeschreibung ENDE */ ?>
300
 
301
		<?php /* Varianten START */ ?>
302
		<div class="wpsg_produkt_varianten">
303
			<?php echo $this->callMod('wpsg_mod_productvariants', 'renderTemplate', array($this->view['data']['product_key'])); ?>
304
		</div>
305
		<?php /* Varianten ENDE */ ?>
306
 
307
		<?php $this->callMods('product_bottom', array(&$this->view['data']['product_key'], $this->getTemplateIndex())); ?>
308
 
309
		<?php /* Flächenprodukt */ ?>
310
		<?php if ($ap['set'] === 1) { ?>
311
			<?php $this->render(WPSG_PATH_VIEW.'mods/mod_printshop/product.phtml'); ?>
312
		<?php } ?>
313
 
314
		<div class="wpsg_product_buttonarea">
315
			<div class="wpsg_product_buttons_add_basket">
316
				<?php if ($this->view['oProduct']->canOrder()) { ?>
317
				<div class="wpsg_produkt_add_basket_wrapper">
318
 
319
					<label class="wpsg_amount_label" for="wpsg_menge_<?php echo $this->getTemplateIndex(); ?>"><?php echo __('Anzahl', 'wpsg'); ?></label>
320
 
321
					<input type="text" value="<?php echo ((wpsg_isSizedInt($this->view['data']['menge']))?$this->view['data']['menge']:'1'); ?>" name="wpsg[menge]" class="wpsg_menge" id="wpsg_menge_<?php echo $this->getTemplateIndex(); ?>" <?php echo (($this->view['data']['basket_multiple'] == 4)?' readonly="readonly" ':''); ?> />
322
 
323
					<?php /* Urlaubsmodus aktiv */ ?>
324
					<?php if ($this->hasMod('wpsg_mod_deliverytime') && ($this->get_option('wpsg_mod_deliverytime_holiday') == '1')) { ?>
325
 
326
						<?php if ($this->callMod('wpsg_mod_deliverytime', 'holiday', array($this->view['data']['product_key']))) { ?>
327
 
328
							<div class="wpsg_product_deliverytime_holiday" style="height:50px; padding:10px; width:50%; float:right; border:1px solid #ff0000;">
329
 
330
								<?php echo __($this->callMod('wpsg_mod_deliverytime', 'displayHolidaytext', array($this->view['data']['product_key']))); ?>
331
 
332
							</div>
333
 
334
						<?php } ?>
335
 
336
					<?php } else {?>
337
 
338
						<input class="wpsg_button wpsg_add_basket wpsg_add_basket_<?php echo $this->getTemplateIndex(); ?>" type="submit" value="<?php echo __('In den Warenkorb', 'wpsg'); ?>" name="wpsg[submit]" />
339
 
340
					<?php } ?>
341
 
342
					<?php if (in_array($this->get_option('wpsg_afterinsert'), array('2', '3'))) { ?>
343
					<script type="text/javascript">
344
 
345
						jQuery(document).ready(function() {
346
 
347
							jQuery('.wpsg_add_basket_<?php echo $this->getTemplateIndex(); ?>').bind('click', function() {
348
 
349
								wpsg_blockProductTemplate(<?php echo $this->getTemplateIndex(); ?>);
350
 
351
								jQuery.ajax( {
352
									url: '<?php echo $this->getURL(wpsg_ShopController::URL_BASKET); ?>',
353
									data: {
354
										'wpsg_form_data': jQuery('#wpsg_produktform_<?php echo $this->getTemplateIndex(); ?>').serialize(),
355
										'wpsg[ajax]': '1',
356
										'wpsg[submit]': '1'
357
									},
358
									success: function(data) {
359
 
360
                                        wpsg_refreshBasketWidget();
361
 
362
										<?php if ($this->get_option('wpsg_afterinsert') == '2') { ?>
363
 
364
											tb_show('<?php echo __('Ihr Warenkorb', 'wpsg'); ?>', '<?php echo $this->getURL(wpsg_ShopController::URL_BASKET_AJAX); ?>&height=500');
365
 
366
										<?php } else { ?>
367
 
368
											jQuery('body').append(data);
369
 
370
										<?php } ?>
371
 
372
										wpsg_unblockProductTemplate(<?php echo $this->getTemplateIndex(); ?>);
373
 
374
									}
375
								} );
376
 
377
								return false;
378
 
379
							} );
380
 
381
						} );
382
 
383
					</script>
384
					<?php } ?>
385
 
386
				</div>
387
				<?php } ?>
388
			</div>
389
		</div>
390
 
391
		<div class="wpsg_clear"></div>
392
 
393
		<?php if ($this->hasMod('wpsg_mod_request') && $this->callMod('wpsg_mod_request', 'isRequestProduct', array($this->view['data']['id']))) { ?>
394
			<label class="wpsg_amount_label" for="wpsg_menge_<?php echo $this->getTemplateIndex(); ?>"><?php echo __('Anzahl', 'wpsg'); ?></label>
395
			<input type="text" value="<?php echo ((wpsg_isSizedInt($this->view['data']['menge']))?$this->view['data']['menge']:'1'); ?>" name="wpsg[menge]" class="wpsg_menge" id="wpsg_menge_<?php echo $this->getTemplateIndex(); ?>" <?php echo (($this->view['data']['basket_multiple'] == 4)?' readonly="readonly" ':''); ?> />
396
 
397
			<input class="wpsg_button wpsg_add_requestlist" id="wpsg_add_requestlist_<?php echo $this->getTemplateIndex(); ?>" type="submit" value="<?php echo __('Auf die Anfrageliste', 'wpsg'); ?>" name="wpsg[submit_request]" />
398
		<?php } ?>
399
 
400
		<?php /* Produktlangbeschreibung START */ ?>
401
		<div class="wpsg_product_informationarea">
402
 
403
			<?php if (strlen(trim($this->view['data']['longdescription'])) > 0) { ?>
404
			<div class="wpsg_product_information_large">
405
				<div class="wpsg_produkt_additional_information">
406
					<div itemprop="description" class="wpsg_produkt_longdescription">
407
						<span><?php echo $this->view['data']['longdescription']; ?></span>
408
					</div>
409
				</div>
410
			</div>
411
			<?php } ?>
412
 
413
		</div>
414
		<?php /* Produktlangbeschreibung ENDE */ ?>
415
 
416
		<?php /* zusätzliche Informationen START */ ?>
417
		<div class="wpsg_product_informationarea">
418
 
419
			<?php if (strlen(trim($this->view['data']['moreinfos'])) > 0) { ?>
420
			<div class="wpsg_product_information_large">
421
				<div class="wpsg_produkt_additional_information">
422
					<div itemprop="description" class="wpsg_produkt_moreinfos">
423
						<span><?php echo $this->view['data']['moreinfos']; ?></span>
424
					</div>
425
				</div>
426
			</div>
427
			<?php } ?>
428
 
429
		</div>
430
		<?php /* zusätzliche Informationen ENDE */ ?>
431
 
432
		<?php /* zusätzliche Lieferumfang START */ ?>
433
		<div class="wpsg_product_informationarea">
434
 
435
			<?php if (strlen(trim($this->view['data']['moreinfos2'])) > 0) { ?>
436
			<div class="wpsg_product_information_large">
437
				<div class="wpsg_produkt_additional_information">
438
					<div itemprop="description" class="wpsg_produkt_moreinfos2">
439
						<span><?php echo $this->view['data']['moreinfos2']; ?></span>
440
					</div>
441
				</div>
442
			</div>
443
			<?php } ?>
444
 
445
		</div>
446
		<?php /* zusätzliche Lieferumfang ENDE */ ?>
447
 
448
		<div class="wpsg_clear"></div>
449
 
450
		<?php /* Social Media Integration */ ?>
451
		<div class="wpsg_product_social_media">
452
			<?php if (is_plugin_active('plugin-directory/shariff.php')) {?>
453
				<?php echo do_shortcode('[shariff]')?>
454
			<?php } ?>
455
		</div>
456
 
457
	</div>
458
 
459
</div>