How can I remove the category filter from category page that do not have further any categories?How can I...
What is the difference between rolling more dice versus fewer dice?
Can a person refuse a presidential pardon?
How would an AI self awareness kill switch work?
What does it mean for a caliber to be flat shooting?
Should I reinstall Linux when changing the laptop's CPU?
Can I make estimated tax payments instead of withholding from my paycheck?
Comparing two arrays of unequal length
A Missing Symbol for This Logo
Why did Democrats in the Senate oppose the Born-Alive Abortion Survivors Protection Act (2019 S.130)?
Publishing research using outdated methods
Non-Cancer terminal illness that can affect young (age 10-13) girls?
Citing paywalled articles accessed via illegal web sharing
Is using an 'empty' metaphor considered bad style?
What incentives do banks have to gather up loans into pools (backed by Ginnie Mae)and selling them?
Am I a Rude Number?
What are the exceptions to Natural Selection?
Why do neural networks need so many training examples to perform?
How much mayhem could I cause as a sentient fish?
Use two 8s and two 3s to make the number 24
Cookies - Should the toggles be on?
Difference between i++ and (i)++ in C
How do I append a character to the end of every line in an Excel cell?
Odd 74HCT1G125 behaviour
What is the most fuel efficient way out of the Solar System?
How can I remove the category filter from category page that do not have further any categories?
How can I disable filter “category” from SidebarMagento Remove attribute filter from a categorymagento 2 captcha not rendering if I override layout xmlProblem with the URL when changing store while in SubcategoryMagento 2 remove category filter from list page filters?Why Getting categories and names on product view page Magento 2 fails?Anchor category - display only price/category filter in layered navigationHow to Remove Categories Filter from the SidebarHow to remove some fields from the filterMagento 2.2.6 Remove Category Filter From Sidebar Filtered Navigation
I am using Porto Theme (Magento 2) for building an e-commerce website. I have some categories that has sub-categories, so when I go to that sub-categories page, then it is showing the category filter empty, so I want to remove the category filter only (not price filter) only where further sub-categories are not there. For example: https://www.ekaani.com/brands/ekaani-gods.html
I have tried to remove that, but when I try to edit category_view.xml
page, then the whole sidebar disappears. What I have tried is that adding remove=true
in the last block.
<?xml version="1.0"?>
<!--
/**
* Copyright © 2018 Porto. All rights reserved.
*/
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="2columns-left" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="page.top">
<block class="MagentoCatalogBlockCategoryView" name="category_banner" template="category/banner.phtml" ifconfig="porto_settings/category/category_description" before="-"/>
</referenceContainer>
<referenceContainer name="content">
<block class="MagentoCatalogBlockCategoryView" name="category_desc_main_column" template="category/desc_main_column.phtml" ifconfig="porto_settings/category/category_description" before="category.products"/>
</referenceContainer>
<move element="category.image" destination="content" before="category_desc_main_column"/>
<referenceContainer name="sidebar.main" remove="true">
<block class="SmartwavePortoBlockTemplate" name="category_view_custom_block" after="-" template="Magento_Catalog::category/custom_block.phtml"/>
</referenceContainer>
</body>
</page>
For the mentioned page, I only want to remove the sub-categories that do not have further sub-categories.
Update:
Here is my category_filter.phtml
<?php
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$category = $objectManager->get('MagentoFrameworkRegistry')->registry('current_category');
?>
<?php if($category): ?>
<?php
$categoryHelper = $this->helper('MagentoCatalogHelperCategory');
$subcategories=$category->getCategories($category->getId());
if(count($subcategories)>0){
?>
<div class="block-category-list">
<div class="block-title">
<strong><?php echo $category->getName() ?></strong>
</div>
<div class="block-content">
<ol class="items">
<?php
foreach($subcategories as $subcategory){
if (!$subcategory->getIsActive()) {
continue;
}
?>
<li class="item">
<a href="<?php echo $categoryHelper->getCategoryUrl($subcategory) ?>"><?php echo $subcategory->getName() ?></a>
</li>
<?php
}
?>
</ol>
</div>
<script type="text/javascript">
require([
'jquery'
], function ($) {
$("#layered-filter-block").before($(".block.block-category-list"));
});
</script>
</div>
<?php
}
?>
<?php endif; ?>
magento2 filter
add a comment |
I am using Porto Theme (Magento 2) for building an e-commerce website. I have some categories that has sub-categories, so when I go to that sub-categories page, then it is showing the category filter empty, so I want to remove the category filter only (not price filter) only where further sub-categories are not there. For example: https://www.ekaani.com/brands/ekaani-gods.html
I have tried to remove that, but when I try to edit category_view.xml
page, then the whole sidebar disappears. What I have tried is that adding remove=true
in the last block.
<?xml version="1.0"?>
<!--
/**
* Copyright © 2018 Porto. All rights reserved.
*/
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="2columns-left" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="page.top">
<block class="MagentoCatalogBlockCategoryView" name="category_banner" template="category/banner.phtml" ifconfig="porto_settings/category/category_description" before="-"/>
</referenceContainer>
<referenceContainer name="content">
<block class="MagentoCatalogBlockCategoryView" name="category_desc_main_column" template="category/desc_main_column.phtml" ifconfig="porto_settings/category/category_description" before="category.products"/>
</referenceContainer>
<move element="category.image" destination="content" before="category_desc_main_column"/>
<referenceContainer name="sidebar.main" remove="true">
<block class="SmartwavePortoBlockTemplate" name="category_view_custom_block" after="-" template="Magento_Catalog::category/custom_block.phtml"/>
</referenceContainer>
</body>
</page>
For the mentioned page, I only want to remove the sub-categories that do not have further sub-categories.
Update:
Here is my category_filter.phtml
<?php
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$category = $objectManager->get('MagentoFrameworkRegistry')->registry('current_category');
?>
<?php if($category): ?>
<?php
$categoryHelper = $this->helper('MagentoCatalogHelperCategory');
$subcategories=$category->getCategories($category->getId());
if(count($subcategories)>0){
?>
<div class="block-category-list">
<div class="block-title">
<strong><?php echo $category->getName() ?></strong>
</div>
<div class="block-content">
<ol class="items">
<?php
foreach($subcategories as $subcategory){
if (!$subcategory->getIsActive()) {
continue;
}
?>
<li class="item">
<a href="<?php echo $categoryHelper->getCategoryUrl($subcategory) ?>"><?php echo $subcategory->getName() ?></a>
</li>
<?php
}
?>
</ol>
</div>
<script type="text/javascript">
require([
'jquery'
], function ($) {
$("#layered-filter-block").before($(".block.block-category-list"));
});
</script>
</div>
<?php
}
?>
<?php endif; ?>
magento2 filter
add a comment |
I am using Porto Theme (Magento 2) for building an e-commerce website. I have some categories that has sub-categories, so when I go to that sub-categories page, then it is showing the category filter empty, so I want to remove the category filter only (not price filter) only where further sub-categories are not there. For example: https://www.ekaani.com/brands/ekaani-gods.html
I have tried to remove that, but when I try to edit category_view.xml
page, then the whole sidebar disappears. What I have tried is that adding remove=true
in the last block.
<?xml version="1.0"?>
<!--
/**
* Copyright © 2018 Porto. All rights reserved.
*/
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="2columns-left" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="page.top">
<block class="MagentoCatalogBlockCategoryView" name="category_banner" template="category/banner.phtml" ifconfig="porto_settings/category/category_description" before="-"/>
</referenceContainer>
<referenceContainer name="content">
<block class="MagentoCatalogBlockCategoryView" name="category_desc_main_column" template="category/desc_main_column.phtml" ifconfig="porto_settings/category/category_description" before="category.products"/>
</referenceContainer>
<move element="category.image" destination="content" before="category_desc_main_column"/>
<referenceContainer name="sidebar.main" remove="true">
<block class="SmartwavePortoBlockTemplate" name="category_view_custom_block" after="-" template="Magento_Catalog::category/custom_block.phtml"/>
</referenceContainer>
</body>
</page>
For the mentioned page, I only want to remove the sub-categories that do not have further sub-categories.
Update:
Here is my category_filter.phtml
<?php
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$category = $objectManager->get('MagentoFrameworkRegistry')->registry('current_category');
?>
<?php if($category): ?>
<?php
$categoryHelper = $this->helper('MagentoCatalogHelperCategory');
$subcategories=$category->getCategories($category->getId());
if(count($subcategories)>0){
?>
<div class="block-category-list">
<div class="block-title">
<strong><?php echo $category->getName() ?></strong>
</div>
<div class="block-content">
<ol class="items">
<?php
foreach($subcategories as $subcategory){
if (!$subcategory->getIsActive()) {
continue;
}
?>
<li class="item">
<a href="<?php echo $categoryHelper->getCategoryUrl($subcategory) ?>"><?php echo $subcategory->getName() ?></a>
</li>
<?php
}
?>
</ol>
</div>
<script type="text/javascript">
require([
'jquery'
], function ($) {
$("#layered-filter-block").before($(".block.block-category-list"));
});
</script>
</div>
<?php
}
?>
<?php endif; ?>
magento2 filter
I am using Porto Theme (Magento 2) for building an e-commerce website. I have some categories that has sub-categories, so when I go to that sub-categories page, then it is showing the category filter empty, so I want to remove the category filter only (not price filter) only where further sub-categories are not there. For example: https://www.ekaani.com/brands/ekaani-gods.html
I have tried to remove that, but when I try to edit category_view.xml
page, then the whole sidebar disappears. What I have tried is that adding remove=true
in the last block.
<?xml version="1.0"?>
<!--
/**
* Copyright © 2018 Porto. All rights reserved.
*/
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="2columns-left" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="page.top">
<block class="MagentoCatalogBlockCategoryView" name="category_banner" template="category/banner.phtml" ifconfig="porto_settings/category/category_description" before="-"/>
</referenceContainer>
<referenceContainer name="content">
<block class="MagentoCatalogBlockCategoryView" name="category_desc_main_column" template="category/desc_main_column.phtml" ifconfig="porto_settings/category/category_description" before="category.products"/>
</referenceContainer>
<move element="category.image" destination="content" before="category_desc_main_column"/>
<referenceContainer name="sidebar.main" remove="true">
<block class="SmartwavePortoBlockTemplate" name="category_view_custom_block" after="-" template="Magento_Catalog::category/custom_block.phtml"/>
</referenceContainer>
</body>
</page>
For the mentioned page, I only want to remove the sub-categories that do not have further sub-categories.
Update:
Here is my category_filter.phtml
<?php
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$category = $objectManager->get('MagentoFrameworkRegistry')->registry('current_category');
?>
<?php if($category): ?>
<?php
$categoryHelper = $this->helper('MagentoCatalogHelperCategory');
$subcategories=$category->getCategories($category->getId());
if(count($subcategories)>0){
?>
<div class="block-category-list">
<div class="block-title">
<strong><?php echo $category->getName() ?></strong>
</div>
<div class="block-content">
<ol class="items">
<?php
foreach($subcategories as $subcategory){
if (!$subcategory->getIsActive()) {
continue;
}
?>
<li class="item">
<a href="<?php echo $categoryHelper->getCategoryUrl($subcategory) ?>"><?php echo $subcategory->getName() ?></a>
</li>
<?php
}
?>
</ol>
</div>
<script type="text/javascript">
require([
'jquery'
], function ($) {
$("#layered-filter-block").before($(".block.block-category-list"));
});
</script>
</div>
<?php
}
?>
<?php endif; ?>
magento2 filter
magento2 filter
edited 45 mins ago
Mukesh Chapagain
3,81812243
3,81812243
asked Nov 21 '18 at 6:23
Umar MUmar M
13
13
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Remove Category option from Layered Navigation options list in magento2
This is what I did to remove the “Category” section from my layered navigation so I wouldnt have any repeat information with the attributes I wanted in the layered navigation. go to app/design/frontend/default/default/template/catalog/layer and open up view.phtml
for edit.
<?php if($filter->getName() != __('Category')) {?>
<?php if ($filter->getItemsCount()): ?>
<dt role="heading" aria-level="3" class="filter-options-title"><?= $block->escapeHtml(__($filter->getName())) ?></dt>
<dd class="filter-options-content"><?= /* @escapeNotVerified */ $block->getChildBlock('renderer')->render($filter) ?></dd>
<?php endif; ?>
<?php }?>
hi @Saniya, Could you please be more specific, as the specified path do not exist for me. I am going to app/design/frontend/Smartwave/porto/.....Then I am not seeing any template folder in that. Please help in this
– Umar M
Nov 21 '18 at 6:38
Please go to this file path vendormagentomodule-layered-navigationviewfrontendtemplateslayerview.phtml please move this file in your theme folder and chec k it my above code
– Rv Singh
Nov 21 '18 at 6:48
I have one folder named "Magento_LayeredNavigation"
– Umar M
Nov 21 '18 at 6:49
Then I have layer folder-> templates->layer->view.phtml...is that correct?
– Umar M
Nov 21 '18 at 6:51
yes please check it in your side this file is call or not
– Rv Singh
Nov 21 '18 at 6:52
|
show 26 more comments
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f250750%2fhow-can-i-remove-the-category-filter-from-category-page-that-do-not-have-further%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Remove Category option from Layered Navigation options list in magento2
This is what I did to remove the “Category” section from my layered navigation so I wouldnt have any repeat information with the attributes I wanted in the layered navigation. go to app/design/frontend/default/default/template/catalog/layer and open up view.phtml
for edit.
<?php if($filter->getName() != __('Category')) {?>
<?php if ($filter->getItemsCount()): ?>
<dt role="heading" aria-level="3" class="filter-options-title"><?= $block->escapeHtml(__($filter->getName())) ?></dt>
<dd class="filter-options-content"><?= /* @escapeNotVerified */ $block->getChildBlock('renderer')->render($filter) ?></dd>
<?php endif; ?>
<?php }?>
hi @Saniya, Could you please be more specific, as the specified path do not exist for me. I am going to app/design/frontend/Smartwave/porto/.....Then I am not seeing any template folder in that. Please help in this
– Umar M
Nov 21 '18 at 6:38
Please go to this file path vendormagentomodule-layered-navigationviewfrontendtemplateslayerview.phtml please move this file in your theme folder and chec k it my above code
– Rv Singh
Nov 21 '18 at 6:48
I have one folder named "Magento_LayeredNavigation"
– Umar M
Nov 21 '18 at 6:49
Then I have layer folder-> templates->layer->view.phtml...is that correct?
– Umar M
Nov 21 '18 at 6:51
yes please check it in your side this file is call or not
– Rv Singh
Nov 21 '18 at 6:52
|
show 26 more comments
Remove Category option from Layered Navigation options list in magento2
This is what I did to remove the “Category” section from my layered navigation so I wouldnt have any repeat information with the attributes I wanted in the layered navigation. go to app/design/frontend/default/default/template/catalog/layer and open up view.phtml
for edit.
<?php if($filter->getName() != __('Category')) {?>
<?php if ($filter->getItemsCount()): ?>
<dt role="heading" aria-level="3" class="filter-options-title"><?= $block->escapeHtml(__($filter->getName())) ?></dt>
<dd class="filter-options-content"><?= /* @escapeNotVerified */ $block->getChildBlock('renderer')->render($filter) ?></dd>
<?php endif; ?>
<?php }?>
hi @Saniya, Could you please be more specific, as the specified path do not exist for me. I am going to app/design/frontend/Smartwave/porto/.....Then I am not seeing any template folder in that. Please help in this
– Umar M
Nov 21 '18 at 6:38
Please go to this file path vendormagentomodule-layered-navigationviewfrontendtemplateslayerview.phtml please move this file in your theme folder and chec k it my above code
– Rv Singh
Nov 21 '18 at 6:48
I have one folder named "Magento_LayeredNavigation"
– Umar M
Nov 21 '18 at 6:49
Then I have layer folder-> templates->layer->view.phtml...is that correct?
– Umar M
Nov 21 '18 at 6:51
yes please check it in your side this file is call or not
– Rv Singh
Nov 21 '18 at 6:52
|
show 26 more comments
Remove Category option from Layered Navigation options list in magento2
This is what I did to remove the “Category” section from my layered navigation so I wouldnt have any repeat information with the attributes I wanted in the layered navigation. go to app/design/frontend/default/default/template/catalog/layer and open up view.phtml
for edit.
<?php if($filter->getName() != __('Category')) {?>
<?php if ($filter->getItemsCount()): ?>
<dt role="heading" aria-level="3" class="filter-options-title"><?= $block->escapeHtml(__($filter->getName())) ?></dt>
<dd class="filter-options-content"><?= /* @escapeNotVerified */ $block->getChildBlock('renderer')->render($filter) ?></dd>
<?php endif; ?>
<?php }?>
Remove Category option from Layered Navigation options list in magento2
This is what I did to remove the “Category” section from my layered navigation so I wouldnt have any repeat information with the attributes I wanted in the layered navigation. go to app/design/frontend/default/default/template/catalog/layer and open up view.phtml
for edit.
<?php if($filter->getName() != __('Category')) {?>
<?php if ($filter->getItemsCount()): ?>
<dt role="heading" aria-level="3" class="filter-options-title"><?= $block->escapeHtml(__($filter->getName())) ?></dt>
<dd class="filter-options-content"><?= /* @escapeNotVerified */ $block->getChildBlock('renderer')->render($filter) ?></dd>
<?php endif; ?>
<?php }?>
edited Nov 21 '18 at 9:32
answered Nov 21 '18 at 6:27
Rv SinghRv Singh
666417
666417
hi @Saniya, Could you please be more specific, as the specified path do not exist for me. I am going to app/design/frontend/Smartwave/porto/.....Then I am not seeing any template folder in that. Please help in this
– Umar M
Nov 21 '18 at 6:38
Please go to this file path vendormagentomodule-layered-navigationviewfrontendtemplateslayerview.phtml please move this file in your theme folder and chec k it my above code
– Rv Singh
Nov 21 '18 at 6:48
I have one folder named "Magento_LayeredNavigation"
– Umar M
Nov 21 '18 at 6:49
Then I have layer folder-> templates->layer->view.phtml...is that correct?
– Umar M
Nov 21 '18 at 6:51
yes please check it in your side this file is call or not
– Rv Singh
Nov 21 '18 at 6:52
|
show 26 more comments
hi @Saniya, Could you please be more specific, as the specified path do not exist for me. I am going to app/design/frontend/Smartwave/porto/.....Then I am not seeing any template folder in that. Please help in this
– Umar M
Nov 21 '18 at 6:38
Please go to this file path vendormagentomodule-layered-navigationviewfrontendtemplateslayerview.phtml please move this file in your theme folder and chec k it my above code
– Rv Singh
Nov 21 '18 at 6:48
I have one folder named "Magento_LayeredNavigation"
– Umar M
Nov 21 '18 at 6:49
Then I have layer folder-> templates->layer->view.phtml...is that correct?
– Umar M
Nov 21 '18 at 6:51
yes please check it in your side this file is call or not
– Rv Singh
Nov 21 '18 at 6:52
hi @Saniya, Could you please be more specific, as the specified path do not exist for me. I am going to app/design/frontend/Smartwave/porto/.....Then I am not seeing any template folder in that. Please help in this
– Umar M
Nov 21 '18 at 6:38
hi @Saniya, Could you please be more specific, as the specified path do not exist for me. I am going to app/design/frontend/Smartwave/porto/.....Then I am not seeing any template folder in that. Please help in this
– Umar M
Nov 21 '18 at 6:38
Please go to this file path vendormagentomodule-layered-navigationviewfrontendtemplateslayerview.phtml please move this file in your theme folder and chec k it my above code
– Rv Singh
Nov 21 '18 at 6:48
Please go to this file path vendormagentomodule-layered-navigationviewfrontendtemplateslayerview.phtml please move this file in your theme folder and chec k it my above code
– Rv Singh
Nov 21 '18 at 6:48
I have one folder named "Magento_LayeredNavigation"
– Umar M
Nov 21 '18 at 6:49
I have one folder named "Magento_LayeredNavigation"
– Umar M
Nov 21 '18 at 6:49
Then I have layer folder-> templates->layer->view.phtml...is that correct?
– Umar M
Nov 21 '18 at 6:51
Then I have layer folder-> templates->layer->view.phtml...is that correct?
– Umar M
Nov 21 '18 at 6:51
yes please check it in your side this file is call or not
– Rv Singh
Nov 21 '18 at 6:52
yes please check it in your side this file is call or not
– Rv Singh
Nov 21 '18 at 6:52
|
show 26 more comments
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f250750%2fhow-can-i-remove-the-category-filter-from-category-page-that-do-not-have-further%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown