Magento 2: Custom Attribute Value Not Getting in Category Page

catalogcustom-attributescustom-optionsmagento-2.1product

I have created is_freeshipping attribute it's a boolean (Yes/No), and it's showing while product editing in Admin Panel.

And I am getting its value successfully on the Product page, But Category page returning false (No) even though it is true(Yes).

I tried to get this value by below code.

<?php $isFreeShipping = $_product->getResource()->getAttribute('is_freeshipping')->getFrontend()->getValue($_product); ?>

Is it the correct procedure? Please suggest me how to get the value of a custom attribute in Category Page?

Best Answer

Please cross check your attribute is_freeshipping have the flag Use in product listing set to Yes. After setting the flag you need to do reindex product flat index if Flat catalog is enabled.

enter image description here

Related Topic