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;








2















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());









share|improve this question
















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


















2















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());









share|improve this question
















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














2












2








2








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());









share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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


















  • 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











1 Answer
1






active

oldest

votes


















0














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');





share|improve this answer

























  • 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











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
);



);













draft saved

draft discarded


















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









0














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');





share|improve this answer

























  • 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















0














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');





share|improve this answer

























  • 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













0












0








0







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');





share|improve this answer















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');






share|improve this answer














share|improve this answer



share|improve this answer








edited Jul 20 '17 at 9:22









sv3n

9,96662557




9,96662557










answered Feb 18 '15 at 18:03









Amit BeraAmit 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

















  • 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

















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Magento 2 - Add success message with knockout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

Fil:Tokke komm.svg

Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?