Google Fehlermeldung Produkte

Allgemeine Fragen zur Verwendung von wpShopGermany4 und dessen integrierten Modulen

Moderator: maennchen1.de

Gabriele Sch.
Beiträge: 630
Registriert: 22.06.2018, 09:18
Lizenz: wpShopGermany Enterprise

Re: Google Fehlermeldung Produkte

Beitrag von Gabriele Sch. »

Hallo,
ich leider nicht.
Und Dirk vom Palmenhof schweigt leider ... . Vielleicht ist es doch recht schwierig!?
Viele Grüße
Gabriele
Palmenhof
Beiträge: 17
Registriert: 15.02.2018, 15:32
Lizenz: wpShopGermany Enterprise

Re: Google Fehlermeldung Produkte

Beitrag von Palmenhof »

Hallo, Ich war jetzt 4 Wochen leider Beruflich unterwegs und konnte nicht wirklich an dem Problem arbeiten. Price und Name ist jetzt ok. Leider funktioniert es nicht mit Rabatt in den Produkten. Der Rabatt im Warenkorb funktioniert. Google merkt aber wenn ich den Code verstecke und unsichtbar mache. Habe das jetzt geändert und es läuft. Eine Hilfe brauche ich aber noch. Wie bekomme ich image rein. Das sollte dann ausreichen wenn der Shop in den Produkttemplates price, name und image generiert. Bitte gebe mir Startpilot maennchen1. Danke
Palmenhof
Beiträge: 17
Registriert: 15.02.2018, 15:32
Lizenz: wpShopGermany Enterprise

Re: Google Fehlermeldung Produkte

Beitrag von Palmenhof »

Hier mal zum Testen meine standard-bearbeitet.phtml. Ohne Garantie. War leider 4 Wochen unterwegs. Musste Pflanzen einkaufen. Hatte es unsichtbar vor Google versteckt wurde aber in ein Shop von uns sofort von Google gefunden und der Artikel ist aus den Index verschwunden. Leider seht ihr unten im Produkt die Überschrift nochmals in klein. Habe auch die H1,H2,H3 angepasst damit nicht 2 H1 Überschriften vorhanden sind. Wenn wir mit Hilfe von Maennchen1 noch etwas Hilfe bekommen haben wir das wichtigste fertig. image fehlt noch und dann hat Goggle das wichtigste. bei den unteren Template ist aber alles rote von Goggle verschwunden. Image ist nur wichtig damit die Leute in den Suchergebnissen gleich ein Bild sehen. Bitte hilf uns Maennchen1 Danke.

Code: Alles auswählen

<?php

	/*
	 * Template für das Produkt im Frontend
	 */

	//Ausgabe der verfügbaren Variablen
	//wpsg_debug($this->view['data']);

	// Damit keine Zubehörprodukte ausgegeben werden
	//$this->noReleatedProducts = true;

?>
 

<div class="wpsg_produkt_wrapper">

	<input type="hidden" name="wpsg_post_id" value="<?php echo get_the_ID(); ?>" />
	<input type="hidden" name="titleDisplayed" value="<?php echo $this->titleDisplayed; ?>" />

	<div class="wpsg_produkt wpsg_product_name">

		<?php if (!$this->titleDisplayed) { ?>
			<h3 itemprop="name" class="wpsg_producttitle""><?php echo $this->getProductName($this->view['data']['id']); ?></h3>
			<h3 itemprop="detailname" class="wpsg_productdetailtitle"><?php echo $this->view['data']['detailname']; ?></h3>	
		<?php } ?>


		<?php $this->callMods('product_top_afterheadline', array(&$this->view['data']['id'], $this->getTemplateIndex())); ?>

	</div>
	<?php $this->callMods('product_top', array(&$this->view['data']['id'], $this->getTemplateIndex())); ?>
											
	<div itemscope itemtype="http://schema.org/Product" class="wpsg_produkt wpsg_produkt_<?php echo $this->view['data']['id']; ?>">
	
																																  																																  
																																	  


		<?php /* Block für die Produktbilder START */ ?>
		<?php 
		
			/* Das ist das primäre Anzeigebild des Produktes (AttachmentID) */
			$arAttachmentID = $this->imagehandler->getAttachmentID($this->view['data']['product_key']);
		
			/* Array mit allen AttachmentIDs der Produktbilder */
			$arAttachmentIDsAll = $this->imagehandler->getAttachmentIDs($this->view['data']['product_id']);
		
		?>

		<?php if (wpsg_isSizedArray($arAttachmentIDsAll)) { ?>
		<div class="wpsg_productimages">

			<div class="wpsg_produkt_produktbilder">

				<?php if (sizeof($arAttachmentIDsAll) > 0) { for ($i = 0; $i < sizeof($arAttachmentIDsAll); $i ++) { ?>
					
					<?php /* URL für die Lightbox */ ?>
					<?php $att = wp_get_attachment_image_src($arAttachmentIDsAll[$i], array(800, 600), false); ?>
					
					<a <?php if ($arAttachmentIDsAll[$i] != $arAttachmentID) echo 'style="display:none;"'; ?> rel="gallery-wpsg-<?php echo $this->getTemplateIndex(); ?>" title="<?php echo $this->getProductName($this->view['data']['id']); ?>" href="<?php echo $att[0]; ?>" class="thickbox">

						<?php echo wp_get_attachment_image($arAttachmentIDsAll[$i], array(300, 300), false, array()); ?>
						
					</a>
					
				<?php } } ?>

			</div>

		</div>
		<?php } ?>
		<?php /* Block für die Produktbilder ENDE */ ?>

		<?php if ($this->get_option('wpsg_showArticelnumber') == '1') { ?>
		<div class="wpsg_artikelnummer">
			<?php echo __('Artikelnummer', 'wpsg'); ?>: <span class="wpsg_anr"><?php echo wpsg_hspc($this->view['data']['anr']); ?></span><br />
			<?php if (wpsg_isSizedInt($this->get_option('wpsg_mod_produktartikel_ean'))) {?>
				<?php echo __('EAN','wpsg');?>:<span class="wpsg_ean"><?php echo wpsg_hspc($this->view['data']['ean']); ?></span><br />
			<?php } ?>
			<?php if (wpsg_isSizedInt($this->get_option('wpsg_mod_produktartikel_gtin'))) {?>
				<?php echo __('GTIN','wpsg');?>:<span class="wpsg_gtin"><?php echo wpsg_hspc($this->view['data']['gtin']); ?></span><br />
			<?php }?></div>
		<?php } ?>

		<?php /* Abfrage Preisanzeige nur für eingeloggte User aktiv und User eingeloggt START*/ ?>
		<?php if ($this->view['oProduct']->canDisplayPrice()) { ?>

			<div itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="wpsg_produkt_preis">

				<meta itemprop="priceCurrency" content="<?php echo $this->get_option('wpsg_currency'); ?>" />

				<?php echo __('Stückpreis:', 'wpsg'); ?>

				<?php $oldPrice = $this->view['oProduct']->getOldPrice();  ?>
				<?php if ($oldPrice !== false && $oldPrice != $this->view['oProduct']->getPrice($this->view['data']['product_key'])) { ?>
					<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>
					<span class="wpsg_mod_productview_oldprice"><?php echo wpsg_ff($oldPrice, $this->get_option('wpsg_currency')); ?></span>
				<?php } else { ?>
					<span class="wpsg_mod_productview_price" itemprop="price"><?php echo wpsg_ff($this->view['oProduct']->getPrice($this->view['data']['product_key']), $this->get_option('wpsg_currency')); ?></span>
				<?php } ?>

			</div>

			<?php if ($this->get_option('wpsg_kleinunternehmer')) { /* Kleinunternehmerregelung aktiviert START */ ?>

				<div class="wpsg_produkt_preishinweis">
					<?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>'); ?>
				</div>

			<?php } else { /* Kleinunternehmerregelung aktiviert ENDE */ ?>

				<div class="wpsg_produkt_preishinweis">
					<?php if ($this->getFrontendTaxview() == WPSG_NETTO) { /* Frontend = NETTO Preise */ ?>
						<?php if ($this->hasMod('wpsg_mod_freeshipping') && $this->get_option('wpsg_mod_freeshipping_aktiv') == '1') { /* Versandkostenfrei aktiv */?>
							
							<?php if ($this->get_option('wpsg_mod_freeshipping_minvalue') > 0) { ?>
								<?php echo wpsg_translate(__('(zzgl. #1#% MwSt. und <a href="#3#">ab #2# € versandkostenfrei</a>)', 'wpsg'), 
									wpsg_ff($this->view['data']['mwst_value']), 
									wpsg_ff($this->get_option('wpsg_mod_freeshipping_minvalue')),
									$this->getUrl(wpsg_ShopController::URL_VERSANDKOSTEN)
								); ?>
							<?php } else { ?>
								<?php echo wpsg_translate(__('(zzgl. #1#% MwSt. und versandkostenfrei)', 'wpsg'), wpsg_ff($this->view['data']['mwst_value'])); ?>
							<?php } ?>
							
						<?php } else { ?>
							<?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>'); ?>
						<?php }?>
					<?php } else { /* Frontend = BRUTTO Preise */ ?>
						<?php if ($this->hasMod('wpsg_mod_freeshipping') && $this->get_option('wpsg_mod_freeshipping_aktiv') == '1') { /* Versandkostenfrei aktiv */ ?>
							
							<?php if ($this->get_option('wpsg_mod_freeshipping_minvalue') > 0) { ?>
								<?php echo wpsg_translate(__('(inkl. #1#% MwSt. und <a href="#3#">ab #2# € versandkostenfrei</a>)', 'wpsg'),
									wpsg_ff($this->view['data']['mwst_value']),
									wpsg_ff($this->get_option('wpsg_mod_freeshipping_minvalue')),
									$this->getUrl(wpsg_ShopController::URL_VERSANDKOSTEN)
								); ?>
							<?php } else { ?>
								<?php echo wpsg_translate(__('(inkl. #1#% MwSt. und versandkostenfrei)', 'wpsg'), wpsg_ff($this->view['data']['mwst_value'])); ?>
							<?php } ?> 
							
						<?php } else { ?>
							<?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>'); ?>
						<?php }?>
					<?php } ?>
				</div>

			<?php } ?>
			
		<?php } else {?>

			<?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.')); ?>

		<?php }?>
		<?php /* Abfrage Preisanzeige nur für eingeloggte User aktiv und User eingeloggt ENDE */ ?>

		<div itemprop="description" class="wpsg_produkt_shortdescription">
		
			<span><?php echo $this->view['data']['shortdesc']; ?></span>
			
		</div>

		<div class="wpsg_clear"></div>

		<?php /* Lagerbestand START*/?>
		<?php if ($this->hasMod('wpsg_mod_stock') && $this->get_option('wpsg_mod_stock_showProduct') == '1') { ?>
		
		<div class="wpsg_mod_produktindex_stock">
		
			<?php if (($this->view['data']['stock']) > '0') {?>		
				
                <label><?php echo __('Lagerbestand', 'wpsg'); ?></label>
                <?php echo wpsg_translate(__('#1# Artikel auf Lager','wpsg'), $this->view['data']['stock']);  ?>
			
			<?php } else { ?>
			 
			 	<label><?php echo wpsg_translate(__('', 'wpsg')); ?></label>
			
			<?php } ?>	
		
		</div>
		<?php } ?>
		<?php /* Lagerbestand ENDE*/?>

		<?php /* Füllmengenanzeige START */ ?>
		<?php if ($this->hasMod('wpsg_mod_fuellmenge')) { ?>
		
			<div class="wpsg_produkt_fuellmenge">
			
				<?php if (($this->view['data']['fmenge']) > '0') { ?>
				
					<span class="label label_fuellmenge"><?php echo wpsg_translate(__('Füllmenge:', 'wpsg')); ?></span>
					
					<?php echo wpsg_translate(__('#1# (#2# / #3#)', 'wpsg'),							
						'<span class="wpsg_fmenge">'.wpsg_ff($this->view['data']['fmenge'], '', true).'</span> '.$this->view['data']['feinheit'],
						'<span class="fmenge_preis">'.wpsg_ff($this->view['data']['fmenge_preis'], $this->get_option('wpsg_currency')).'</span> ',
						wpsg_ff($this->get_option('wpsg_mod_fuellmenge_bezug'), $this->view['data']['feinheit'])
					); ?>
					
				<?php } else { ?>
				
					<label><?php echo wpsg_translate(__('', 'wpsg')); ?></label>
					
				<?php } ?>
				
			</div>

		<?php } ?>
		<?php /* Füllmengenanzeige ENDE */ ?>

		<?php /* Gewichtsanzeige START */ ?>
		<?php if ($this->hasMod('wpsg_mod_weight') && $this->get_option('wpsg_mod_weight_showProduct') === '1') { ?>
		<div class="wpsg_mod_weight_produkt">
			
			<?php if (($this->view['data']['weight']) > '0') { ?>
				<span class="label label_weight"><?php echo wpsg_translate(__('Gewicht:', 'wpsg')); ?></span>
				<?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')); ?>
			<?php } else { ?>
				<label><?php wpsg_translate(__('', 'wpsg'))?></label>
			<?php } ?>
		</div>
		<?php } ?>
		<?php /* Gewichtsanzeige ENDE */ ?>

		<?php /* Lieferzeit Anzeige START */ ?>
		<?php if ($this->hasMod('wpsg_mod_deliverytime') && $this->get_option('wpsg_mod_deliverytime_show_product') == '1') { ?>

			<?php /* Produkt nur im Store, nicht im Onlineshop vorhanden */ ?>
			<?php if ($this->callMod('wpsg_mod_deliverytime', 'isStoreProduct', array($this->view['data']['product_key']))) { ?>
	
				<div class="wpsg_product_only_store"><?php echo __($this->callMod('wpsg_mod_deliverytime', 'displayStoreText', array($this->view['data']['product_key']))); ?></div>
	
				<?php $stl = 0; $stl = $this->callMod('wpsg_mod_deliverytime', 'displayStoreLink', array($this->view['data']['product_key'])) ?>
				<?php if (wpsg_isSizedInt($stl)) { ?>
					
					&nbsp;<a href="<?php echo get_permalink($stl); ?>"><?php echo __('So erreichen Sie uns.'); ?></a>
					
				<?php } ?>
	
			<?php } else { ?>				
	
				<?php $strDelayNote = $this->callMod('wpsg_mod_deliverytime', 'displayDelayTime', array($this->view['data']['product_key'])); ?>
				<?php if (wpsg_isSizedString($strDelayNote)) { ?>
						
					<div class="wpsg_mod_deliverytime_offline">
					
						<div class="wpsg_mod_deliverytime_delay"><?php echo wpsg_hspc($strDelayNote); ?></div>
					
					</div>
						
				<?php } else { ?>
				
				<div class="wpsg_mod_deliverytime">
					<span class="label label_deliverytime"><?php echo wpsg_translate(__('Lieferzeit:', 'wpsg')); ?></span>
					<?php echo $this->callMod('wpsg_mod_deliverytime', 'displayDeliveryTime', array($this->view['data']['product_key'])); ?>
				</div>	
						
				<?php } ?>
	
			<?php } ?>
			
		<?php } ?>
		<?php /* Lieferzeit Anzeige ENDE */ ?>

		<?php /* Produktkurzbeschreibung START */ ?>
		<div class="wpsg_product_informationarea">

			<?php if (strlen(trim($this->view['data']['beschreibung'])) > 0) { ?>
			<div class="wpsg_product_information_short">
				<div class="wpsg_produkt_additional_information">
					<div itemprop="description" class="wpsg_produkt_shortdescription">
						<span><?php echo $this->view['data']['beschreibung']; ?></span>
					</div>
				</div>
			</div>
			<?php } ?>

		</div>
		<?php /* Produktkurzbeschreibung ENDE */ ?>

		<?php /* Varianten START */ ?>
		<div class="wpsg_produkt_varianten">
			<?php echo $this->callMod('wpsg_mod_productvariants', 'renderTemplate', array($this->view['data']['product_key'])); ?>
		</div>
		<?php /* Varianten ENDE */ ?>
		
		<?php $this->callMods('product_bottom', array(&$this->view['data']['product_key'], $this->getTemplateIndex())); ?>
		
		<div class="wpsg_product_buttonarea">
			<div class="wpsg_product_buttons_add_basket">
				<?php if ($this->view['oProduct']->canOrder()) { ?>
				<div class="wpsg_produkt_add_basket_wrapper">

					<label class="wpsg_amount_label" for="wpsg_menge_<?php echo $this->getTemplateIndex(); ?>"><?php echo __('Anzahl', 'wpsg'); ?></label>

					<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" ':''); ?> />
							
					<?php /* Urlaubsmodus aktiv */ ?>
					<?php if ($this->hasMod('wpsg_mod_deliverytime') && ($this->get_option('wpsg_mod_deliverytime_holiday') == '1')) { ?>
						
						<?php if ($this->callMod('wpsg_mod_deliverytime', 'holiday', array($this->view['data']['product_key']))) { ?>
						
							<div class="wpsg_product_deliverytime_holiday" style="height:50px; padding:10px; width:50%; float:right; border:1px solid #ff0000;">
																													
								<?php echo __($this->callMod('wpsg_mod_deliverytime', 'displayHolidaytext', array($this->view['data']['product_key']))); ?>
								
							</div>					
					
						<?php } ?>
							
					<?php } else {?>
					
						<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]" />
					
					<?php } ?>
					
					<?php if (in_array($this->get_option('wpsg_afterinsert'), array('2', '3'))) { ?>
					<script type="text/javascript">

						jQuery(document).ready(function() {

							jQuery('.wpsg_add_basket_<?php echo $this->getTemplateIndex(); ?>').bind('click', function() {

								wpsg_blockProductTemplate(<?php echo $this->getTemplateIndex(); ?>);

								jQuery.ajax( {
									url: '<?php echo $this->getURL(wpsg_ShopController::URL_BASKET); ?>',
									data:
									{
										'wpsg_form_data': jQuery('#wpsg_produktform_<?php echo $this->getTemplateIndex(); ?>').serialize(),
										'wpsg[ajax]': '1',
										'wpsg[submit]': '1'
									},
									success: function(data)
									{

                                        wpsg_refreshBasketWidget();

										<?php if ($this->get_option('wpsg_afterinsert') == '2') { ?>
										tb_show('<?php echo __('Ihr Warenkorb', 'wpsg'); ?>', '<?php echo $this->getURL(wpsg_ShopController::URL_BASKET_AJAX); ?>&height=500');
										<?php } else { ?>

										wpsg_unblockProductTemplate(<?php echo $this->getTemplateIndex(); ?>);
										jQuery('body').append(data);

										<?php } ?>

									}
								} );

								return false;

							} );

						} );

					</script>
					<?php } ?>

				</div>
				<?php } ?>
			</div>
		</div>

		<div class="wpsg_clear"></div>

		<?php if ($this->hasMod('wpsg_mod_request') && $this->callMod('wpsg_mod_request', 'isRequestProduct', array($this->view['data']['id']))) { ?>
			<label class="wpsg_amount_label" for="wpsg_menge_<?php echo $this->getTemplateIndex(); ?>"><?php echo __('Anzahl', 'wpsg'); ?></label>
			<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" ':''); ?> />
		
			<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]" />
		<?php } ?>

		<?php /* Produktlangbeschreibung START */ ?>
		<div class="wpsg_product_informationarea">

			<?php if (strlen(trim($this->view['data']['longdescription'])) > 0) { ?>
			<div class="wpsg_product_information_large">
				<div class="wpsg_produkt_additional_information">
					<div itemprop="description" class="wpsg_produkt_longdescription">
						<span><?php echo $this->view['data']['longdescription']; ?></span>
					</div>
				</div>
			</div>
			<?php } ?>

		</div>
		<?php /* Produktlangbeschreibung ENDE */ ?>
		
		<?php /* zusätzliche Informationen START */ ?>
		<div class="wpsg_product_informationarea">

			<?php if (strlen(trim($this->view['data']['moreinfos'])) > 0) { ?>
			<div class="wpsg_product_information_large">
				<div class="wpsg_produkt_additional_information">
					<div itemprop="description" class="wpsg_produkt_moreinfos">
						<span><?php echo $this->view['data']['moreinfos']; ?></span>
					</div>
				</div>
			</div>
			<?php } ?>

		</div>
		<?php /* zusätzliche Informationen ENDE */ ?>

		<div class="wpsg_clear"></div>

		<?php /* Social Media Integration */ ?>
		<div class="wpsg_product_social_media">
			<?php if (is_plugin_active('plugin-directory/shariff.php')) {?>
				<?php echo do_shortcode('[shariff]')?>
			<?php } ?>
		</div>
<span itemprop="name"><?php echo $this->getProductName($this->view['data']['id']); ?></span>

	</div>

</div>
Gabriele Sch.
Beiträge: 630
Registriert: 22.06.2018, 09:18
Lizenz: wpShopGermany Enterprise

Re: Google Fehlermeldung Produkte

Beitrag von Gabriele Sch. »

Hallo Dirk,

g r o ß a r t i g! und danke für's teilen.
Mal sehen was das M1-Team dazu sagen wird.

Sonnige Grüße
Gabriele
onic
Beiträge: 236
Registriert: 20.10.2017, 20:17
Lizenz: wpShopGermany Enterprise

Re: Google Fehlermeldung Produkte

Beitrag von onic »

Hallo Dirk,

ja, super! VIELEN DANK für deine Arbeit und das Teilen.

Herzliche Grüße aus Berlin von

Christian
fistwerk
Beiträge: 18
Registriert: 09.09.2019, 22:01
Lizenz: keine

Re: Google Fehlermeldung Produkte

Beitrag von fistwerk »

Hallo!

So ganz sind wir noch nicht am Ziel...

Für den ersten Artikel bekomme ich folgenden Fehler:
Testtool für strukturierte Daten.png
Bei den anderen Artikel wird ein Preis angeziegt, aber das Format scheint ungültig.

Und btw: Vielen, vielen Lieben Dank an meinen Namensfetter vom Palemnhof!

Greets
Dirk us Kölle
Benutzeravatar
maennchen1.de
Administrator
Beiträge: 17869
Registriert: 14.08.2003, 16:55
Lizenz: wpShopGermany Enterprise
Wohnort: Thüringen, Ellersleben
Kontaktdaten:

Re: Google Fehlermeldung Produkte

Beitrag von maennchen1.de »

Niemand weiß, was du genau gemacht hast und was nicht. Da müsstest du etwas ausführlicher werden. ;)
Hilfreich wäre zum Beispiel eine URL.
Kein Support per PN! Alle Fragen beantworten wir hier im Forum. Per PN bitte nur Passwörter, Namen und URLs - sofern notwendig.
Bitte vor dem posten lesen:
Wie poste ich eine Frage zu einem Problem?
FAQ / häufig gestellte Fragen
Anzeige-Fehler / Funktionsfehler in wpShopGermany erkennen und selbst beheben
PHTML-Dateien richtig verwenden (für eigene Anpassungen)
Gabriele Sch.
Beiträge: 630
Registriert: 22.06.2018, 09:18
Lizenz: wpShopGermany Enterprise

Re: Google Fehlermeldung Produkte

Beitrag von Gabriele Sch. »

Guten Morgen in die Runde,

herzlichen Dank das Ihr da dran seit.
fistwerk
Beiträge: 18
Registriert: 09.09.2019, 22:01
Lizenz: keine

Re: Google Fehlermeldung Produkte

Beitrag von fistwerk »

Hallo!

Ich habe den Code von Palemhof 1zu1 übernommen in mein Template.
https://www.fistwerk.de/sling-komplett- ... l-schwarz/

Dies ist deu URL der eite die ich bei google gestestet habe.

Greets

Dirk
fistwerk
Beiträge: 18
Registriert: 09.09.2019, 22:01
Lizenz: keine

Re: Google Fehlermeldung Produkte

Beitrag von fistwerk »

Ich habe schon herausgefunden, das bei "Price" nur die zahl, nicht aber "EUR" markeirt werden darf.
Wenn wir das Ändern werden die Produkte schon mal korrekt erkannt.

Dann brauche wir nur noch
availability
url
und
image

einbinden. Dann wäre es perfekt.

Ich selber bin damit leider total überfordert, egal wieviel ich hier bastele.

Vielen lieben Dank!
Antworten