Issue #4035 Fixed
This commit is contained in:
parent
b05863e669
commit
1d43eb00a6
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
<meta name="twitter:title" content="{{ $product->name }}" />
|
||||
|
||||
<meta name="twitter:description" content="{!! $product->description !!}" />
|
||||
<meta name="twitter:description" content="{!! htmlspecialchars(trim(strip_tags($product->description))) !!}" />
|
||||
|
||||
<meta name="twitter:image:alt" content="" />
|
||||
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
<meta property="og:image" content="{{ $productBaseImage['medium_image_url'] }}" />
|
||||
|
||||
<meta property="og:description" content="{!! $product->description !!}" />
|
||||
<meta property="og:description" content="{!! htmlspecialchars(trim(strip_tags($product->description))) !!}" />
|
||||
|
||||
<meta property="og:url" content="{{ route('shop.productOrCategory.index', $product->url_key) }}" />
|
||||
@stop
|
||||
|
|
|
|||
Loading…
Reference in New Issue