Sorting on parent categoriesSorting of Categories based on a attribute of product itemHow to add custom options for categories product sorting in magento adminHow to change the price used for price filter and sorting?Sorting Search Results by attribute that is not available (isn't listed in dropdown)Wrong sorting with “name” attributeProducts not showing in parent categoriesSort Magento categories alphabetically using SQL query but for specific root categorySorting by Custom Attribute value/idAssign all products in a category to all it's ancestor categories programmatically, in Magento 2Grouped product (simple product sorting on price) Magento 2
Did airlines fly their aircraft slower in response to oil prices in the 1970s?
How can I grammatically understand "Wir über uns"?
Humans meet a distant alien species. How do they standardize? - Units of Measure
Is it possible to change original filename of an exe?
How can a single Member of the House block a Congressional bill?
Modern approach to radio buttons
Do creatures all have the same statistics upon being reanimated via the Animate Dead spell?
Smart people send dumb people to a new planet on a space craft that crashes into a body of water
Self-Preservation: How to DM NPCs that Love Living?
Why don't I have ground wiring on any of my outlets?
Will My Circuit Work As intended?
60s (or earlier) short story where each colony has one person who doesn't connect well with others who is there for being able to absorb knowledge
How was Apollo supposed to rendezvous in the case of a lunar abort?
What is the intuition behind uniform continuity?
What caused the tendency for conservatives to not support climate change regulations?
What was this black-and-white film set in the Arctic or Antarctic where the monster/alien gets fried in the end?
Why is there a need to modify system call tables in linux?
What are the problems in teaching guitar via Skype?
If a problem only occurs randomly once in every N times on average, how many tests do I have to perform to be certain that it's now fixed?
Select row of data if next row contains zero
Why the lack of hesitance to wear pads on the sabbath?
How to detach yourself from a character you're going to kill?
Strange math syntax in old basic listing
If a massive object like Jupiter flew past the Earth how close would it need to come to pull people off of the surface?
Sorting on parent categories
Sorting of Categories based on a attribute of product itemHow to add custom options for categories product sorting in magento adminHow to change the price used for price filter and sorting?Sorting Search Results by attribute that is not available (isn't listed in dropdown)Wrong sorting with “name” attributeProducts not showing in parent categoriesSort Magento categories alphabetically using SQL query but for specific root categorySorting by Custom Attribute value/idAssign all products in a category to all it's ancestor categories programmatically, in Magento 2Grouped product (simple product sorting on price) Magento 2
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Let's say that we have the following categories:
- Category A (60 products)
- Subcategory A1 (20 products)
- Subcategroy A2 (40 products)
Products are assigned only to Subcategories A1 and A2, but they are also listed in parent Category A.
Sorting on Category A in frontend seems to work this way:
If custom attribute is the selected as sorting option, then we get
a) products of Subategory A1, sorted
+
b) products of Subategory A2, sorted
This is not the right way to sort products in a parent category. How can I change that?
magento2 sorting parent-category sort-by-position
add a comment |
Let's say that we have the following categories:
- Category A (60 products)
- Subcategory A1 (20 products)
- Subcategroy A2 (40 products)
Products are assigned only to Subcategories A1 and A2, but they are also listed in parent Category A.
Sorting on Category A in frontend seems to work this way:
If custom attribute is the selected as sorting option, then we get
a) products of Subategory A1, sorted
+
b) products of Subategory A2, sorted
This is not the right way to sort products in a parent category. How can I change that?
magento2 sorting parent-category sort-by-position
Then you need to push those products from two categories into a single collection and finally sort that collection..
– aravind
May 23 at 12:03
Sorting using other attributes, like price, works ok. I think that this issue has to do with the custom attribute used for sorting
– zekia
May 23 at 12:17
And I'm not using a custom collection. This about the default sorting mechanism of magento in frontend category listing
– zekia
May 23 at 12:29
add a comment |
Let's say that we have the following categories:
- Category A (60 products)
- Subcategory A1 (20 products)
- Subcategroy A2 (40 products)
Products are assigned only to Subcategories A1 and A2, but they are also listed in parent Category A.
Sorting on Category A in frontend seems to work this way:
If custom attribute is the selected as sorting option, then we get
a) products of Subategory A1, sorted
+
b) products of Subategory A2, sorted
This is not the right way to sort products in a parent category. How can I change that?
magento2 sorting parent-category sort-by-position
Let's say that we have the following categories:
- Category A (60 products)
- Subcategory A1 (20 products)
- Subcategroy A2 (40 products)
Products are assigned only to Subcategories A1 and A2, but they are also listed in parent Category A.
Sorting on Category A in frontend seems to work this way:
If custom attribute is the selected as sorting option, then we get
a) products of Subategory A1, sorted
+
b) products of Subategory A2, sorted
This is not the right way to sort products in a parent category. How can I change that?
magento2 sorting parent-category sort-by-position
magento2 sorting parent-category sort-by-position
edited May 24 at 8:40
Muhammad Anas
1,2233526
1,2233526
asked May 23 at 11:37
zekiazekia
993624
993624
Then you need to push those products from two categories into a single collection and finally sort that collection..
– aravind
May 23 at 12:03
Sorting using other attributes, like price, works ok. I think that this issue has to do with the custom attribute used for sorting
– zekia
May 23 at 12:17
And I'm not using a custom collection. This about the default sorting mechanism of magento in frontend category listing
– zekia
May 23 at 12:29
add a comment |
Then you need to push those products from two categories into a single collection and finally sort that collection..
– aravind
May 23 at 12:03
Sorting using other attributes, like price, works ok. I think that this issue has to do with the custom attribute used for sorting
– zekia
May 23 at 12:17
And I'm not using a custom collection. This about the default sorting mechanism of magento in frontend category listing
– zekia
May 23 at 12:29
Then you need to push those products from two categories into a single collection and finally sort that collection..
– aravind
May 23 at 12:03
Then you need to push those products from two categories into a single collection and finally sort that collection..
– aravind
May 23 at 12:03
Sorting using other attributes, like price, works ok. I think that this issue has to do with the custom attribute used for sorting
– zekia
May 23 at 12:17
Sorting using other attributes, like price, works ok. I think that this issue has to do with the custom attribute used for sorting
– zekia
May 23 at 12:17
And I'm not using a custom collection. This about the default sorting mechanism of magento in frontend category listing
– zekia
May 23 at 12:29
And I'm not using a custom collection. This about the default sorting mechanism of magento in frontend category listing
– zekia
May 23 at 12:29
add a comment |
0
active
oldest
votes
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%2f275854%2fsorting-on-parent-categories%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f275854%2fsorting-on-parent-categories%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
Then you need to push those products from two categories into a single collection and finally sort that collection..
– aravind
May 23 at 12:03
Sorting using other attributes, like price, works ok. I think that this issue has to do with the custom attribute used for sorting
– zekia
May 23 at 12:17
And I'm not using a custom collection. This about the default sorting mechanism of magento in frontend category listing
– zekia
May 23 at 12:29