{"id":16560,"date":"2022-10-20T03:46:08","date_gmt":"2022-10-19T22:16:08","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/"},"modified":"2022-10-20T03:46:08","modified_gmt":"2022-10-19T22:16:08","slug":"solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/","title":{"rendered":"[Solved] sidebar on the shop page is not showing but showing in blog and single product pages only [closed]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-70943240\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"70943240\" data-parentid=\"70905019\" data-score=\"0\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p><strong>Answer<\/strong>:   To make appear sidebar in shop page or else first we should check some default possible ways .<\/p>\n<p><strong>step 1<\/strong>:  check in theme customising- layout&amp;styling the size of layout switched to full width.(<a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-sidebar-on-the-shop-page-is-not-showing-but.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-sidebar-on-the-shop-page-is-not-showing-but.png\" alt=\"image1\"><\/a>)<\/p>\n<p><strong>step 2<\/strong>:  after clicking widget option to customise widget in the shop page ,if you see notice as &#8216;your theme has 5 widget areas but this particular page dosen&#8217;t display them &#8230;&#8230;.&#8217; (<a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-sidebar-on-the-shop-page-is-not-showing-but.jpg\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-sidebar-on-the-shop-page-is-not-showing-but.jpg\" alt=\"image2\"><\/a>). then this issue is showing because the code &#8216;get sidebar&#8217; for this type of page is not available . so you need to check the page type of the shop page ,is it in page type or post type .(<a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/1666217767_361_Solved-sidebar-on-the-shop-page-is-not-showing-but.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/1666217767_361_Solved-sidebar-on-the-shop-page-is-not-showing-but.png\" alt=\"image3\"><\/a>)<\/p>\n<p><strong>step 3<\/strong>: once you check shop page is page type then go to page.php in the theme file from apperance\/theme editor\/page.php (<a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/1666217768_674_Solved-sidebar-on-the-shop-page-is-not-showing-but.jpg\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/1666217768_674_Solved-sidebar-on-the-shop-page-is-not-showing-but.jpg\" alt=\"image4\"><\/a>) . and check is &#8216;get sidebar&#8217; code is available in anywhere in this page.php file .if not then write this code between &#8216;&lt; \/ div &gt; &lt; ! &#8211; &#8211; \/ # content &#8211; &#8211; &gt;&#8217; code'&lt; \/ div &gt; &#8216; . this will appear sidebar in all pages. (here is correct code format for page.php responsible for shop page):<\/p>\n<\/p>\n<div class=\"snippet\" data-lang=\"js\" data-hide=\"true\" data-console=\"true\" data-babel=\"false\">\n<div class=\"snippet-code snippet-currently-hidden\">\n<pre class=\"snippet-code-html lang-html prettyprint-override\"><code>&lt;\/div&gt; &lt;!--\/#content--&gt;\n    &lt;?php get_sidebar(); ?&gt;\n    &lt;\/div&gt; &lt;!-- .row --&gt;<\/code><\/pre>\n<\/div>\n<\/div>\n<p><strong>step 4<\/strong>: if sidebar appearing below content not in side then you should use &#8216;class row &#8216; and put code at before end of row div. it auto make two colum one for content left and one for sidebar right so that it will auto align sidebar in side of content.(<a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/1666217768_834_Solved-sidebar-on-the-shop-page-is-not-showing-but.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/1666217768_834_Solved-sidebar-on-the-shop-page-is-not-showing-but.png\" alt=\"image4\"><\/a>)<\/p>\n<p><strong>step 5<\/strong>: if you want to appear sidebar in one page like only shop page then use code-(<\/p>\n<\/p>\n<div class=\"snippet\" data-lang=\"js\" data-hide=\"true\" data-console=\"true\" data-babel=\"false\">\n<div class=\"snippet-code snippet-currently-hidden\">\n<pre class=\"snippet-code-html lang-html prettyprint-override\"><code> &lt;\/div&gt; &lt;!--\/#content--&gt;\n        &lt;?php if ( is_shop() ) :\nget_sidebar( 'shop' );\n         endif;\n        ?&gt;\n    &lt;\/div&gt; &lt;!-- .row --&gt;<\/code><\/pre>\n<\/div>\n<\/div>\n<p>) instead of simple &#8216;get_sidebar&#8217; .<\/p>\n<p><strong>conclusion<\/strong> : check type of page then check code in theme file in that page type like (page for page.php ) .then use code get sidebar to make sidebar appear in all pages in that type of page and use this code to appear in specific desired page .(<a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/1666217768_515_Solved-sidebar-on-the-shop-page-is-not-showing-but.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/1666217768_515_Solved-sidebar-on-the-shop-page-is-not-showing-but.png\" alt=\"image6\"><\/a>).<\/p>\n<\/p>\n<div class=\"snippet\" data-lang=\"js\" data-hide=\"true\" data-console=\"true\" data-babel=\"false\">\n<div class=\"snippet-code snippet-currently-hidden\">\n<pre class=\"snippet-code-html lang-html prettyprint-override\"><code>&lt;\/div&gt; &lt;!--\/#content--&gt;\n        &lt;?php if ( is_shop() ) :\nget_sidebar( 'shop' );\n         endif;\n        ?&gt;\n    &lt;\/div&gt; &lt;!-- .row --&gt;<\/code><\/pre>\n<\/div>\n<\/div><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\"><\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved sidebar on the shop page is not showing but showing in blog and single product pages only [closed] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Answer: To make appear sidebar in shop page or else first we should check some default possible ways . step 1: check in theme customising- layout&amp;styling the size of layout switched to full width.() step 2: after clicking widget option to customise widget in the shop page ,if you see notice as &#8216;your theme &#8230; <a title=\"[Solved] sidebar on the shop page is not showing but showing in blog and single product pages only [closed]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/\" aria-label=\"More on [Solved] sidebar on the shop page is not showing but showing in blog and single product pages only [closed]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[4192,339,3159,1302,597],"class_list":["post-16560","post","type-post","status-publish","format-standard","hentry","category-solved","tag-hook-woocommerce","tag-php","tag-sidebar","tag-woocommerce","tag-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] sidebar on the shop page is not showing but showing in blog and single product pages only [closed] - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] sidebar on the shop page is not showing but showing in blog and single product pages only [closed] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Answer: To make appear sidebar in shop page or else first we should check some default possible ways . step 1: check in theme customising- layout&amp;styling the size of layout switched to full width.() step 2: after clicking widget option to customise widget in the shop page ,if you see notice as &#8216;your theme ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-19T22:16:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-sidebar-on-the-shop-page-is-not-showing-but.png\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] sidebar on the shop page is not showing but showing in blog and single product pages only [closed]\",\"datePublished\":\"2022-10-19T22:16:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/\"},\"wordCount\":339,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-sidebar-on-the-shop-page-is-not-showing-but.png\",\"keywords\":[\"hook-woocommerce\",\"php\",\"sidebar\",\"woocommerce\",\"wordpress\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/\",\"name\":\"[Solved] sidebar on the shop page is not showing but showing in blog and single product pages only [closed] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-sidebar-on-the-shop-page-is-not-showing-but.png\",\"datePublished\":\"2022-10-19T22:16:08+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/#primaryimage\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-sidebar-on-the-shop-page-is-not-showing-but.png\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-sidebar-on-the-shop-page-is-not-showing-but.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] sidebar on the shop page is not showing but showing in blog and single product pages only [closed]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] sidebar on the shop page is not showing but showing in blog and single product pages only [closed] - JassWeb","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:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] sidebar on the shop page is not showing but showing in blog and single product pages only [closed] - JassWeb","og_description":"[ad_1] Answer: To make appear sidebar in shop page or else first we should check some default possible ways . step 1: check in theme customising- layout&amp;styling the size of layout switched to full width.() step 2: after clicking widget option to customise widget in the shop page ,if you see notice as &#8216;your theme ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/","og_site_name":"JassWeb","article_published_time":"2022-10-19T22:16:08+00:00","og_image":[{"url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-sidebar-on-the-shop-page-is-not-showing-but.png","type":"","width":"","height":""}],"author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] sidebar on the shop page is not showing but showing in blog and single product pages only [closed]","datePublished":"2022-10-19T22:16:08+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/"},"wordCount":339,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-sidebar-on-the-shop-page-is-not-showing-but.png","keywords":["hook-woocommerce","php","sidebar","woocommerce","wordpress"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/","url":"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/","name":"[Solved] sidebar on the shop page is not showing but showing in blog and single product pages only [closed] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/#primaryimage"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-sidebar-on-the-shop-page-is-not-showing-but.png","datePublished":"2022-10-19T22:16:08+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/#primaryimage","url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-sidebar-on-the-shop-page-is-not-showing-but.png","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-sidebar-on-the-shop-page-is-not-showing-but.png"},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-sidebar-on-the-shop-page-is-not-showing-but-showing-in-blog-and-single-product-pages-only-closed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] sidebar on the shop page is not showing but showing in blog and single product pages only [closed]"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/16560","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=16560"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/16560\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=16560"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=16560"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=16560"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}