{"id":4759,"date":"2021-01-23T20:23:06","date_gmt":"2021-01-23T20:23:06","guid":{"rendered":"https:\/\/essentials.pixfort.com\/knowledge-base\/?p=4759"},"modified":"2023-01-26T16:18:49","modified_gmt":"2023-01-26T16:18:49","slug":"how-to-hide-specific-product-elements","status":"publish","type":"post","link":"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/","title":{"rendered":"How to hide specific Product elements"},"content":{"rendered":"

[vc_row pix_particles_check=””][vc_column][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row][vc_row pix_particles_check=”” css=”.vc_custom_1611433583121{margin-bottom: 40px !important;}”][vc_column]

<\/defs> <\/path> <\/polygon> <\/g> <\/svg><\/div><\/div>
Remove WooCommerce SKU field<\/h5>
<\/div><\/div><\/div><\/a>[vc_wp_text]<\/p>\n
\n

You can hide the Woocommerce SKU field by adding this line of code into\u00a0functions.php<\/b>\u00a0file in the child theme:<\/p>\n<\/div>\n

\n
add_filter( 'wc_product_sku_enabled', '__return_false' );<\/pre>\n<\/div>\n
\n

Or you can hide it via custom css by adding the following code snippet into Theme options > Layout > Advanced > Custom css<\/b>\u00a0:<\/p>\n<\/div>\n

\n
.sku_wrapper {\n    display: none !important;\n}<\/pre>\n<\/div>\n

[\/vc_wp_text][\/vc_column][\/vc_row][vc_row pix_particles_check=”” css=”.vc_custom_1611433583121{margin-bottom: 40px !important;}”][vc_column]

<\/defs> <\/path> <\/path> <\/g> <\/svg><\/div><\/div>
Hide the Social share buttons field<\/h5>
<\/div><\/div><\/div><\/a>[vc_wp_text]<\/p>\n
\n
\n

You can hide the Social share buttons field in the product pages from Theme options > Shop > Advanced >\u00a0<\/b>Disable shop social share buttons.<\/strong><\/p>\n<\/div>\n<\/div>\n

[\/vc_wp_text][\/vc_column][\/vc_row][vc_row disable_element=”yes” pix_particles_check=”” css=”.vc_custom_1647538307001{margin-bottom: 40px !important;}”][vc_column]

<\/defs> <\/path> <\/path> <\/g> <\/svg><\/div><\/div>
Hide the Social share buttons field<\/h5>
<\/div><\/div><\/div><\/a>[vc_wp_text]<\/p>\n
\n
\n

You can hide the Social share buttons field by adding the following code snippet into Theme options > Layout > Advanced > Custom css<\/b>\u00a0:<\/div>\n

\n
.product .pix_post_social {\n\u00a0 \u00a0 display: none !important;\n}<\/pre>\n<\/div>\n<\/div>\n

[\/vc_wp_text][\/vc_column][\/vc_row][vc_row pix_particles_check=”” css=”.vc_custom_1611433583121{margin-bottom: 40px !important;}”][vc_column]

<\/defs> <\/path> <\/g> <\/svg><\/div><\/div>
Hide the entire meta area (including the tags area)<\/h5>
<\/div><\/div><\/div><\/a>[vc_wp_text]<\/p>\n
\n
\n
\n

If you want to hide the entire meta area (including the tags area), you can add the following code snippet into Theme options > Layout > Advanced > Custom css<\/b>:<\/p>\n<\/div>\n

\n
.product_meta {\n    display: none !important;\n}<\/pre>\n<\/div>\n<\/div>\n<\/div>\n

[\/vc_wp_text][\/vc_column][\/vc_row][vc_row pix_particles_check=”” css=”.vc_custom_1611433583121{margin-bottom: 40px !important;}”][vc_column]

<\/defs> <\/path> <\/g> <\/svg><\/div><\/div>
Hide the Tags<\/h5>
<\/div><\/div><\/div><\/a>[vc_wp_text]<\/p>\n
\n
\n
\n

If you want to hide the single product tags, you can add the following code snippet into Theme options > Layout > Advanced > Custom css<\/b>:<\/p>\n<\/div>\n

\n
.product_meta .tagged_as {\n    display: none !important;\n}<\/pre>\n<\/div>\n<\/div>\n<\/div>\n

[\/vc_wp_text][\/vc_column][\/vc_row][vc_row pix_particles_check=”” css=”.vc_custom_1611433583121{margin-bottom: 40px !important;}”][vc_column]

<\/defs> <\/path> <\/g> <\/svg><\/div><\/div>
Remove Single Product Categories<\/h5>
<\/div><\/div><\/div><\/a>[vc_wp_text]<\/p>\n
\n
\n
\n

If you want to remove the product categories from the product single page meta area, you can add the following code snippet into functions.php <\/b>file into your child theme:<\/p>\n<\/div>\n

\n
add_action( 'init', 'custom_remove_cats_action');\nfunction custom_remove_cats_action() {\n   remove_action( 'woocommerce_single_product_summary', 'action_pixfort_product_cats', 6 );\n}\n<\/pre>\n<\/div>\n<\/div>\n<\/div>\n

[\/vc_wp_text][\/vc_column][\/vc_row][vc_row pix_particles_check=”” css=”.vc_custom_1611433583121{margin-bottom: 40px !important;}”][vc_column]

<\/defs> <\/path> <\/path> <\/g> <\/svg><\/div><\/div>
Remove the product description Title<\/h5>
<\/div><\/div><\/div><\/a>[vc_wp_text]<\/p>\n
\n
\n
\n

If you want to remove the product Description title from the product single page, you can add the following code snippet into functions.php <\/b>file into your child theme:<\/p>\n<\/div>\n

\n
add_filter( 'woocommerce_product_description_heading', '__return_null' );\n<\/pre>\n<\/div>\n<\/div>\n<\/div>\n

[\/vc_wp_text][\/vc_column][\/vc_row][vc_row pix_particles_check=”” css=”.vc_custom_1611433583121{margin-bottom: 40px !important;}”][vc_column]

<\/defs> <\/rect> <\/rect> <\/g> <\/svg><\/div><\/div>
Hide category badges for products<\/h5>
<\/div><\/div><\/div><\/a>[vc_column_text]<\/p>\n
\n
\n
\n
\n
\n
\n
\n

If you are looking to hide the category badges for products you can add this code snippet into Theme options > Layout > Advanced > Custom css:<\/p>\n

<\/b><\/p>\n<\/div>\n

\n
.woocommerce .product .pix-item-badges {\n    display: none !important;\n}<\/pre>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n

[\/vc_column_text]

\"Image<\/div><\/div>[\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"[vc_row pix_particles_check=””][vc_column][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row][vc_row pix_particles_check=”” css=”.vc_custom_1611433583121{margin-bottom: 40px !important;}”][vc_column][vc_wp_text] You can hide the Woocommerce SKU field by adding this line of code into\u00a0functions.php\u00a0file in the child theme: add_filter( ‘wc_product_sku_enabled’, ‘__return_false’ ); Or you can hide it via custom css by adding the following…","protected":false},"author":1,"featured_media":4756,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[42,16,60],"tags":[146,177,180,176,182,183,7,178,179,130,181,112],"yoast_head":"\nHow to hide specific Product elements - Essentials Knowledge base<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to hide specific Product elements - Essentials Knowledge base\" \/>\n<meta property=\"og:description\" content=\"[vc_row pix_particles_check=””][vc_column][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row][vc_row pix_particles_check=”” css=”.vc_custom_1611433583121{margin-bottom: 40px !important;}”][vc_column][vc_wp_text] You can hide the Woocommerce SKU field by adding this line of code into\u00a0functions.php\u00a0file in the child theme: add_filter( 'wc_product_sku_enabled', '__return_false' ); Or you can hide it via custom css by adding the following...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/\" \/>\n<meta property=\"og:site_name\" content=\"Essentials Knowledge base\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/pixfort\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-23T20:23:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-26T16:18:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-content\/uploads\/sites\/33\/2021\/01\/hide-specific-product-elements.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"pixfort\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pixfort\" \/>\n<meta name=\"twitter:site\" content=\"@pixfort\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"pixfort\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/\"},\"author\":{\"name\":\"pixfort\",\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/#\/schema\/person\/ce28d19c64aa87116b0fc2685df067b6\"},\"headline\":\"How to hide specific Product elements\",\"datePublished\":\"2021-01-23T20:23:06+00:00\",\"dateModified\":\"2023-01-26T16:18:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/\"},\"wordCount\":916,\"publisher\":{\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/#organization\"},\"image\":{\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-content\/uploads\/sites\/33\/2021\/01\/hide-specific-product-elements.png\",\"keywords\":[\"button\",\"customize\",\"facebook\",\"hide\",\"meta\",\"product page\",\"Products\",\"SKU\",\"social share\",\"tags\",\"twitter\",\"woocommerce\"],\"articleSection\":[\"Advanced\",\"FAQ\",\"Tips & tricks\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/\",\"url\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/\",\"name\":\"How to hide specific Product elements - Essentials Knowledge base\",\"isPartOf\":{\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-content\/uploads\/sites\/33\/2021\/01\/hide-specific-product-elements.png\",\"datePublished\":\"2021-01-23T20:23:06+00:00\",\"dateModified\":\"2023-01-26T16:18:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/#primaryimage\",\"url\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-content\/uploads\/sites\/33\/2021\/01\/hide-specific-product-elements.png\",\"contentUrl\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-content\/uploads\/sites\/33\/2021\/01\/hide-specific-product-elements.png\",\"width\":1200,\"height\":800},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to hide specific Product elements\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/#website\",\"url\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/\",\"name\":\"Essentials Knowledge base\",\"description\":\"made by pixfort\",\"publisher\":{\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/#organization\",\"name\":\"pixfort\",\"url\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-content\/uploads\/sites\/33\/2020\/07\/support-logo-dark-clean.png\",\"contentUrl\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-content\/uploads\/sites\/33\/2020\/07\/support-logo-dark-clean.png\",\"width\":322,\"height\":110,\"caption\":\"pixfort\"},\"image\":{\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/pixfort\",\"https:\/\/twitter.com\/pixfort\",\"https:\/\/www.instagram.com\/pixfort\/\",\"https:\/\/www.linkedin.com\/company\/pixfort\",\"https:\/\/www.youtube.com\/c\/Pixfort\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/#\/schema\/person\/ce28d19c64aa87116b0fc2685df067b6\",\"name\":\"pixfort\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f5c4155e987c6ab4b3e8278828fe024c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f5c4155e987c6ab4b3e8278828fe024c?s=96&d=mm&r=g\",\"caption\":\"pixfort\"},\"description\":\"Hey, this is pixfort support team, if you still need help you can always reach us via the chat messenger in your account on pixfort hub\",\"sameAs\":[\"http:\/\/hub.pixfort.com\"],\"url\":\"https:\/\/essentials.pixfort.com\/knowledge-base\/author\/pixfort\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to hide specific Product elements - Essentials Knowledge base","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/","og_locale":"en_US","og_type":"article","og_title":"How to hide specific Product elements - Essentials Knowledge base","og_description":"[vc_row pix_particles_check=””][vc_column][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row][vc_row pix_particles_check=”” css=”.vc_custom_1611433583121{margin-bottom: 40px !important;}”][vc_column][vc_wp_text] You can hide the Woocommerce SKU field by adding this line of code into\u00a0functions.php\u00a0file in the child theme: add_filter( 'wc_product_sku_enabled', '__return_false' ); Or you can hide it via custom css by adding the following...","og_url":"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/","og_site_name":"Essentials Knowledge base","article_publisher":"https:\/\/www.facebook.com\/pixfort","article_published_time":"2021-01-23T20:23:06+00:00","article_modified_time":"2023-01-26T16:18:49+00:00","og_image":[{"width":1200,"height":800,"url":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-content\/uploads\/sites\/33\/2021\/01\/hide-specific-product-elements.png","type":"image\/png"}],"author":"pixfort","twitter_card":"summary_large_image","twitter_creator":"@pixfort","twitter_site":"@pixfort","twitter_misc":{"Written by":"pixfort","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/#article","isPartOf":{"@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/"},"author":{"name":"pixfort","@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/#\/schema\/person\/ce28d19c64aa87116b0fc2685df067b6"},"headline":"How to hide specific Product elements","datePublished":"2021-01-23T20:23:06+00:00","dateModified":"2023-01-26T16:18:49+00:00","mainEntityOfPage":{"@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/"},"wordCount":916,"publisher":{"@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/#organization"},"image":{"@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/#primaryimage"},"thumbnailUrl":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-content\/uploads\/sites\/33\/2021\/01\/hide-specific-product-elements.png","keywords":["button","customize","facebook","hide","meta","product page","Products","SKU","social share","tags","twitter","woocommerce"],"articleSection":["Advanced","FAQ","Tips & tricks"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/","url":"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/","name":"How to hide specific Product elements - Essentials Knowledge base","isPartOf":{"@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/#website"},"primaryImageOfPage":{"@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/#primaryimage"},"image":{"@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/#primaryimage"},"thumbnailUrl":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-content\/uploads\/sites\/33\/2021\/01\/hide-specific-product-elements.png","datePublished":"2021-01-23T20:23:06+00:00","dateModified":"2023-01-26T16:18:49+00:00","breadcrumb":{"@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/#primaryimage","url":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-content\/uploads\/sites\/33\/2021\/01\/hide-specific-product-elements.png","contentUrl":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-content\/uploads\/sites\/33\/2021\/01\/hide-specific-product-elements.png","width":1200,"height":800},{"@type":"BreadcrumbList","@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/how-to-hide-specific-product-elements\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/essentials.pixfort.com\/knowledge-base\/"},{"@type":"ListItem","position":2,"name":"How to hide specific Product elements"}]},{"@type":"WebSite","@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/#website","url":"https:\/\/essentials.pixfort.com\/knowledge-base\/","name":"Essentials Knowledge base","description":"made by pixfort","publisher":{"@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/essentials.pixfort.com\/knowledge-base\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/#organization","name":"pixfort","url":"https:\/\/essentials.pixfort.com\/knowledge-base\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/#\/schema\/logo\/image\/","url":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-content\/uploads\/sites\/33\/2020\/07\/support-logo-dark-clean.png","contentUrl":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-content\/uploads\/sites\/33\/2020\/07\/support-logo-dark-clean.png","width":322,"height":110,"caption":"pixfort"},"image":{"@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/pixfort","https:\/\/twitter.com\/pixfort","https:\/\/www.instagram.com\/pixfort\/","https:\/\/www.linkedin.com\/company\/pixfort","https:\/\/www.youtube.com\/c\/Pixfort"]},{"@type":"Person","@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/#\/schema\/person\/ce28d19c64aa87116b0fc2685df067b6","name":"pixfort","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/essentials.pixfort.com\/knowledge-base\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f5c4155e987c6ab4b3e8278828fe024c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f5c4155e987c6ab4b3e8278828fe024c?s=96&d=mm&r=g","caption":"pixfort"},"description":"Hey, this is pixfort support team, if you still need help you can always reach us via the chat messenger in your account on pixfort hub","sameAs":["http:\/\/hub.pixfort.com"],"url":"https:\/\/essentials.pixfort.com\/knowledge-base\/author\/pixfort\/"}]}},"_links":{"self":[{"href":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/4759"}],"collection":[{"href":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-json\/wp\/v2\/comments?post=4759"}],"version-history":[{"count":22,"href":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/4759\/revisions"}],"predecessor-version":[{"id":6647,"href":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/4759\/revisions\/6647"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-json\/wp\/v2\/media\/4756"}],"wp:attachment":[{"href":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-json\/wp\/v2\/media?parent=4759"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-json\/wp\/v2\/categories?post=4759"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/essentials.pixfort.com\/knowledge-base\/wp-json\/wp\/v2\/tags?post=4759"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}