Перейти к публикации
View in the app

A better way to browse. Learn more.

Дизайн и модификация Invision Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Разметка страницы itemListElement

Опубликовано:

В консоли гугла вдруг стали появляться страницы с ошибками, ругается на "Отсутствует поле "itemListElement" " типа в "type BreadcrumbList" ссылается на код разметки

<script type='application/ld+json'>
{
   "@context": "http://schema.org",
   "@type": "BreadcrumbList",
   "itemListElement": []
}	
</script>

Ошибки на страницах категорий форума, посмотрел в исходном коде действительно во всех категориях эти данные отсутствуют, в разделах уже присутствуют и там идет название категории, посмотрел на офсайте напрмиер у этой категории https://invisioncommunity.com/forums/forum/307-community-led-resources/ там разметка присутвует и ссылается на главную страницу(Forums) то есть в исходном коде вот так

<script type='application/ld+json'>
{
   "@context": "http://schema.org",
   "@type": "BreadcrumbList",
   "itemListElement": [
       {
           "@type": "ListItem",
           "position": 1,
           "item": {
               "@id": "https://invisioncommunity.com/forums/",
               "name": "Forums"
           }
       }
   ]
}	
</script>

Тут возникает вопрос почему отсутствует и как поправить?

Рекомендованные сообщения

Опубликовано:

system/Output/Output.php

 

Было

 

		if( \count( $this->breadcrumb ) )
	{
		$jsonLd['breadcrumbs'] = array(
			'@context'	=> "http://schema.org",
			'@type'		=> "BreadcrumbList",
			'itemListElement'	=> array(),
		);

		$position	= 1;

		foreach( $this->breadcrumb as $breadcrumb )
		{
			if( $breadcrumb[0] )
			{
				$jsonLd['breadcrumbs']['itemListElement'][] = array(
					'@type'		=> "ListItem",
					'position'	=> $position,
					'item'		=> array(
						'@id'	=> (string) $breadcrumb[0],
						'name'	=> $breadcrumb[1],
					)
				);

				$position++;
			}
		}
	}

 

Стало

 

		if( \count( $this->breadcrumb ) )
	{

		$position	= 1;
		$elements	= [];

		foreach( $this->breadcrumb as $breadcrumb )
		{
			if( $breadcrumb[0] )
			{
				$elements[] = array(
					'@type'		=> "ListItem",
					'position'	=> $position,
					'item'		=> array(
						'@id'	=> (string) $breadcrumb[0],
						'name'	=> $breadcrumb[1],
					)
				);

				$position++;
			}
		}

		if( \count( $elements ) )
		{
			$jsonLd['breadcrumbs'] = array(
				'@context'	=> "http://schema.org",
				'@type'		=> "BreadcrumbList",
				'itemListElement'	=> $elements,
			);
		}
	}

 

Создайте аккаунт или войдите в него для комментирования

Сейчас на странице 0

  • Нет пользователей, просматривающих эту страницу.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.