{"id":409,"date":"2020-02-28T16:07:20","date_gmt":"2020-02-28T16:07:20","guid":{"rendered":"http:\/\/wiki2.plumserver.com\/knowledge-base\/magento-private-sales-v3-x-developers-guide-and-api-reference"},"modified":"2021-07-27T03:56:41","modified_gmt":"2021-07-27T07:56:41","slug":"magento-private-sales-v3-x-developers-guide-and-api-reference","status":"publish","type":"post","link":"https:\/\/plumrocket.com\/docs\/magento-1-private-sales\/v3\/devguide","title":{"rendered":"Magento Private Sales v3.x Developer Guide and API Reference"},"content":{"rendered":"\n<h2 id=\"display-countdown-timer-for-a-product\">Display countdown timer for a product<\/h2>\n\n\n\n<p>In order to display a countdown timer for any product in the <a href=\"\/magento-1-private-sales\">Magento Private Sales &amp; Flash Sales extension<\/a>, follow the instructions below.<\/p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-columns table-to-grid\">\n<div class=\"wp-block-column\">\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<p>Changes to be made<\/p>\n<\/div><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column\">\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<p>Website Frontend &#8211; Product Grid<\/p>\n<\/div><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column\">\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<p>In order to display a countdown timer for products, say in the product list page &#8211; paste the following code into the file template:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-markup\">\/app\/design\/frontend\/THEME\/default\/template\/catalog\/product\/list.phtml<\/code><\/pre><\/div>\n\n\n\n<p>Code Example<\/p>\n\n\n\n<p>This is an example of the code to be used:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;?php if (!( ($_cc = Mage::registry('current_category'))\n            &amp;&amp; $_cc->getData('privatesale_date_start'))) { ?>\n        &lt;?php echo $this->getLayout()->createBlock('privatesales\/event_product')\n            ->setTemplate('privatesales\/event\/item.phtml')->setProduct($_product)->toHtml() ?>\n        &lt;?php } ?><\/code><\/pre><\/div>\n\n\n\n<p>Where &#8220;$_product&#8221; is a product object the countdown timer you need to set up for.<\/p>\n\n\n\n<p>Find the code:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;ul class=\"products-list&lt;?php if($listClasses) echo $listClasses; ?>\" id=\"products-list\">\n            &lt;?php foreach ($_productCollection as $_product): ?>\n            &lt;li class=\"item&lt;?php if(++$_iterator == sizeof($_productCollection)): ?>\n                last&lt;?php endif; ?>\">\n                &lt;?php \/\/Product Image ?>\n                &lt;div class=\"product-image-wrapper grid12-4 mobile-grid-half\">\n                    &lt;a href=\"&lt;?php echo $_product->getProductUrl() ?>\"\n                        title=\"&lt;?php echo $this->stripTags($this->getImageLabel(\n                            $_product, 'small_image'), null, true) ?>\"\n                        class=\"product-image\" style=\"max-width:&lt;?php echo $imgWidth; ?>px;\">\n                        &lt;img id=\"product-collection-image-&lt;?php echo $_product->getId(); ?>\"\n                            src=\"&lt;?php echo $helpImg->getImg(\n                                $_product, $imgWidth, $imgHeight, 'small_image'); ?>\"\n                            alt=\"&lt;?php echo $this->stripTags($this->getImageLabel(\n                                $_product, 'small_image'), null, true) ?>\" \/><\/code><\/pre><\/div>\n\n\n\n<p>The code should be replaced with the following:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;ul class=\"products-list&lt;?php if($listClasses) echo $listClasses; ?>\" id=\"products-list\">\n            &lt;?php foreach ($_productCollection as $_product): ?>\n            &lt;li class=\"item&lt;?php if(++$_iterator == sizeof($_productCollection)): ?>\n                last&lt;?php endif; ?>\">\n                &lt;?php \/\/Product Image ?>\n                &lt;div class=\"product-image-wrapper grid12-4 mobile-grid-half\">\n                    &lt;?php if (!(($_cc = Mage::registry('current_category')) &amp;&amp;\n                        $_cc->getData('privatesale_date_start'))) { ?>\n                    &lt;?php echo $this->getLayout()->createBlock('privatesales\/event_product')\n                        ->setTemplate('privatesales\/even\/item.phtml')\n                        ->setProduct($_product)->toHtml() ?>\n                    &lt;?php } ?>\n                    &lt;a href=\"&lt;?php echo $_product->getProductUrl() ?>\"\n                        title=\"&lt;?php echo $this->stripTags($this->getImageLabel(\n                            $_product, 'small_image'), null, true) ?>\"\n                        class=\"product-image\" style=\"max-width:&lt;?php echo $imgWidth; ?>px;\">\n                        &lt;img id=\"product-collection-image-&lt;?php echo $_product->getId(); ?>\"\n                            src=\"&lt;?php echo $helpImg->getImg(\n                                $_product, $imgWidth, $imgHeight, 'small_image'\n                            ); ?>\"\n                            alt=\"&lt;?php echo $this->stripTags($this->getImageLabel(\n                                $_product, 'small_image'), null, true) ?>\" \/><\/code><\/pre><\/div>\n<\/div><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column\">\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<ol><li><strong>Product countdown timer.<\/strong><\/li><\/ol>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"\/docs\/wp-content\/uploads\/2020\/05\/Magento_private_sales_and_flash_sales_developers_guide.jpg\" alt=\"Magento private sales and flash sales developers guide.jpg\"\/><\/figure>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div><\/div>\n\n\n\n<h2 id=\"create-private-sale-product-on-a-category-page\">Create Private Sale Product on a Category Page<\/h2>\n\n\n\n<p>Follow the instructions below to create a private sale product on a Category Page.<\/p>\n\n\n\n<ol><li>Before you proceed, please make sure you are running Private Sale &amp; Flash Sale extension of at least 3.2.x version. Read <a title=\"Magento Private Sales and Flash Sales v3.x Updating\" href=\"\/docs\/magento-1-private-sales\/v3\/updating\n\">this guide<\/a> to learn how to update your extension version. <\/li><li>Check <a title=\"Magento Private Sales and Flash Sales v3.x Configuration\" href=\"\/docs\/magento-1-private-sales\/v3\/configuration\n#configuring-flash-sale-and-private-sale-event-for-a-product\">this guide<\/a> to configure the Private Sale event for the Product. <\/li><li>Follow the instructions below to create a private sale product on a Category Page for these popular themes: RWD, Porto, Ultimo.<\/li><\/ol>\n\n\n\n<h3 id=\"for-magento-rwd-theme\">For Magento RWD theme<\/h3>\n\n\n\n<p>1. Open the file:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-markup\">\/app\/design\/frontend\/rwd\/default\/template\/catalog\/product\/list.phtml<\/code><\/pre><\/div>\n\n\n\n<p>2. Make sure to check if you&#8217;re using the Grid mode or List mode on your Magento frontend. This will determine the location of the img tag you modify. Find the code:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;img id=\"product-collection-image-&lt;?php echo $_product->getId(); ?>\"\n    src=\"&lt;?php echo $this->helper('catalog\/image')->init(\n        $_product, 'small_image')->resize($_imgSize); ?>\"\n    alt=\"&lt;?php echo $this->stripTags(\n        $this->getImageLabel($_product, 'small_image'), null, true) ?>\" \/><\/code><\/pre><\/div>\n\n\n\n<p>3. This is the code to be added in order to make a private sale product on a Category Page:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;?php\n    $locked = Mage::getModel('privatesales\/privateEvent')\n        ->isProductPrivateEvent($_product);\n?>\n&lt;?php if($locked): ?>\n    &lt;span class=\"pps-img-wrap-lock\">\n&lt;?php endif; ?><\/code><\/pre><\/div>\n\n\n\n<p>and:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;?php if($locked): ?>\n        &lt;span class=\"pps-img-locktext\">\n            &lt;?php echo $this->__('Become a member to shop this event'); ?>\n        &lt;\/span>\n    &lt;\/span>\n&lt;?php endif; ?><\/code><\/pre><\/div>\n\n\n\n<p>4. The resulting code will look as follows:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;?php\n    $locked = Mage::getModel('privatesales\/privateEvent')\n        ->isProductPrivateEvent($_product);\n?>\n&lt;?php if($locked): ?>\n    &lt;span class=\"pps-img-wrap-lock\">\n&lt;?php endif; ?>\n    &lt;img id=\"product-collection-image-&lt;?php echo $_product->getId(); ?>\"\n        src=\"&lt;?php echo $this->helper('catalog\/image')->init(\n            $_product, 'small_image')->resize($_imgSize); ?>\"\n        alt=\"&lt;?php echo $this->stripTags($this->getImageLabel(\n            $_product, 'small_image'), null, true) ?>\" \/>\n&lt;?php if($locked): ?>\n        &lt;span class=\"pps-img-locktext\">\n            &lt;?php echo $this->__('Become a member to shop this event'); ?>&lt;\/span>\n    &lt;\/span>\n &lt;?php endif; ?><\/code><\/pre><\/div>\n\n\n\n<h3 id=\"for-magento-porto-theme\">For Magento Porto theme<\/h3>\n\n\n\n<p>1. Open the following file:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-markup\">\/app\/design\/frontend\/smartwave\/porto\/template\/catalog\/product\/list.phtml<\/code><\/pre><\/div>\n\n\n\n<p>2. Make sure to check if you&#8217;re using the Grid mode or List mode on your Magento frontend. This will determine the location of the img tag you modify. Find the code:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;img id=\"product-collection-image-&lt;?php echo $_product->getId(); ?>\"\n    class=\"defaultImage\" src=\"&lt;?php if($aspect_ratio):?>\n    &lt;?php echo $_image_helper->init($_product, 'small_image')->constrainOnly(FALSE)\n        ->keepAspectRatio(TRUE)->keepFrame(FALSE)->resize($ratio_width);?>\n    &lt;?php else: ?>&lt;?php echo $_image_helper->init($_product, 'small_image')\n        ->resize($ratio_width,$ratio_height); ?>\n    &lt;?php endif; ?>\" width=\"&lt;?php echo $ratio_width; ?>\"\n&lt;?php if(!$aspect_ratio):?>height=\"&lt;?php echo $ratio_height; ?>\"&lt;?php endif; ?>\n    alt=\"&lt;?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>\"\/><\/code><\/pre><\/div>\n\n\n\n<p>3. This is the code to be added in order to make a private sale product on a Category Page:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;?php\n    $locked = Mage::getModel('privatesales\/privateEvent')\n       ->isProductPrivateEvent($_product);\n?>\n&lt;?php if($locked): ?>\n    &lt;span class=\"pps-img-wrap-lock\">\n&lt;?php endif; ?><\/code><\/pre><\/div>\n\n\n\n<p>and:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;?php if($locked): ?>\n        &lt;span class=\"pps-img-locktext\">\n            &lt;?php echo $this->__('Become a member to shop this event'); ?>\n        &lt;\/span>\n    &lt;\/span>\n&lt;?php endif; ?><\/code><\/pre><\/div>\n\n\n\n<p>4. The resulting code will look as follows:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;?php $locked = Mage::getModel('privatesales\/privateEvent')\n        ->isProductPrivateEvent($_product); ?>\n&lt;?php if($locked): ?>\n&lt;span class=\"pps-img-wrap-lock\">\n    &lt;?php endif; ?>\n    &lt;img id=\"product-collection-image-&lt;?php echo $_product->getId(); ?>\"\n        class=\"defaultImage\" src=\"&lt;?php if($aspect_ratio):?>\n        &lt;?php echo $_image_helper->init($_product, 'small_image')->constrainOnly(FALSE)\n            ->keepAspectRatio(TRUE)->keepFrame(FALSE)->resize($ratio_width);?>\n&lt;?php else: ?>\n    &lt;?php echo $_image_helper->init($_product, 'small_image')\n        ->resize($ratio_width,$ratio_height); ?>&lt;?php endif; ?>\" width=\"&lt;?php echo $ratio_width; ?>\"\n        &lt;?php if(!$aspect_ratio):?>height=\"&lt;?php echo $ratio_height; ?>\" &lt;?php endif; ?>\n        alt=\"&lt;?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'),\n            null, true) ?>\" \/>\n\n&lt;?php if($locked): ?>\n    &lt;span class=\"pps-img-locktext\">\n        &lt;?php echo $this->__('Become a member to shop this event'); ?>&lt;\/span>\n    &lt;\/span>\n&lt;?php endif; ?><\/code><\/pre><\/div>\n\n\n\n<h3 id=\"for-magento-ultimo-theme\">For Magento Ultimo theme<\/h3>\n\n\n\n<p>1. Open the following file:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-markup\">\/app\/design\/frontend\/ultimo\/default\/template\/catalog\/product\/list.phtml<\/code><\/pre><\/div>\n\n\n\n<p>2. Make sure to check if you&#8217;re using the Grid mode or List mode on your Magento frontend. This will determine the location of the img tag you modify. Find the code:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;img id=\"product-collection-image-&lt;?php echo $_product->getId(); ?>\"\n    src=\"&lt;?php echo $helpImg->getImg($_product, $imgWidth, $imgHeight, 'small_image'); ?>\"\n    alt=\"&lt;?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'),\n        null, true); ?>\" \/><\/code><\/pre><\/div>\n\n\n\n<p>3. This is the code to be added in order to make a private sale product on a Category Page:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;?php $locked = Mage::getModel('privatesales\/privateEvent')\n    ->isProductPrivateEvent($_product); ?>\n&lt;?php if($locked): ?>\n    &lt;span class=\"pps-img-wrap-lock\">\n&lt;?php endif; ?><\/code><\/pre><\/div>\n\n\n\n<p>and:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;?php if($locked): ?>\n    &lt;span class=\"pps-img-locktext\">\n        &lt;?php echo $this->__('Become a member to shop this event'); ?>&lt;\/span>\n    &lt;\/span>\n&lt;?php endif; ?><\/code><\/pre><\/div>\n\n\n\n<p>4. The resulting code will look as follows:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;?php $locked = Mage::getModel('privatesales\/privateEvent')\n    ->isProductPrivateEvent($_product); ?>\n&lt;?php if($locked): ?>\n    &lt;span class=\"pps-img-wrap-lock\">\n&lt;?php endif; ?>\n\n&lt;img id=\"product-collection-image-&lt;?php echo $_product->getId(); ?>\"\n     src=\"&lt;?php echo $helpImg->getImg($_product, $imgWidth, $imgHeight, 'small_image'); ?>\"\n     alt=\"&lt;?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'),\n         null, true); ?>\" \/>\n\n&lt;?php if($locked): ?>\n    &lt;span class=\"pps-img-locktext\">\n        &lt;?php echo $this->__('Become a member to shop this event'); ?>&lt;\/span>\n     &lt;\/span>\n&lt;?php endif; ?><\/code><\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Display countdown timer for a product In order to display a countdown timer for any product in the Magento Private Sales &amp; Flash Sales extension, follow the instructions below. Create Private Sale Product on a Category Page Follow the instructions below to create a private sale product on a Category Page. Before you proceed, please &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/plumrocket.com\/docs\/magento-1-private-sales\/v3\/devguide\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Magento Private Sales v3.x Developer Guide and API Reference&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"_mi_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0},"categories":[207],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v17.2 (Yoast SEO v17.2) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Magento Private Sales v3.x Developer Guide and API Reference - Plumrocket Documentation<\/title>\n<meta name=\"description\" content=\"Display countdown timer for a product In order to display a countdown timer for any product in the Magento Private Sales &amp; Flash Sales extension,\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/plumrocket.com\/docs\/magento-1-private-sales\/v3\/devguide\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Magento Private Sales v3.x Developer Guide and API Reference\" \/>\n<meta property=\"og:description\" content=\"Display countdown timer for a product In order to display a countdown timer for any product in the Magento Private Sales &amp; Flash Sales extension,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/plumrocket.com\/docs\/magento-1-private-sales\/v3\/devguide\" \/>\n<meta property=\"og:site_name\" content=\"Plumrocket Documentation\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-28T16:07:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-27T07:56:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2020\/05\/Magento_private_sales_and_flash_sales_developers_guide.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Plumrocket\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Magento Private Sales v3.x Developer Guide and API Reference - Plumrocket Documentation","description":"Display countdown timer for a product In order to display a countdown timer for any product in the Magento Private Sales &amp; Flash Sales extension,","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:\/\/plumrocket.com\/docs\/magento-1-private-sales\/v3\/devguide","og_locale":"en_US","og_type":"article","og_title":"Magento Private Sales v3.x Developer Guide and API Reference","og_description":"Display countdown timer for a product In order to display a countdown timer for any product in the Magento Private Sales &amp; Flash Sales extension,","og_url":"https:\/\/plumrocket.com\/docs\/magento-1-private-sales\/v3\/devguide","og_site_name":"Plumrocket Documentation","article_published_time":"2020-02-28T16:07:20+00:00","article_modified_time":"2021-07-27T07:56:41+00:00","og_image":[{"url":"https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2020\/05\/Magento_private_sales_and_flash_sales_developers_guide.jpg"}],"twitter_card":"summary_large_image","twitter_misc":{"Written by":"Plumrocket","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/plumrocket.com\/docs\/#website","url":"https:\/\/plumrocket.com\/docs\/","name":"Plumrocket Documentation","description":"Extensions docs, troubleshootings etc.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/plumrocket.com\/docs\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/plumrocket.com\/docs\/magento-1-private-sales\/v3\/devguide#primaryimage","inLanguage":"en-US","url":"\/docs\/wp-content\/uploads\/2020\/05\/Magento_private_sales_and_flash_sales_developers_guide.jpg","contentUrl":"\/docs\/wp-content\/uploads\/2020\/05\/Magento_private_sales_and_flash_sales_developers_guide.jpg"},{"@type":"WebPage","@id":"https:\/\/plumrocket.com\/docs\/magento-1-private-sales\/v3\/devguide#webpage","url":"https:\/\/plumrocket.com\/docs\/magento-1-private-sales\/v3\/devguide","name":"Magento Private Sales v3.x Developer Guide and API Reference - Plumrocket Documentation","isPartOf":{"@id":"https:\/\/plumrocket.com\/docs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/plumrocket.com\/docs\/magento-1-private-sales\/v3\/devguide#primaryimage"},"datePublished":"2020-02-28T16:07:20+00:00","dateModified":"2021-07-27T07:56:41+00:00","author":{"@id":"https:\/\/plumrocket.com\/docs\/#\/schema\/person\/38b360639b934d6c984ee4f3ffce7d20"},"description":"Display countdown timer for a product In order to display a countdown timer for any product in the Magento Private Sales &amp; Flash Sales extension,","breadcrumb":{"@id":"https:\/\/plumrocket.com\/docs\/magento-1-private-sales\/v3\/devguide#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/plumrocket.com\/docs\/magento-1-private-sales\/v3\/devguide"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/plumrocket.com\/docs\/magento-1-private-sales\/v3\/devguide#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Magento Extensions","item":"https:\/\/plumrocket.com\/magento-1-extensions"},{"@type":"ListItem","position":2,"name":"Magento Private Sales &amp; Flash Sales","item":"https:\/\/plumrocket.com\/magento-1-private-sales"},{"@type":"ListItem","position":3,"name":"Documentation","item":"https:\/\/plumrocket.com\/docs\/magento-1-private-sales"},{"@type":"ListItem","position":4,"name":"v3","item":"https:\/\/plumrocket.com\/docs\/magento-1-private-sales\/v3"},{"@type":"ListItem","position":5,"name":"Developer Guide"}]},{"@type":"Person","@id":"https:\/\/plumrocket.com\/docs\/#\/schema\/person\/38b360639b934d6c984ee4f3ffce7d20","name":"Plumrocket","image":{"@type":"ImageObject","@id":"https:\/\/plumrocket.com\/docs\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/72392a92ae750c66560be284502b6676?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/72392a92ae750c66560be284502b6676?s=96&d=mm&r=g","caption":"Plumrocket"},"sameAs":["https:\/\/plumrocket.com\/docs"]}]}},"_links":{"self":[{"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/posts\/409"}],"collection":[{"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/comments?post=409"}],"version-history":[{"count":1,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/posts\/409\/revisions"}],"predecessor-version":[{"id":22752,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/posts\/409\/revisions\/22752"}],"wp:attachment":[{"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/media?parent=409"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/categories?post=409"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/tags?post=409"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}