How to get product ids of specific category and not in other categories in Magento? Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Script to hide empty categories works but not with products without stockArray of product ids for a given category (ignoring is_anchor)How to get all products that aren't in a specific category in Magento?How to get all products from an array of specific categories and grouped by the categoriesHow to get category ids of specific store in Magento 2?Add category IDs to product collectionGet ids and names of parent categoriesHow to get category ids from product collectionMagento 2. How to get All Parent Categories Ids from current category IDHow to get all the Children Categories IDs of the Specific Category in Magento2
How to rotate it perfectly?
New Order #5: where Fibonacci and Beatty meet at Wythoff
What did Darwin mean by 'squib' here?
Using "nakedly" instead of "with nothing on"
Biased dice probability question
How can players take actions together that are impossible otherwise?
Are my PIs rude or am I just being too sensitive?
Stars Make Stars
Antler Helmet: Can it work?
Cauchy Sequence Characterized only By Directly Neighbouring Sequence Members
Unable to start mainnet node docker container
Fishing simulator
What would be Julian Assange's expected punishment, on the current English criminal law?
When communicating altitude with a '9' in it, should it be pronounced "nine hundred" or "niner hundred"?
What is the order of Mitzvot in Rambam's Sefer Hamitzvot?
Passing functions in C++
When is phishing education going too far?
What loss function to use when labels are probabilities?
Unexpected result with right shift after bitwise negation
How to say that you spent the night with someone, you were only sleeping and nothing else?
Can a monk deflect thrown melee weapons?
How to market an anarchic city as a tourism spot to people living in civilized areas?
Stopping real property loss from eroding embankment
Can smartphones with the same camera sensor have different image quality?
How to get product ids of specific category and not in other categories in Magento?
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Script to hide empty categories works but not with products without stockArray of product ids for a given category (ignoring is_anchor)How to get all products that aren't in a specific category in Magento?How to get all products from an array of specific categories and grouped by the categoriesHow to get category ids of specific store in Magento 2?Add category IDs to product collectionGet ids and names of parent categoriesHow to get category ids from product collectionMagento 2. How to get All Parent Categories Ids from current category IDHow to get all the Children Categories IDs of the Specific Category in Magento2
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to get product ids of a specific category and product ids not in other categories only in a specific category.
For example,
category ids = 3, 4, 10 and product ids = 10, 12, 14 and category id 3 belong to product id 10 and category id 4 belong to product ids 10, 12, 14 and category id 10 belong to product id 14.
When I filter on category id = 4, it returns product ids 10, 12 and 14, but I want to return only product id 12 because I only want the product id which is not in other categories. In my filter category id 4 returns product ids 10,12 and 14 but I only want to product id 4 because 10 and 14 belong to other categories which I don't want.
I only want to product id 12 in filter. Which filter I used ?
$catIds = array(4);
$notCatIds = array(3, 10);
$productCollection = Mage::getResourceModel('catalog/product_collection')
->setStoreId(0)
->joinField('category_id', 'catalog/category_product', 'category_id', 'product_id=entity_id', null, 'left')
->addAttributeToFilter('category_id', array('in' => $notCatIds))
->addAttributeToFilter('category_id', array('in' => $catIds))
->addAttributeToFilter('category_id', array('nin' => $notCatIds))
->addAttributeToFilter('category_id', array('nin' => array(2)))// 2 is default category id
->addAttributeToSelect('*');
$productCollection->getSelect()->group('product_id')->distinct(true);
echo '<pre>';
print_r($productCollection->getData());
magento-1.8 product category
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I want to get product ids of a specific category and product ids not in other categories only in a specific category.
For example,
category ids = 3, 4, 10 and product ids = 10, 12, 14 and category id 3 belong to product id 10 and category id 4 belong to product ids 10, 12, 14 and category id 10 belong to product id 14.
When I filter on category id = 4, it returns product ids 10, 12 and 14, but I want to return only product id 12 because I only want the product id which is not in other categories. In my filter category id 4 returns product ids 10,12 and 14 but I only want to product id 4 because 10 and 14 belong to other categories which I don't want.
I only want to product id 12 in filter. Which filter I used ?
$catIds = array(4);
$notCatIds = array(3, 10);
$productCollection = Mage::getResourceModel('catalog/product_collection')
->setStoreId(0)
->joinField('category_id', 'catalog/category_product', 'category_id', 'product_id=entity_id', null, 'left')
->addAttributeToFilter('category_id', array('in' => $notCatIds))
->addAttributeToFilter('category_id', array('in' => $catIds))
->addAttributeToFilter('category_id', array('nin' => $notCatIds))
->addAttributeToFilter('category_id', array('nin' => array(2)))// 2 is default category id
->addAttributeToSelect('*');
$productCollection->getSelect()->group('product_id')->distinct(true);
echo '<pre>';
print_r($productCollection->getData());
magento-1.8 product category
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Did you solve??
– Gem
Apr 23 '18 at 4:20
add a comment |
I want to get product ids of a specific category and product ids not in other categories only in a specific category.
For example,
category ids = 3, 4, 10 and product ids = 10, 12, 14 and category id 3 belong to product id 10 and category id 4 belong to product ids 10, 12, 14 and category id 10 belong to product id 14.
When I filter on category id = 4, it returns product ids 10, 12 and 14, but I want to return only product id 12 because I only want the product id which is not in other categories. In my filter category id 4 returns product ids 10,12 and 14 but I only want to product id 4 because 10 and 14 belong to other categories which I don't want.
I only want to product id 12 in filter. Which filter I used ?
$catIds = array(4);
$notCatIds = array(3, 10);
$productCollection = Mage::getResourceModel('catalog/product_collection')
->setStoreId(0)
->joinField('category_id', 'catalog/category_product', 'category_id', 'product_id=entity_id', null, 'left')
->addAttributeToFilter('category_id', array('in' => $notCatIds))
->addAttributeToFilter('category_id', array('in' => $catIds))
->addAttributeToFilter('category_id', array('nin' => $notCatIds))
->addAttributeToFilter('category_id', array('nin' => array(2)))// 2 is default category id
->addAttributeToSelect('*');
$productCollection->getSelect()->group('product_id')->distinct(true);
echo '<pre>';
print_r($productCollection->getData());
magento-1.8 product category
I want to get product ids of a specific category and product ids not in other categories only in a specific category.
For example,
category ids = 3, 4, 10 and product ids = 10, 12, 14 and category id 3 belong to product id 10 and category id 4 belong to product ids 10, 12, 14 and category id 10 belong to product id 14.
When I filter on category id = 4, it returns product ids 10, 12 and 14, but I want to return only product id 12 because I only want the product id which is not in other categories. In my filter category id 4 returns product ids 10,12 and 14 but I only want to product id 4 because 10 and 14 belong to other categories which I don't want.
I only want to product id 12 in filter. Which filter I used ?
$catIds = array(4);
$notCatIds = array(3, 10);
$productCollection = Mage::getResourceModel('catalog/product_collection')
->setStoreId(0)
->joinField('category_id', 'catalog/category_product', 'category_id', 'product_id=entity_id', null, 'left')
->addAttributeToFilter('category_id', array('in' => $notCatIds))
->addAttributeToFilter('category_id', array('in' => $catIds))
->addAttributeToFilter('category_id', array('nin' => $notCatIds))
->addAttributeToFilter('category_id', array('nin' => array(2)))// 2 is default category id
->addAttributeToSelect('*');
$productCollection->getSelect()->group('product_id')->distinct(true);
echo '<pre>';
print_r($productCollection->getData());
magento-1.8 product category
magento-1.8 product category
edited Feb 15 '18 at 16:11
MGento
1,224319
1,224319
asked Feb 18 '15 at 17:15
johnjohn
114
114
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Did you solve??
– Gem
Apr 23 '18 at 4:20
add a comment |
Did you solve??
– Gem
Apr 23 '18 at 4:20
Did you solve??
– Gem
Apr 23 '18 at 4:20
Did you solve??
– Gem
Apr 23 '18 at 4:20
add a comment |
1 Answer
1
active
oldest
votes
Step1: all categories ids form Category
and then
$categiesIDs= Mage::getResourceModel('catalog/category_collection')->getAllIds();
Step2: exclude your category[12] from $categiesIDs uset
Step3: Then Product collection filter by Categories ids.
$productCollection->getSelect()
->join(
array('at_category_id' => $productCollection->getTable('catalog/category_product')),
'at_category_id.product_id=e.entity_id',
array(
'at_category_id.category_id',
'cattotal'=> new Zend_Db_Expr('COUNT(*)')
)
->group('e.entity_id');
12 is product id not category id. what you say i dont understand ? please eleborate
– john
Feb 18 '15 at 18:23
10,12 and 14 are product ids which belongs to category id (4) and category id (3) belongs to product id(10) and category id 10 belongs to product id(14).Now My issue is when i filter using category id(4), it returns 10,12,14 product ids but i only want to product id 12 because product id(12) is not belongs to other categories
– john
Feb 18 '15 at 18:29
just wait .. you want to this type of work.get product collection filter which have only category
– Amit Bera♦
Feb 18 '15 at 18:39
yes something like this. In sort not common product ids not in filter get back only. Example men and women are categories, product ids (10,12,14).men contains 10 and 14 product ids and women category contain 10,12,14 product ids. when i filter women category,i only want product id(12) because product id(12) not contain in men category.
– john
Feb 18 '15 at 18:45
i don't want to 10 and 14 product ids because it belongs to other(men) category in filter.
– john
Feb 18 '15 at 18:47
|
show 1 more comment
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%2f57717%2fhow-to-get-product-ids-of-specific-category-and-not-in-other-categories-in-magen%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
Step1: all categories ids form Category
and then
$categiesIDs= Mage::getResourceModel('catalog/category_collection')->getAllIds();
Step2: exclude your category[12] from $categiesIDs uset
Step3: Then Product collection filter by Categories ids.
$productCollection->getSelect()
->join(
array('at_category_id' => $productCollection->getTable('catalog/category_product')),
'at_category_id.product_id=e.entity_id',
array(
'at_category_id.category_id',
'cattotal'=> new Zend_Db_Expr('COUNT(*)')
)
->group('e.entity_id');
12 is product id not category id. what you say i dont understand ? please eleborate
– john
Feb 18 '15 at 18:23
10,12 and 14 are product ids which belongs to category id (4) and category id (3) belongs to product id(10) and category id 10 belongs to product id(14).Now My issue is when i filter using category id(4), it returns 10,12,14 product ids but i only want to product id 12 because product id(12) is not belongs to other categories
– john
Feb 18 '15 at 18:29
just wait .. you want to this type of work.get product collection filter which have only category
– Amit Bera♦
Feb 18 '15 at 18:39
yes something like this. In sort not common product ids not in filter get back only. Example men and women are categories, product ids (10,12,14).men contains 10 and 14 product ids and women category contain 10,12,14 product ids. when i filter women category,i only want product id(12) because product id(12) not contain in men category.
– john
Feb 18 '15 at 18:45
i don't want to 10 and 14 product ids because it belongs to other(men) category in filter.
– john
Feb 18 '15 at 18:47
|
show 1 more comment
Step1: all categories ids form Category
and then
$categiesIDs= Mage::getResourceModel('catalog/category_collection')->getAllIds();
Step2: exclude your category[12] from $categiesIDs uset
Step3: Then Product collection filter by Categories ids.
$productCollection->getSelect()
->join(
array('at_category_id' => $productCollection->getTable('catalog/category_product')),
'at_category_id.product_id=e.entity_id',
array(
'at_category_id.category_id',
'cattotal'=> new Zend_Db_Expr('COUNT(*)')
)
->group('e.entity_id');
12 is product id not category id. what you say i dont understand ? please eleborate
– john
Feb 18 '15 at 18:23
10,12 and 14 are product ids which belongs to category id (4) and category id (3) belongs to product id(10) and category id 10 belongs to product id(14).Now My issue is when i filter using category id(4), it returns 10,12,14 product ids but i only want to product id 12 because product id(12) is not belongs to other categories
– john
Feb 18 '15 at 18:29
just wait .. you want to this type of work.get product collection filter which have only category
– Amit Bera♦
Feb 18 '15 at 18:39
yes something like this. In sort not common product ids not in filter get back only. Example men and women are categories, product ids (10,12,14).men contains 10 and 14 product ids and women category contain 10,12,14 product ids. when i filter women category,i only want product id(12) because product id(12) not contain in men category.
– john
Feb 18 '15 at 18:45
i don't want to 10 and 14 product ids because it belongs to other(men) category in filter.
– john
Feb 18 '15 at 18:47
|
show 1 more comment
Step1: all categories ids form Category
and then
$categiesIDs= Mage::getResourceModel('catalog/category_collection')->getAllIds();
Step2: exclude your category[12] from $categiesIDs uset
Step3: Then Product collection filter by Categories ids.
$productCollection->getSelect()
->join(
array('at_category_id' => $productCollection->getTable('catalog/category_product')),
'at_category_id.product_id=e.entity_id',
array(
'at_category_id.category_id',
'cattotal'=> new Zend_Db_Expr('COUNT(*)')
)
->group('e.entity_id');
Step1: all categories ids form Category
and then
$categiesIDs= Mage::getResourceModel('catalog/category_collection')->getAllIds();
Step2: exclude your category[12] from $categiesIDs uset
Step3: Then Product collection filter by Categories ids.
$productCollection->getSelect()
->join(
array('at_category_id' => $productCollection->getTable('catalog/category_product')),
'at_category_id.product_id=e.entity_id',
array(
'at_category_id.category_id',
'cattotal'=> new Zend_Db_Expr('COUNT(*)')
)
->group('e.entity_id');
edited Jul 20 '17 at 9:22
sv3n
9,96662557
9,96662557
answered Feb 18 '15 at 18:03
Amit Bera♦Amit Bera
60k1677178
60k1677178
12 is product id not category id. what you say i dont understand ? please eleborate
– john
Feb 18 '15 at 18:23
10,12 and 14 are product ids which belongs to category id (4) and category id (3) belongs to product id(10) and category id 10 belongs to product id(14).Now My issue is when i filter using category id(4), it returns 10,12,14 product ids but i only want to product id 12 because product id(12) is not belongs to other categories
– john
Feb 18 '15 at 18:29
just wait .. you want to this type of work.get product collection filter which have only category
– Amit Bera♦
Feb 18 '15 at 18:39
yes something like this. In sort not common product ids not in filter get back only. Example men and women are categories, product ids (10,12,14).men contains 10 and 14 product ids and women category contain 10,12,14 product ids. when i filter women category,i only want product id(12) because product id(12) not contain in men category.
– john
Feb 18 '15 at 18:45
i don't want to 10 and 14 product ids because it belongs to other(men) category in filter.
– john
Feb 18 '15 at 18:47
|
show 1 more comment
12 is product id not category id. what you say i dont understand ? please eleborate
– john
Feb 18 '15 at 18:23
10,12 and 14 are product ids which belongs to category id (4) and category id (3) belongs to product id(10) and category id 10 belongs to product id(14).Now My issue is when i filter using category id(4), it returns 10,12,14 product ids but i only want to product id 12 because product id(12) is not belongs to other categories
– john
Feb 18 '15 at 18:29
just wait .. you want to this type of work.get product collection filter which have only category
– Amit Bera♦
Feb 18 '15 at 18:39
yes something like this. In sort not common product ids not in filter get back only. Example men and women are categories, product ids (10,12,14).men contains 10 and 14 product ids and women category contain 10,12,14 product ids. when i filter women category,i only want product id(12) because product id(12) not contain in men category.
– john
Feb 18 '15 at 18:45
i don't want to 10 and 14 product ids because it belongs to other(men) category in filter.
– john
Feb 18 '15 at 18:47
12 is product id not category id. what you say i dont understand ? please eleborate
– john
Feb 18 '15 at 18:23
12 is product id not category id. what you say i dont understand ? please eleborate
– john
Feb 18 '15 at 18:23
10,12 and 14 are product ids which belongs to category id (4) and category id (3) belongs to product id(10) and category id 10 belongs to product id(14).Now My issue is when i filter using category id(4), it returns 10,12,14 product ids but i only want to product id 12 because product id(12) is not belongs to other categories
– john
Feb 18 '15 at 18:29
10,12 and 14 are product ids which belongs to category id (4) and category id (3) belongs to product id(10) and category id 10 belongs to product id(14).Now My issue is when i filter using category id(4), it returns 10,12,14 product ids but i only want to product id 12 because product id(12) is not belongs to other categories
– john
Feb 18 '15 at 18:29
just wait .. you want to this type of work.get product collection filter which have only category
– Amit Bera♦
Feb 18 '15 at 18:39
just wait .. you want to this type of work.get product collection filter which have only category
– Amit Bera♦
Feb 18 '15 at 18:39
yes something like this. In sort not common product ids not in filter get back only. Example men and women are categories, product ids (10,12,14).men contains 10 and 14 product ids and women category contain 10,12,14 product ids. when i filter women category,i only want product id(12) because product id(12) not contain in men category.
– john
Feb 18 '15 at 18:45
yes something like this. In sort not common product ids not in filter get back only. Example men and women are categories, product ids (10,12,14).men contains 10 and 14 product ids and women category contain 10,12,14 product ids. when i filter women category,i only want product id(12) because product id(12) not contain in men category.
– john
Feb 18 '15 at 18:45
i don't want to 10 and 14 product ids because it belongs to other(men) category in filter.
– john
Feb 18 '15 at 18:47
i don't want to 10 and 14 product ids because it belongs to other(men) category in filter.
– john
Feb 18 '15 at 18:47
|
show 1 more comment
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%2f57717%2fhow-to-get-product-ids-of-specific-category-and-not-in-other-categories-in-magen%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
Did you solve??
– Gem
Apr 23 '18 at 4:20