gramiyaa.com
Open in
urlscan Pro
23.227.38.65
Public Scan
Submitted URL: http://gramiyaa.com/
Effective URL: https://gramiyaa.com/
Submission: On June 29 via api from US — Scanned from CA
Effective URL: https://gramiyaa.com/
Submission: On June 29 via api from US — Scanned from CA
Form analysis
3 forms found in the DOMPOST /cart
<form action="/cart" id="CartDrawer-Form" class="cart__contents cart-drawer__form" method="post">
<div id="CartDrawer-CartItems" class="drawer__contents js-contents">
<p id="CartDrawer-LiveRegionText" class="visually-hidden" role="status"></p>
<p id="CartDrawer-LineItemStatus" class="visually-hidden" aria-hidden="true" role="status">Loading...</p>
</div>
<div id="CartDrawer-CartErrors" role="alert"></div>
<div class="custom-recommended">
<p class="like-ph">You may also like...</p>
<div class="cart-drawer-product">
<div class="upsell-grid-item ">
<a href="/products/coconut-oil" class="upsell-single-product">
<div class="upsell-product__image">
<img data-src="//gramiyaa.com/cdn/shop/files/Gramiyaa_Amazon_Ghee_PremiumAPluscoconutOil_1L-100_260x.jpg?v=1711620455" class="lazyload">
</div>
<h4 class="upsell-card__heading">Wood Cold Pressed Coconut Oil</h4>
</a>
<div class="upsell-text-information">
<div class="upsell-price">
<div class="price price--on-sale ">
<div class="price__container">
<div class="price__regular">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular"> ₹235 </span>
</div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular"> ₹290 </s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last"> ₹235 </span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div>
<div class="loading-overlay hidden">
<div class="loading-overlay__spinner">
<svg aria-hidden="true" focusable="false" role="presentation" class="spinner" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</div>
<span id="click-32901380472961" class="upsell-add-to-cart">+</span>
</div>
</div>
</div>
<script>
$(document).ready(function() {
setTimeout(() => {
/*====================Retrieving Sheet Data=====================
var sheetData = undefined;
var sheetKey = "11raQ-6D5upnWasP3B6EntXXYSa0XLIiaKdoPfTsNEUo";
var apiKey = "AIzaSyBhM2SAC77La_UbQ8PujCpeNuAXE8cG1Po";
var sheetUrl = "https://sheets.googleapis.com/v4/spreadsheets/" + sheetKey + "/values/Sheet1?key=" + apiKey;
$.ajax({
url: sheetUrl,
dataType: "json",
async: false,
success: function(data) {
sheetData = data.values;
$('body').trigger('sheet_ready');
},
error: function(XMLHttpRequest, textStatus) {}
});
*/
/*==================pincode validation================*/
function checkInSheet(pincode) {
var store_pincode = $('#pinboxs').val();
localStorage.setItem("pincode_info", store_pincode);
var result = "NA";
var message = "NA";
var city = "NA";
for (var i = 0; i < sheetData.length; i++) {
if (!sheetData[i] || !sheetData[i].length) {
continue;
} else if (sheetData[i]) {
var fullyServiceable = sheetData[i][0];
if (fullyServiceable == pincode) {
message = sheetData[i][2];
city = sheetData[i][1];
result = "FS";
localStorage.setItem("city", city);
localStorage.setItem("message", message);
break;
}
}
}
return result;
}
var $input = $('#pinboxs');
var $submitBtn = $('.pincode-go');
var $inputValue;
//Allow only number
function _isNumberKey(evt) {
var charCode = (evt.which) ? evt.which : event.keyCode
if (charCode > 31 && (charCode < 48 || charCode > 57)) return false;
return true;
}
//Restrict Paste
$input.on("paste", function(e) {
e.preventDefault();
});
$input.keydown(function(event) {
return _isNumberKey(event);
var $self = $(this);
var $removedText = $self.val().replace(/\D/, '');
$self.val($removedText);
});
//click check availaibility button on enter
var input = document.getElementById("pinboxs");
input.addEventListener("keypress", function(event) {
if (event.key === "Enter") {
event.preventDefault();
document.querySelector(".pincode-go").click();
}
});
//update cart bubble
function _updateBubble() {
$(".cart-count-bubble").removeClass("is--empty")
$.ajax({
type: 'GET',
url: '/cart.js',
cache: false,
dataType: 'json',
success: function(cart) {
$(".cart-count-bubble [aria-hidden=true]").text(cart.item_count);
}
});
}
$(document).on('click', '#click-32901380472961', function() {
if (!localStorage.getItem('pincode')) {
$('.sucesss--adding').show();
$('.success-result').hide();
$('.error-result').hide();
$('.popup-text').show();
$(".pincode-popup").delay().fadeIn();
$('.form-pincode').show();
$submitBtn.on('click', function() {
$inputValue = $input.val();
if ($inputValue.length == 6) {
var $response = checkInSheet($inputValue);
var $result = $response;
localStorage.setItem("serviceable", $result);
if ($result == "NA") {
$('.popup-text').hide();
$('.error-result').show();
$('.suss-img').hide();
$('.wrong-img').show();
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
} else if ($result == "FS") {
$('.error-result').hide();
$('.form-pincode').hide();
$('.popup-text').hide();
$('.success-result').show();
if (localStorage.getItem('button') == 'edit') {
$('.sucesss--adding').hide();
}
localStorage.setItem("pincode", "serviceable");
setTimeout(function() {
$(this).siblings('.custom-recommended .loading-overlay.hidden').removeClass('hidden');
$('#click-32901380472961').hide();
var formRCD = {
quantity: 1,
id: 32901380472961
};
$.ajax({
type: "POST",
url: "/cart/add.js",
cache: false,
data: formRCD,
dataType: "json",
success: function(data) {
$('.custom-recommended .loading-overlay').addClass('hidden');
$('#click-32901380472961').show();
$('cart-drawer').removeClass('is-empty');
$('#CartDrawer').load(location.href + " #CartDrawer");
setTimeout(function() {
document.querySelector('cart-drawer').open(true);
_updateBubble();
setTimeout(function() {
if (localStorage.getItem('serviceable') == 'FS') {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(localStorage.getItem('city'));
$(".delivery-msg").text(localStorage.getItem('message'));
$('.suss-img').show();
$('.wrong-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').removeAttribute('disabled');
} else {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.suss-img').hide();
$('.wrong-img').show();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
}
}, 2000);
}, 800);
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("error");
console.log(xhr.status);
console.log(thrownError);
},
complete: function() {
renderPopPrices();
}
});
$('.pincode-popup').fadeOut();
}, 1000);
}
} else {
$(".error--title").text("Please enter 6 digit pincode!!");
$('.error-result').show();
$('.popup-text').hide();
}
});
} else {
//get start
if (localStorage.getItem('serviceable') == 'NA') {
$('.sucesss--adding').show();
$('.success-result').hide();
$('.error-result').hide();
$('.popup-text').show();
$(".pincode-popup").delay().fadeIn();
$('.form-pincode').show();
$(".form-pincode input:text").val(localStorage.getItem('pincode_info'));
$submitBtn.on('click', function() {
$inputValue = $input.val();
if ($inputValue.length == 6) {
var $response = checkInSheet($inputValue);
var $result = $response;
localStorage.setItem("serviceable", $result);
if ($result == "NA") {
$('.popup-text').hide();
$('.error-result').show();
$('.suss-img').hide();
$('.wrong-img').show();
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
} else if ($result == "FS") {
$('.error-result').hide();
$('.form-pincode').hide();
$('.popup-text').hide();
$('.success-result').show();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
if (localStorage.getItem('button') == 'edit') {
$('.sucesss--adding').hide();
}
localStorage.setItem("pincode", "serviceable");
setTimeout(function() {
$(this).siblings('.custom-recommended .loading-overlay.hidden').removeClass('hidden');
$('#click-32901380472961').hide();
var formRCD = {
quantity: 1,
id: 32901380472961
};
$.ajax({
type: "POST",
url: "/cart/add.js",
cache: false,
data: formRCD,
dataType: "json",
success: function(data) {
$('.custom-recommended .loading-overlay').addClass('hidden');
$('#click-32901380472961').show();
$('cart-drawer').removeClass('is-empty');
$('#CartDrawer').load(location.href + " #CartDrawer");
setTimeout(function() {
document.querySelector('cart-drawer').open(true);
_updateBubble();
setTimeout(function() {
if (localStorage.getItem('serviceable') == 'FS') {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(localStorage.getItem('city'));
$(".delivery-msg").text(localStorage.getItem('message'));
$('.suss-img').show();
$('.wrong-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').removeAttribute('disabled');
} else {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.suss-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
$('.wrong-img').show();
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
}
}, 2000);
}, 800);
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("error");
console.log(xhr.status);
console.log(thrownError);
},
complete: function() {
renderPopPrices();
}
});
$('.pincode-popup').fadeOut();
}, 1000);
}
} else {
$(".error--title").text("Please enter 6 digit pincode!!");
$('.error-result').show();
$('.popup-text').hide();
}
});
}
// end custom
if (localStorage.getItem('serviceable') == 'FS') {
$(this).siblings('.custom-recommended .loading-overlay.hidden').removeClass('hidden');
$('#click-32901380472961').hide();
var formRCD = {
quantity: 1,
id: 32901380472961
};
$.ajax({
type: "POST",
url: "/cart/add.js",
cache: false,
data: formRCD,
dataType: "json",
success: function(data) {
$('.custom-recommended .loading-overlay').addClass('hidden');
$('#click-32901380472961').show();
$('cart-drawer').removeClass('is-empty');
$('#CartDrawer').load(location.href + " #CartDrawer");
setTimeout(function() {
document.querySelector('cart-drawer').open(true);
_updateBubble();
setTimeout(function() {
if (localStorage.getItem('serviceable') == 'FS') {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(localStorage.getItem('city'));
$(".delivery-msg").text(localStorage.getItem('message'));
$('.suss-img').show();
$('.wrong-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').removeAttribute('disabled');
} else {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.suss-img').hide();
$('.wrong-img').show();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
}
}, 2000);
}, 800);
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("error");
},
complete: function() {
renderPopPrices();
}
});
}
}
});
}, 500)
});
$('.edit-img').click(function() {
localStorage.setItem("button", "edit");
$('.sucesss--adding').show();
$('.success-result').hide();
$('.error-result').hide();
$('.form-pincode').show();
$('.popup-text').show();
$(".pincode-popup").delay().fadeIn();
});
</script>
</div>
<div class="upsell-grid-item ">
<a href="/products/sesame-oil" class="upsell-single-product">
<div class="upsell-product__image">
<img data-src="//gramiyaa.com/cdn/shop/files/Gramiyaa_Amazon_Ghee_PremiumAPlussesameOil_1L-100_260x.jpg?v=1711620530" class="lazyload">
</div>
<h4 class="upsell-card__heading">Wood Cold Pressed Sesame Oil</h4>
</a>
<div class="upsell-text-information">
<div class="upsell-price">
<div class="price price--on-sale ">
<div class="price__container">
<div class="price__regular">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular"> ₹626 </span>
</div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular"> ₹690 </s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last"> ₹626 </span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div>
<div class="loading-overlay hidden">
<div class="loading-overlay__spinner">
<svg aria-hidden="true" focusable="false" role="presentation" class="spinner" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</div>
<span id="click-19891772981377" class="upsell-add-to-cart">+</span>
</div>
</div>
</div>
<script>
$(document).ready(function() {
setTimeout(() => {
/*====================Retrieving Sheet Data=====================
var sheetData = undefined;
var sheetKey = "11raQ-6D5upnWasP3B6EntXXYSa0XLIiaKdoPfTsNEUo";
var apiKey = "AIzaSyBhM2SAC77La_UbQ8PujCpeNuAXE8cG1Po";
var sheetUrl = "https://sheets.googleapis.com/v4/spreadsheets/" + sheetKey + "/values/Sheet1?key=" + apiKey;
$.ajax({
url: sheetUrl,
dataType: "json",
async: false,
success: function(data) {
sheetData = data.values;
$('body').trigger('sheet_ready');
},
error: function(XMLHttpRequest, textStatus) {}
});
*/
/*==================pincode validation================*/
function checkInSheet(pincode) {
var store_pincode = $('#pinboxs').val();
localStorage.setItem("pincode_info", store_pincode);
var result = "NA";
var message = "NA";
var city = "NA";
for (var i = 0; i < sheetData.length; i++) {
if (!sheetData[i] || !sheetData[i].length) {
continue;
} else if (sheetData[i]) {
var fullyServiceable = sheetData[i][0];
if (fullyServiceable == pincode) {
message = sheetData[i][2];
city = sheetData[i][1];
result = "FS";
localStorage.setItem("city", city);
localStorage.setItem("message", message);
break;
}
}
}
return result;
}
var $input = $('#pinboxs');
var $submitBtn = $('.pincode-go');
var $inputValue;
//Allow only number
function _isNumberKey(evt) {
var charCode = (evt.which) ? evt.which : event.keyCode
if (charCode > 31 && (charCode < 48 || charCode > 57)) return false;
return true;
}
//Restrict Paste
$input.on("paste", function(e) {
e.preventDefault();
});
$input.keydown(function(event) {
return _isNumberKey(event);
var $self = $(this);
var $removedText = $self.val().replace(/\D/, '');
$self.val($removedText);
});
//click check availaibility button on enter
var input = document.getElementById("pinboxs");
input.addEventListener("keypress", function(event) {
if (event.key === "Enter") {
event.preventDefault();
document.querySelector(".pincode-go").click();
}
});
//update cart bubble
function _updateBubble() {
$(".cart-count-bubble").removeClass("is--empty")
$.ajax({
type: 'GET',
url: '/cart.js',
cache: false,
dataType: 'json',
success: function(cart) {
$(".cart-count-bubble [aria-hidden=true]").text(cart.item_count);
}
});
}
$(document).on('click', '#click-19891772981377', function() {
if (!localStorage.getItem('pincode')) {
$('.sucesss--adding').show();
$('.success-result').hide();
$('.error-result').hide();
$('.popup-text').show();
$(".pincode-popup").delay().fadeIn();
$('.form-pincode').show();
$submitBtn.on('click', function() {
$inputValue = $input.val();
if ($inputValue.length == 6) {
var $response = checkInSheet($inputValue);
var $result = $response;
localStorage.setItem("serviceable", $result);
if ($result == "NA") {
$('.popup-text').hide();
$('.error-result').show();
$('.suss-img').hide();
$('.wrong-img').show();
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
} else if ($result == "FS") {
$('.error-result').hide();
$('.form-pincode').hide();
$('.popup-text').hide();
$('.success-result').show();
if (localStorage.getItem('button') == 'edit') {
$('.sucesss--adding').hide();
}
localStorage.setItem("pincode", "serviceable");
setTimeout(function() {
$(this).siblings('.custom-recommended .loading-overlay.hidden').removeClass('hidden');
$('#click-19891772981377').hide();
var formRCD = {
quantity: 1,
id: 19891772981377
};
$.ajax({
type: "POST",
url: "/cart/add.js",
cache: false,
data: formRCD,
dataType: "json",
success: function(data) {
$('.custom-recommended .loading-overlay').addClass('hidden');
$('#click-19891772981377').show();
$('cart-drawer').removeClass('is-empty');
$('#CartDrawer').load(location.href + " #CartDrawer");
setTimeout(function() {
document.querySelector('cart-drawer').open(true);
_updateBubble();
setTimeout(function() {
if (localStorage.getItem('serviceable') == 'FS') {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(localStorage.getItem('city'));
$(".delivery-msg").text(localStorage.getItem('message'));
$('.suss-img').show();
$('.wrong-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').removeAttribute('disabled');
} else {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.suss-img').hide();
$('.wrong-img').show();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
}
}, 2000);
}, 800);
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("error");
console.log(xhr.status);
console.log(thrownError);
},
complete: function() {
renderPopPrices();
}
});
$('.pincode-popup').fadeOut();
}, 1000);
}
} else {
$(".error--title").text("Please enter 6 digit pincode!!");
$('.error-result').show();
$('.popup-text').hide();
}
});
} else {
//get start
if (localStorage.getItem('serviceable') == 'NA') {
$('.sucesss--adding').show();
$('.success-result').hide();
$('.error-result').hide();
$('.popup-text').show();
$(".pincode-popup").delay().fadeIn();
$('.form-pincode').show();
$(".form-pincode input:text").val(localStorage.getItem('pincode_info'));
$submitBtn.on('click', function() {
$inputValue = $input.val();
if ($inputValue.length == 6) {
var $response = checkInSheet($inputValue);
var $result = $response;
localStorage.setItem("serviceable", $result);
if ($result == "NA") {
$('.popup-text').hide();
$('.error-result').show();
$('.suss-img').hide();
$('.wrong-img').show();
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
} else if ($result == "FS") {
$('.error-result').hide();
$('.form-pincode').hide();
$('.popup-text').hide();
$('.success-result').show();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
if (localStorage.getItem('button') == 'edit') {
$('.sucesss--adding').hide();
}
localStorage.setItem("pincode", "serviceable");
setTimeout(function() {
$(this).siblings('.custom-recommended .loading-overlay.hidden').removeClass('hidden');
$('#click-19891772981377').hide();
var formRCD = {
quantity: 1,
id: 19891772981377
};
$.ajax({
type: "POST",
url: "/cart/add.js",
cache: false,
data: formRCD,
dataType: "json",
success: function(data) {
$('.custom-recommended .loading-overlay').addClass('hidden');
$('#click-19891772981377').show();
$('cart-drawer').removeClass('is-empty');
$('#CartDrawer').load(location.href + " #CartDrawer");
setTimeout(function() {
document.querySelector('cart-drawer').open(true);
_updateBubble();
setTimeout(function() {
if (localStorage.getItem('serviceable') == 'FS') {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(localStorage.getItem('city'));
$(".delivery-msg").text(localStorage.getItem('message'));
$('.suss-img').show();
$('.wrong-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').removeAttribute('disabled');
} else {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.suss-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
$('.wrong-img').show();
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
}
}, 2000);
}, 800);
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("error");
console.log(xhr.status);
console.log(thrownError);
},
complete: function() {
renderPopPrices();
}
});
$('.pincode-popup').fadeOut();
}, 1000);
}
} else {
$(".error--title").text("Please enter 6 digit pincode!!");
$('.error-result').show();
$('.popup-text').hide();
}
});
}
// end custom
if (localStorage.getItem('serviceable') == 'FS') {
$(this).siblings('.custom-recommended .loading-overlay.hidden').removeClass('hidden');
$('#click-19891772981377').hide();
var formRCD = {
quantity: 1,
id: 19891772981377
};
$.ajax({
type: "POST",
url: "/cart/add.js",
cache: false,
data: formRCD,
dataType: "json",
success: function(data) {
$('.custom-recommended .loading-overlay').addClass('hidden');
$('#click-19891772981377').show();
$('cart-drawer').removeClass('is-empty');
$('#CartDrawer').load(location.href + " #CartDrawer");
setTimeout(function() {
document.querySelector('cart-drawer').open(true);
_updateBubble();
setTimeout(function() {
if (localStorage.getItem('serviceable') == 'FS') {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(localStorage.getItem('city'));
$(".delivery-msg").text(localStorage.getItem('message'));
$('.suss-img').show();
$('.wrong-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').removeAttribute('disabled');
} else {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.suss-img').hide();
$('.wrong-img').show();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
}
}, 2000);
}, 800);
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("error");
},
complete: function() {
renderPopPrices();
}
});
}
}
});
}, 500)
});
$('.edit-img').click(function() {
localStorage.setItem("button", "edit");
$('.sucesss--adding').show();
$('.success-result').hide();
$('.error-result').hide();
$('.form-pincode').show();
$('.popup-text').show();
$(".pincode-popup").delay().fadeIn();
});
</script>
</div>
<div class="upsell-grid-item ">
<a href="/products/oil-pourer-dispenser" class="upsell-single-product">
<div class="upsell-product__image">
<img data-src="//gramiyaa.com/cdn/shop/files/stainlesssteelPourer_Artboard1_260x.png?v=1698222264" class="lazyload">
</div>
<h4 class="upsell-card__heading">Stainless Steel Oil Pourer - Dispenser</h4>
</a>
<div class="upsell-text-information">
<div class="upsell-price">
<div class="price price--on-sale ">
<div class="price__container">
<div class="price__regular">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular"> ₹50 </span>
</div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular"> ₹75 </s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last"> ₹50 </span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div>
<div class="loading-overlay hidden">
<div class="loading-overlay__spinner">
<svg aria-hidden="true" focusable="false" role="presentation" class="spinner" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</div>
<span id="click-39321029116033" class="upsell-add-to-cart">+</span>
</div>
</div>
</div>
<script>
$(document).ready(function() {
setTimeout(() => {
/*====================Retrieving Sheet Data=====================
var sheetData = undefined;
var sheetKey = "11raQ-6D5upnWasP3B6EntXXYSa0XLIiaKdoPfTsNEUo";
var apiKey = "AIzaSyBhM2SAC77La_UbQ8PujCpeNuAXE8cG1Po";
var sheetUrl = "https://sheets.googleapis.com/v4/spreadsheets/" + sheetKey + "/values/Sheet1?key=" + apiKey;
$.ajax({
url: sheetUrl,
dataType: "json",
async: false,
success: function(data) {
sheetData = data.values;
$('body').trigger('sheet_ready');
},
error: function(XMLHttpRequest, textStatus) {}
});
*/
/*==================pincode validation================*/
function checkInSheet(pincode) {
var store_pincode = $('#pinboxs').val();
localStorage.setItem("pincode_info", store_pincode);
var result = "NA";
var message = "NA";
var city = "NA";
for (var i = 0; i < sheetData.length; i++) {
if (!sheetData[i] || !sheetData[i].length) {
continue;
} else if (sheetData[i]) {
var fullyServiceable = sheetData[i][0];
if (fullyServiceable == pincode) {
message = sheetData[i][2];
city = sheetData[i][1];
result = "FS";
localStorage.setItem("city", city);
localStorage.setItem("message", message);
break;
}
}
}
return result;
}
var $input = $('#pinboxs');
var $submitBtn = $('.pincode-go');
var $inputValue;
//Allow only number
function _isNumberKey(evt) {
var charCode = (evt.which) ? evt.which : event.keyCode
if (charCode > 31 && (charCode < 48 || charCode > 57)) return false;
return true;
}
//Restrict Paste
$input.on("paste", function(e) {
e.preventDefault();
});
$input.keydown(function(event) {
return _isNumberKey(event);
var $self = $(this);
var $removedText = $self.val().replace(/\D/, '');
$self.val($removedText);
});
//click check availaibility button on enter
var input = document.getElementById("pinboxs");
input.addEventListener("keypress", function(event) {
if (event.key === "Enter") {
event.preventDefault();
document.querySelector(".pincode-go").click();
}
});
//update cart bubble
function _updateBubble() {
$(".cart-count-bubble").removeClass("is--empty")
$.ajax({
type: 'GET',
url: '/cart.js',
cache: false,
dataType: 'json',
success: function(cart) {
$(".cart-count-bubble [aria-hidden=true]").text(cart.item_count);
}
});
}
$(document).on('click', '#click-39321029116033', function() {
if (!localStorage.getItem('pincode')) {
$('.sucesss--adding').show();
$('.success-result').hide();
$('.error-result').hide();
$('.popup-text').show();
$(".pincode-popup").delay().fadeIn();
$('.form-pincode').show();
$submitBtn.on('click', function() {
$inputValue = $input.val();
if ($inputValue.length == 6) {
var $response = checkInSheet($inputValue);
var $result = $response;
localStorage.setItem("serviceable", $result);
if ($result == "NA") {
$('.popup-text').hide();
$('.error-result').show();
$('.suss-img').hide();
$('.wrong-img').show();
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
} else if ($result == "FS") {
$('.error-result').hide();
$('.form-pincode').hide();
$('.popup-text').hide();
$('.success-result').show();
if (localStorage.getItem('button') == 'edit') {
$('.sucesss--adding').hide();
}
localStorage.setItem("pincode", "serviceable");
setTimeout(function() {
$(this).siblings('.custom-recommended .loading-overlay.hidden').removeClass('hidden');
$('#click-39321029116033').hide();
var formRCD = {
quantity: 1,
id: 39321029116033
};
$.ajax({
type: "POST",
url: "/cart/add.js",
cache: false,
data: formRCD,
dataType: "json",
success: function(data) {
$('.custom-recommended .loading-overlay').addClass('hidden');
$('#click-39321029116033').show();
$('cart-drawer').removeClass('is-empty');
$('#CartDrawer').load(location.href + " #CartDrawer");
setTimeout(function() {
document.querySelector('cart-drawer').open(true);
_updateBubble();
setTimeout(function() {
if (localStorage.getItem('serviceable') == 'FS') {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(localStorage.getItem('city'));
$(".delivery-msg").text(localStorage.getItem('message'));
$('.suss-img').show();
$('.wrong-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').removeAttribute('disabled');
} else {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.suss-img').hide();
$('.wrong-img').show();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
}
}, 2000);
}, 800);
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("error");
console.log(xhr.status);
console.log(thrownError);
},
complete: function() {
renderPopPrices();
}
});
$('.pincode-popup').fadeOut();
}, 1000);
}
} else {
$(".error--title").text("Please enter 6 digit pincode!!");
$('.error-result').show();
$('.popup-text').hide();
}
});
} else {
//get start
if (localStorage.getItem('serviceable') == 'NA') {
$('.sucesss--adding').show();
$('.success-result').hide();
$('.error-result').hide();
$('.popup-text').show();
$(".pincode-popup").delay().fadeIn();
$('.form-pincode').show();
$(".form-pincode input:text").val(localStorage.getItem('pincode_info'));
$submitBtn.on('click', function() {
$inputValue = $input.val();
if ($inputValue.length == 6) {
var $response = checkInSheet($inputValue);
var $result = $response;
localStorage.setItem("serviceable", $result);
if ($result == "NA") {
$('.popup-text').hide();
$('.error-result').show();
$('.suss-img').hide();
$('.wrong-img').show();
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
} else if ($result == "FS") {
$('.error-result').hide();
$('.form-pincode').hide();
$('.popup-text').hide();
$('.success-result').show();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
if (localStorage.getItem('button') == 'edit') {
$('.sucesss--adding').hide();
}
localStorage.setItem("pincode", "serviceable");
setTimeout(function() {
$(this).siblings('.custom-recommended .loading-overlay.hidden').removeClass('hidden');
$('#click-39321029116033').hide();
var formRCD = {
quantity: 1,
id: 39321029116033
};
$.ajax({
type: "POST",
url: "/cart/add.js",
cache: false,
data: formRCD,
dataType: "json",
success: function(data) {
$('.custom-recommended .loading-overlay').addClass('hidden');
$('#click-39321029116033').show();
$('cart-drawer').removeClass('is-empty');
$('#CartDrawer').load(location.href + " #CartDrawer");
setTimeout(function() {
document.querySelector('cart-drawer').open(true);
_updateBubble();
setTimeout(function() {
if (localStorage.getItem('serviceable') == 'FS') {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(localStorage.getItem('city'));
$(".delivery-msg").text(localStorage.getItem('message'));
$('.suss-img').show();
$('.wrong-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').removeAttribute('disabled');
} else {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.suss-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
$('.wrong-img').show();
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
}
}, 2000);
}, 800);
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("error");
console.log(xhr.status);
console.log(thrownError);
},
complete: function() {
renderPopPrices();
}
});
$('.pincode-popup').fadeOut();
}, 1000);
}
} else {
$(".error--title").text("Please enter 6 digit pincode!!");
$('.error-result').show();
$('.popup-text').hide();
}
});
}
// end custom
if (localStorage.getItem('serviceable') == 'FS') {
$(this).siblings('.custom-recommended .loading-overlay.hidden').removeClass('hidden');
$('#click-39321029116033').hide();
var formRCD = {
quantity: 1,
id: 39321029116033
};
$.ajax({
type: "POST",
url: "/cart/add.js",
cache: false,
data: formRCD,
dataType: "json",
success: function(data) {
$('.custom-recommended .loading-overlay').addClass('hidden');
$('#click-39321029116033').show();
$('cart-drawer').removeClass('is-empty');
$('#CartDrawer').load(location.href + " #CartDrawer");
setTimeout(function() {
document.querySelector('cart-drawer').open(true);
_updateBubble();
setTimeout(function() {
if (localStorage.getItem('serviceable') == 'FS') {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(localStorage.getItem('city'));
$(".delivery-msg").text(localStorage.getItem('message'));
$('.suss-img').show();
$('.wrong-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').removeAttribute('disabled');
} else {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.suss-img').hide();
$('.wrong-img').show();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
}
}, 2000);
}, 800);
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("error");
},
complete: function() {
renderPopPrices();
}
});
}
}
});
}, 500)
});
$('.edit-img').click(function() {
localStorage.setItem("button", "edit");
$('.sucesss--adding').show();
$('.success-result').hide();
$('.error-result').hide();
$('.form-pincode').show();
$('.popup-text').show();
$(".pincode-popup").delay().fadeIn();
});
</script>
</div>
<div class="upsell-grid-item ">
<a href="/products/2-2-ltr-combo-groundnut-and-coconut-oil" class="upsell-single-product">
<div class="upsell-product__image">
<img data-src="//gramiyaa.com/cdn/shop/files/Hallikar_CowGhee_OillCombo_Artboard15_260x.png?v=1698222028" class="lazyload">
</div>
<h4 class="upsell-card__heading">2+2 ltr Groundnut and Coconut Oil - Combo</h4>
</a>
<div class="upsell-text-information">
<div class="upsell-price">
<div class="price price--on-sale ">
<div class="price__container">
<div class="price__regular">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular"> ₹1,620 </span>
</div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular"> ₹2,080 </s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last"> ₹1,620 </span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div>
<div class="loading-overlay hidden">
<div class="loading-overlay__spinner">
<svg aria-hidden="true" focusable="false" role="presentation" class="spinner" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</div>
<span id="click-39569703665793" class="upsell-add-to-cart">+</span>
</div>
</div>
</div>
<script>
$(document).ready(function() {
setTimeout(() => {
/*====================Retrieving Sheet Data=====================
var sheetData = undefined;
var sheetKey = "11raQ-6D5upnWasP3B6EntXXYSa0XLIiaKdoPfTsNEUo";
var apiKey = "AIzaSyBhM2SAC77La_UbQ8PujCpeNuAXE8cG1Po";
var sheetUrl = "https://sheets.googleapis.com/v4/spreadsheets/" + sheetKey + "/values/Sheet1?key=" + apiKey;
$.ajax({
url: sheetUrl,
dataType: "json",
async: false,
success: function(data) {
sheetData = data.values;
$('body').trigger('sheet_ready');
},
error: function(XMLHttpRequest, textStatus) {}
});
*/
/*==================pincode validation================*/
function checkInSheet(pincode) {
var store_pincode = $('#pinboxs').val();
localStorage.setItem("pincode_info", store_pincode);
var result = "NA";
var message = "NA";
var city = "NA";
for (var i = 0; i < sheetData.length; i++) {
if (!sheetData[i] || !sheetData[i].length) {
continue;
} else if (sheetData[i]) {
var fullyServiceable = sheetData[i][0];
if (fullyServiceable == pincode) {
message = sheetData[i][2];
city = sheetData[i][1];
result = "FS";
localStorage.setItem("city", city);
localStorage.setItem("message", message);
break;
}
}
}
return result;
}
var $input = $('#pinboxs');
var $submitBtn = $('.pincode-go');
var $inputValue;
//Allow only number
function _isNumberKey(evt) {
var charCode = (evt.which) ? evt.which : event.keyCode
if (charCode > 31 && (charCode < 48 || charCode > 57)) return false;
return true;
}
//Restrict Paste
$input.on("paste", function(e) {
e.preventDefault();
});
$input.keydown(function(event) {
return _isNumberKey(event);
var $self = $(this);
var $removedText = $self.val().replace(/\D/, '');
$self.val($removedText);
});
//click check availaibility button on enter
var input = document.getElementById("pinboxs");
input.addEventListener("keypress", function(event) {
if (event.key === "Enter") {
event.preventDefault();
document.querySelector(".pincode-go").click();
}
});
//update cart bubble
function _updateBubble() {
$(".cart-count-bubble").removeClass("is--empty")
$.ajax({
type: 'GET',
url: '/cart.js',
cache: false,
dataType: 'json',
success: function(cart) {
$(".cart-count-bubble [aria-hidden=true]").text(cart.item_count);
}
});
}
$(document).on('click', '#click-39569703665793', function() {
if (!localStorage.getItem('pincode')) {
$('.sucesss--adding').show();
$('.success-result').hide();
$('.error-result').hide();
$('.popup-text').show();
$(".pincode-popup").delay().fadeIn();
$('.form-pincode').show();
$submitBtn.on('click', function() {
$inputValue = $input.val();
if ($inputValue.length == 6) {
var $response = checkInSheet($inputValue);
var $result = $response;
localStorage.setItem("serviceable", $result);
if ($result == "NA") {
$('.popup-text').hide();
$('.error-result').show();
$('.suss-img').hide();
$('.wrong-img').show();
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
} else if ($result == "FS") {
$('.error-result').hide();
$('.form-pincode').hide();
$('.popup-text').hide();
$('.success-result').show();
if (localStorage.getItem('button') == 'edit') {
$('.sucesss--adding').hide();
}
localStorage.setItem("pincode", "serviceable");
setTimeout(function() {
$(this).siblings('.custom-recommended .loading-overlay.hidden').removeClass('hidden');
$('#click-39569703665793').hide();
var formRCD = {
quantity: 1,
id: 39569703665793
};
$.ajax({
type: "POST",
url: "/cart/add.js",
cache: false,
data: formRCD,
dataType: "json",
success: function(data) {
$('.custom-recommended .loading-overlay').addClass('hidden');
$('#click-39569703665793').show();
$('cart-drawer').removeClass('is-empty');
$('#CartDrawer').load(location.href + " #CartDrawer");
setTimeout(function() {
document.querySelector('cart-drawer').open(true);
_updateBubble();
setTimeout(function() {
if (localStorage.getItem('serviceable') == 'FS') {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(localStorage.getItem('city'));
$(".delivery-msg").text(localStorage.getItem('message'));
$('.suss-img').show();
$('.wrong-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').removeAttribute('disabled');
} else {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.suss-img').hide();
$('.wrong-img').show();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
}
}, 2000);
}, 800);
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("error");
console.log(xhr.status);
console.log(thrownError);
},
complete: function() {
renderPopPrices();
}
});
$('.pincode-popup').fadeOut();
}, 1000);
}
} else {
$(".error--title").text("Please enter 6 digit pincode!!");
$('.error-result').show();
$('.popup-text').hide();
}
});
} else {
//get start
if (localStorage.getItem('serviceable') == 'NA') {
$('.sucesss--adding').show();
$('.success-result').hide();
$('.error-result').hide();
$('.popup-text').show();
$(".pincode-popup").delay().fadeIn();
$('.form-pincode').show();
$(".form-pincode input:text").val(localStorage.getItem('pincode_info'));
$submitBtn.on('click', function() {
$inputValue = $input.val();
if ($inputValue.length == 6) {
var $response = checkInSheet($inputValue);
var $result = $response;
localStorage.setItem("serviceable", $result);
if ($result == "NA") {
$('.popup-text').hide();
$('.error-result').show();
$('.suss-img').hide();
$('.wrong-img').show();
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
} else if ($result == "FS") {
$('.error-result').hide();
$('.form-pincode').hide();
$('.popup-text').hide();
$('.success-result').show();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
if (localStorage.getItem('button') == 'edit') {
$('.sucesss--adding').hide();
}
localStorage.setItem("pincode", "serviceable");
setTimeout(function() {
$(this).siblings('.custom-recommended .loading-overlay.hidden').removeClass('hidden');
$('#click-39569703665793').hide();
var formRCD = {
quantity: 1,
id: 39569703665793
};
$.ajax({
type: "POST",
url: "/cart/add.js",
cache: false,
data: formRCD,
dataType: "json",
success: function(data) {
$('.custom-recommended .loading-overlay').addClass('hidden');
$('#click-39569703665793').show();
$('cart-drawer').removeClass('is-empty');
$('#CartDrawer').load(location.href + " #CartDrawer");
setTimeout(function() {
document.querySelector('cart-drawer').open(true);
_updateBubble();
setTimeout(function() {
if (localStorage.getItem('serviceable') == 'FS') {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(localStorage.getItem('city'));
$(".delivery-msg").text(localStorage.getItem('message'));
$('.suss-img').show();
$('.wrong-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').removeAttribute('disabled');
} else {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.suss-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
$('.wrong-img').show();
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
}
}, 2000);
}, 800);
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("error");
console.log(xhr.status);
console.log(thrownError);
},
complete: function() {
renderPopPrices();
}
});
$('.pincode-popup').fadeOut();
}, 1000);
}
} else {
$(".error--title").text("Please enter 6 digit pincode!!");
$('.error-result').show();
$('.popup-text').hide();
}
});
}
// end custom
if (localStorage.getItem('serviceable') == 'FS') {
$(this).siblings('.custom-recommended .loading-overlay.hidden').removeClass('hidden');
$('#click-39569703665793').hide();
var formRCD = {
quantity: 1,
id: 39569703665793
};
$.ajax({
type: "POST",
url: "/cart/add.js",
cache: false,
data: formRCD,
dataType: "json",
success: function(data) {
$('.custom-recommended .loading-overlay').addClass('hidden');
$('#click-39569703665793').show();
$('cart-drawer').removeClass('is-empty');
$('#CartDrawer').load(location.href + " #CartDrawer");
setTimeout(function() {
document.querySelector('cart-drawer').open(true);
_updateBubble();
setTimeout(function() {
if (localStorage.getItem('serviceable') == 'FS') {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(localStorage.getItem('city'));
$(".delivery-msg").text(localStorage.getItem('message'));
$('.suss-img').show();
$('.wrong-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').removeAttribute('disabled');
} else {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.suss-img').hide();
$('.wrong-img').show();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
}
}, 2000);
}, 800);
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("error");
},
complete: function() {
renderPopPrices();
}
});
}
}
});
}, 500)
});
$('.edit-img').click(function() {
localStorage.setItem("button", "edit");
$('.sucesss--adding').show();
$('.success-result').hide();
$('.error-result').hide();
$('.form-pincode').show();
$('.popup-text').show();
$(".pincode-popup").delay().fadeIn();
});
</script>
</div>
<div class="upsell-grid-item ">
<a href="/products/2-2-ltr-combo-coconut-and-sesame-oil" class="upsell-single-product">
<div class="upsell-product__image">
<img data-src="//gramiyaa.com/cdn/shop/files/Hallikar_CowGhee_OillCombo_Artboard8_260x.png?v=1698222139" class="lazyload">
</div>
<h4 class="upsell-card__heading">2+2 ltr Coconut and Sesame Oil - Combo</h4>
</a>
<div class="upsell-text-information">
<div class="upsell-price">
<div class="price price--on-sale ">
<div class="price__container">
<div class="price__regular">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular"> ₹2,020 </span>
</div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular"> ₹2,480 </s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last"> ₹2,020 </span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div>
<div class="loading-overlay hidden">
<div class="loading-overlay__spinner">
<svg aria-hidden="true" focusable="false" role="presentation" class="spinner" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</div>
<span id="click-39569703633025" class="upsell-add-to-cart">+</span>
</div>
</div>
</div>
<script>
$(document).ready(function() {
setTimeout(() => {
/*====================Retrieving Sheet Data=====================
var sheetData = undefined;
var sheetKey = "11raQ-6D5upnWasP3B6EntXXYSa0XLIiaKdoPfTsNEUo";
var apiKey = "AIzaSyBhM2SAC77La_UbQ8PujCpeNuAXE8cG1Po";
var sheetUrl = "https://sheets.googleapis.com/v4/spreadsheets/" + sheetKey + "/values/Sheet1?key=" + apiKey;
$.ajax({
url: sheetUrl,
dataType: "json",
async: false,
success: function(data) {
sheetData = data.values;
$('body').trigger('sheet_ready');
},
error: function(XMLHttpRequest, textStatus) {}
});
*/
/*==================pincode validation================*/
function checkInSheet(pincode) {
var store_pincode = $('#pinboxs').val();
localStorage.setItem("pincode_info", store_pincode);
var result = "NA";
var message = "NA";
var city = "NA";
for (var i = 0; i < sheetData.length; i++) {
if (!sheetData[i] || !sheetData[i].length) {
continue;
} else if (sheetData[i]) {
var fullyServiceable = sheetData[i][0];
if (fullyServiceable == pincode) {
message = sheetData[i][2];
city = sheetData[i][1];
result = "FS";
localStorage.setItem("city", city);
localStorage.setItem("message", message);
break;
}
}
}
return result;
}
var $input = $('#pinboxs');
var $submitBtn = $('.pincode-go');
var $inputValue;
//Allow only number
function _isNumberKey(evt) {
var charCode = (evt.which) ? evt.which : event.keyCode
if (charCode > 31 && (charCode < 48 || charCode > 57)) return false;
return true;
}
//Restrict Paste
$input.on("paste", function(e) {
e.preventDefault();
});
$input.keydown(function(event) {
return _isNumberKey(event);
var $self = $(this);
var $removedText = $self.val().replace(/\D/, '');
$self.val($removedText);
});
//click check availaibility button on enter
var input = document.getElementById("pinboxs");
input.addEventListener("keypress", function(event) {
if (event.key === "Enter") {
event.preventDefault();
document.querySelector(".pincode-go").click();
}
});
//update cart bubble
function _updateBubble() {
$(".cart-count-bubble").removeClass("is--empty")
$.ajax({
type: 'GET',
url: '/cart.js',
cache: false,
dataType: 'json',
success: function(cart) {
$(".cart-count-bubble [aria-hidden=true]").text(cart.item_count);
}
});
}
$(document).on('click', '#click-39569703633025', function() {
if (!localStorage.getItem('pincode')) {
$('.sucesss--adding').show();
$('.success-result').hide();
$('.error-result').hide();
$('.popup-text').show();
$(".pincode-popup").delay().fadeIn();
$('.form-pincode').show();
$submitBtn.on('click', function() {
$inputValue = $input.val();
if ($inputValue.length == 6) {
var $response = checkInSheet($inputValue);
var $result = $response;
localStorage.setItem("serviceable", $result);
if ($result == "NA") {
$('.popup-text').hide();
$('.error-result').show();
$('.suss-img').hide();
$('.wrong-img').show();
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
} else if ($result == "FS") {
$('.error-result').hide();
$('.form-pincode').hide();
$('.popup-text').hide();
$('.success-result').show();
if (localStorage.getItem('button') == 'edit') {
$('.sucesss--adding').hide();
}
localStorage.setItem("pincode", "serviceable");
setTimeout(function() {
$(this).siblings('.custom-recommended .loading-overlay.hidden').removeClass('hidden');
$('#click-39569703633025').hide();
var formRCD = {
quantity: 1,
id: 39569703633025
};
$.ajax({
type: "POST",
url: "/cart/add.js",
cache: false,
data: formRCD,
dataType: "json",
success: function(data) {
$('.custom-recommended .loading-overlay').addClass('hidden');
$('#click-39569703633025').show();
$('cart-drawer').removeClass('is-empty');
$('#CartDrawer').load(location.href + " #CartDrawer");
setTimeout(function() {
document.querySelector('cart-drawer').open(true);
_updateBubble();
setTimeout(function() {
if (localStorage.getItem('serviceable') == 'FS') {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(localStorage.getItem('city'));
$(".delivery-msg").text(localStorage.getItem('message'));
$('.suss-img').show();
$('.wrong-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').removeAttribute('disabled');
} else {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.suss-img').hide();
$('.wrong-img').show();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
}
}, 2000);
}, 800);
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("error");
console.log(xhr.status);
console.log(thrownError);
},
complete: function() {
renderPopPrices();
}
});
$('.pincode-popup').fadeOut();
}, 1000);
}
} else {
$(".error--title").text("Please enter 6 digit pincode!!");
$('.error-result').show();
$('.popup-text').hide();
}
});
} else {
//get start
if (localStorage.getItem('serviceable') == 'NA') {
$('.sucesss--adding').show();
$('.success-result').hide();
$('.error-result').hide();
$('.popup-text').show();
$(".pincode-popup").delay().fadeIn();
$('.form-pincode').show();
$(".form-pincode input:text").val(localStorage.getItem('pincode_info'));
$submitBtn.on('click', function() {
$inputValue = $input.val();
if ($inputValue.length == 6) {
var $response = checkInSheet($inputValue);
var $result = $response;
localStorage.setItem("serviceable", $result);
if ($result == "NA") {
$('.popup-text').hide();
$('.error-result').show();
$('.suss-img').hide();
$('.wrong-img').show();
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
} else if ($result == "FS") {
$('.error-result').hide();
$('.form-pincode').hide();
$('.popup-text').hide();
$('.success-result').show();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
if (localStorage.getItem('button') == 'edit') {
$('.sucesss--adding').hide();
}
localStorage.setItem("pincode", "serviceable");
setTimeout(function() {
$(this).siblings('.custom-recommended .loading-overlay.hidden').removeClass('hidden');
$('#click-39569703633025').hide();
var formRCD = {
quantity: 1,
id: 39569703633025
};
$.ajax({
type: "POST",
url: "/cart/add.js",
cache: false,
data: formRCD,
dataType: "json",
success: function(data) {
$('.custom-recommended .loading-overlay').addClass('hidden');
$('#click-39569703633025').show();
$('cart-drawer').removeClass('is-empty');
$('#CartDrawer').load(location.href + " #CartDrawer");
setTimeout(function() {
document.querySelector('cart-drawer').open(true);
_updateBubble();
setTimeout(function() {
if (localStorage.getItem('serviceable') == 'FS') {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(localStorage.getItem('city'));
$(".delivery-msg").text(localStorage.getItem('message'));
$('.suss-img').show();
$('.wrong-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').removeAttribute('disabled');
} else {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.suss-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
$('.wrong-img').show();
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
}
}, 2000);
}, 800);
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("error");
console.log(xhr.status);
console.log(thrownError);
},
complete: function() {
renderPopPrices();
}
});
$('.pincode-popup').fadeOut();
}, 1000);
}
} else {
$(".error--title").text("Please enter 6 digit pincode!!");
$('.error-result').show();
$('.popup-text').hide();
}
});
}
// end custom
if (localStorage.getItem('serviceable') == 'FS') {
$(this).siblings('.custom-recommended .loading-overlay.hidden').removeClass('hidden');
$('#click-39569703633025').hide();
var formRCD = {
quantity: 1,
id: 39569703633025
};
$.ajax({
type: "POST",
url: "/cart/add.js",
cache: false,
data: formRCD,
dataType: "json",
success: function(data) {
$('.custom-recommended .loading-overlay').addClass('hidden');
$('#click-39569703633025').show();
$('cart-drawer').removeClass('is-empty');
$('#CartDrawer').load(location.href + " #CartDrawer");
setTimeout(function() {
document.querySelector('cart-drawer').open(true);
_updateBubble();
setTimeout(function() {
if (localStorage.getItem('serviceable') == 'FS') {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(localStorage.getItem('city'));
$(".delivery-msg").text(localStorage.getItem('message'));
$('.suss-img').show();
$('.wrong-img').hide();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').removeAttribute('disabled');
} else {
$(".delivery-pincode").text(localStorage.getItem('pincode_info'));
$(".delivery-city").text(" ");
$(".delivery-msg").text(" ");
$('.suss-img').hide();
$('.wrong-img').show();
$('.edit-img').click(function() {
$('.pincode-popup').fadeIn();
});
document.getElementById('CartDrawer-Checkout').setAttribute('disabled', 'disabled');
}
}, 2000);
}, 800);
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("error");
},
complete: function() {
renderPopPrices();
}
});
}
}
});
}, 500)
});
$('.edit-img').click(function() {
localStorage.setItem("button", "edit");
$('.sucesss--adding').show();
$('.success-result').hide();
$('.error-result').hide();
$('.form-pincode').show();
$('.popup-text').show();
$(".pincode-popup").delay().fadeIn();
});
</script>
</div>
</div>
</div>
</form>
GET /search
<form action="/search" method="get" role="search" class="search search-modal__form">
<div class="field">
<input class="search__input field__input" id="Search-In-Modal" type="search" name="q" value="" placeholder="Search" role="combobox" aria-expanded="false" aria-owns="predictive-search-results-list" aria-controls="predictive-search-results-list"
aria-haspopup="listbox" aria-autocomplete="list" autocorrect="off" autocomplete="off" autocapitalize="off" spellcheck="false">
<label class="field__label" for="Search-In-Modal">Search</label>
<input type="hidden" name="options[prefix]" value="last">
<button class="search__button field__button" aria-label="Search">
<svg class="icon icon-search" aria-hidden="true" focusable="false" role="presentation">
<use href="#icon-search">
</use>
</svg>
</button>
</div>
<div class="predictive-search predictive-search--header" tabindex="-1" data-predictive-search="">
<div class="predictive-search__loading-state">
<svg aria-hidden="true" focusable="false" role="presentation" class="spinner" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</div>
<span class="predictive-search-status visually-hidden" role="status" aria-hidden="true"></span>
</form>
<form class="form-pincode">
<div class="form-controls">
<input id="pinboxs" type="text" name="pincode" maxlength="6" placeholder="eg.560095">
<button class="pincode-go" type="button">Check Availability</button>
</div>
</form>
Text Content
Skip to content MY CART Add products to start your healthy journey ! YOUR CART LOOKS EMPTY... CHECK OUT OUR PRODUCTS ! OILS OILS GHEE GHEE COMBOS COMBOS MY CART () Loading... You may also like... WOOD COLD PRESSED COCONUT OIL Regular price ₹235 Regular price ₹290 Sale price ₹235 Unit price / per + WOOD COLD PRESSED SESAME OIL Regular price ₹626 Regular price ₹690 Sale price ₹626 Unit price / per + STAINLESS STEEL OIL POURER - DISPENSER Regular price ₹50 Regular price ₹75 Sale price ₹50 Unit price / per + 2+2 LTR GROUNDNUT AND COCONUT OIL - COMBO Regular price ₹1,620 Regular price ₹2,080 Sale price ₹1,620 Unit price / per + 2+2 LTR COCONUT AND SESAME OIL - COMBO Regular price ₹2,020 Regular price ₹2,480 Sale price ₹2,020 Unit price / per + Your Pincode Delivered from Delivery in Applying your POPcoins discount Click & get upto 20% off using coins SUB TOTAL ₹0 FREE SHIPPING ON ALL ORDERS TOTAL ₹0 Update Secure Checkout | ₹0 Free deliveries on all orders Shop * Shop * Oils * Combos * Accessory * Learn * Fats Explained * Blogs * About * Why we exist * Sustainability * Traceability Log in * Twitter * Facebook * Instagram * Shop * Oils * Combos * Accessory * Learn * Fats Explained * Blogs * About * Why we exist * Sustainability * Traceability Search Log in Cart 00 items 1 2 PURE COLD PRESSED OILS FOR DAILY COOKING OIL COMBO Previous WOOD COLD PRESSED GROUNDNUT OIL 307 Reviews ₹220 - ₹1,560 Shop Now WOOD COLD PRESSED COCONUT OIL 108 Reviews ₹235 - ₹1,680 Shop Now WOOD COLD PRESSED SESAME OIL 74 Reviews ₹626 - ₹2,360 Shop Now WOOD COLD PRESSED MUSTARD OIL 18 Reviews ₹390 - ₹1,460 Shop Now Next * 1 * 2 Previous 2+2 LTR GROUNDNUT AND SESAME OIL - COMBO 31 Reviews ₹2,360 Translation missing: en.products.general.regular_price ₹1,960 Shop Now 1+1+1 LTR - GROUNDNUT, SESAME AND COCONUT OIL - TRIAL COMBO 28 Reviews ₹1,730 Translation missing: en.products.general.regular_price ₹1,450 Shop Now 2+2 LTR GROUNDNUT AND COCONUT OIL - COMBO 23 Reviews ₹2,080 Translation missing: en.products.general.regular_price ₹1,620 Shop Now 2+2 LTR COCONUT AND SESAME OIL - COMBO 3 Reviews ₹2,480 Translation missing: en.products.general.regular_price ₹2,020 Shop Now Next * 1 * 2 * DID YOU KNOW THAT 1/3RD OF YOUR ESSENTIAL NUTRIENTS SHOULD COME FROM FATS? Your body runs on calories. And you get them from carbohydrates, proteins, and fats. Healthy fats (PUFA & MUFA) exist and are essential for a balanced diet. It gives you energy, keeps cholesterol in check and helps your body absorb vitamins A, D, E, and K. Know More FEATURED ON * 1 JOIN THE HEALTHY TRIBE Previous ★★★★★ It was a nice experience. The oil(groundnut) is very smooth in texture with subtle fragrance and non sticky. NARAYANAN VEERIAH Tiruvallur ★★★★★ Long term process. Using Gramiyaa oil for daily cooking and feeling the difference after six months. Feels healthier. Fatigue, headaches, cold etc is reduced considerably. The oil required as compared to normal oil is also quite less. GIRISH ATRE Pune ★★★★☆ The fresh fragrance of Gramiyaa groundnut oil takes me back to my childhood days. VEENA SHYAM RAJA Hyderabad ★★★★☆ I'm impressed with the quality oil you deliver! The packaging is superb & oil gets delivered in 48hrs :) VIRAJ BANE Thane ★★★★★ I'm using Gramiyaa groundnut oil for the last few months & found it excellent. Feels light & healthy. Smells & tastes good. Recommended ROHIT CHAUDHARY Mumbai Next * 1 * 2 * 3 * 4 * 5 COOK WITH GRAMIYAA Previous Next * 1 * 2 DELIVERED FROM YOUR NEAREST GRAMIYAA WAREHOUSE Locally present in 6 metros for damage-free, superfast deliveries. TOWARDS A SUSTAINABLE FUTURE * 90% lesser energy used in cold-pressed oil-making than refined oils * 80% lesser plastic used in Gramiyaa cartons than PET bottles * 67% lesser CO2 emitted in making of Gramiyaa cartons than PET bottles Know More * * YOU MAY ALSO LIKE * 2+2 LTR GROUNDNUT AND SESAME OIL - COMBO Sale 2+2 LTR GROUNDNUT AND SESAME OIL - COMBO Regular price ₹1,960 Regular price ₹2,360 Sale price ₹1,960 Unit price / per + Sale * 1+1+1 LTR - GROUNDNUT, SESAME AND COCONUT OIL - TRIAL COMBO Sale 1+1+1 LTR - GROUNDNUT, SESAME AND COCONUT OIL - TRIAL COMBO Regular price ₹1,450 Regular price ₹1,730 Sale price ₹1,450 Unit price / per + Sale * 2+2 LTR GROUNDNUT AND COCONUT OIL - COMBO Sale 2+2 LTR GROUNDNUT AND COCONUT OIL - COMBO Regular price ₹1,620 Regular price ₹2,080 Sale price ₹1,620 Unit price / per + Sale * 2+2 LTR COCONUT AND SESAME OIL - COMBO Sale 2+2 LTR COCONUT AND SESAME OIL - COMBO Regular price ₹2,020 Regular price ₹2,480 Sale price ₹2,020 Unit price / per + Sale SAY HELLO ON INSTAGRAM @GRAMIYAA Benazir's all time hit at home - Chicken Tikka Masala! 😍 Your stomach deserves to feel light and satisfied. 🙂↔️ Use our 2 tespoon trick. 🥄🥄 Cook your meals with 2 tsp of Gramiyaa oil. Make your food flavourful and your stomach feel bloat-free. Bid bye to gastric problems! Bonus: You'll use less oil to cook so your Gramiyaa 1L oil lasts longer than 1L of your regular oil. Want to use less oil, enjoy more flavour and treat your taste buds? You’ll love cold pressed oils for your daily cooking! There's only 3 things you need to know about your cooking oils: 🔸 Minimal processing is key: Opt for "cold pressed", "unrefined", or "extra virgin" varieties as they are minimally processed without chemicals. 🔸 Moderation is your friend: Aim for 2 teaspoons per person, per meal, to get your essential fats while keeping your calories in check. 🔸 Variety is the spice of life (and your oil shelf): Include a healthy mix of different oils like groundnut, coconut, olive, mustard and sesame, and even incorporate ghee, to add diverse flavor and nutrients. Dum aloo fried in cold pressed mustard oil can make your good day even better, don't you think? What's your favourtie mustard oil dish? Tell us in the comments. 👇🏽 Who else loves a bit of the sweet coconutty flavour in their meals? 🤤 A big thank you to our amazing community of buyers who helped us reach here. 🥰 We hope to reach even more homes and kitchens this year. Will you help us spread the word? 🫶🏽 If you've made Gramiyaa a constant companion in your kitchen, a little surprise is coming your way in your next order this week. 🥰 The warm, comforting feeling of ghee podi rice. 🤤 A joyride to your tastebuds, agree? Also, our A2 ghee is back in stock, just in time to become a part of your Diwali delicacies. 🪔 #a2desicowghee #culturedghee #a2ghee #hallikarcowghee #gheerice Fry Right, Reuse Smart! 🍳 Don't let your frying oil go to waste. Learn how to maximise its usage with these simple steps and keep your dishes delicious every time. #CookingHacks #OilReuse #TastyTips #KitchenTricks #SustainableCooking #ReduceWaste #FryLikeAPro #ColdPressedOils #ReuseFryingOil #MindfulReuse Have you heard 🧏🏽 the machine whirring as it presses oil from copras (sun-dried coconuts) while enjoying its sweet nutty aroma? 🥥 #coldpressedcoconutoil #coldpressedoils #coldpressedoilmaking #healthycookingoils #coldpressedcoconutoilbenefits #coconutoiluses #coconutoilmaking Even if you have a significant family history, there’s a silver lining. Familial hypercholesterolemia is controllable. 👨👩👧 The earlier you diagnose, the easier it is to control. Don't let family history deter you. With FH, knowledge is power. 💊 Along with medications, follow a diet low in saturated fats. 🏃 Stay active with regular exercise. ⚖️ Maintain a healthy weight. 🚬 And steer clear of smoking. A healthier future is within your reach. ✨ #CholesterolAwareness #FHGenetics #PrioritizeHealth #HeartHealth #KnowYourRisk #HealthyChoices #FHManagement #FamilyHealth #Cholesterol What's holding you back from making the switch from refined to cold-pressed oils? Share your thoughts in the comments. 💭👇🏽 #ColdPressedOils #DailyCooking #HealthyOilsForDailyCooking #NoMoreRefinedOils #HomeCooking #ColdPressedGroundnutOil Calories are the culprit. Not fats. 🚫 #FatMythBusted #HealthyFats #NutritionTruths #FatWontMakeYouFat #CalorieControl #BalanceIsKey #FatMakesYouFat #WeightGain Artificial sweeteners reduce calories and help maintain body weight right now. ⚖️ But they increase our cravings for sweet foods and beverages, leading to overeating and weight gain in the long run. 🏃 So what do you prefer? Tell us in the comments below. 📩 #FoodForThought #ArtificialSweeteners #HealthierChoices #ArtificialSweetenersDebate #CalorieControl #BalanceIsKey Benazir's all time hit at home - Chicken Tikka Masala! 😍 Your stomach deserves to feel light and satisfied. 🙂↔️ Use our 2 tespoon trick. 🥄🥄 Cook your meals with 2 tsp of Gramiyaa oil. Make your food flavourful and your stomach feel bloat-free. Bid bye to gastric problems! Bonus: You'll use less oil to cook so your Gramiyaa 1L oil lasts longer than 1L of your regular oil. Want to use less oil, enjoy more flavour and treat your taste buds? You’ll love cold pressed oils for your daily cooking! There's only 3 things you need to know about your cooking oils: 🔸 Minimal processing is key: Opt for "cold pressed", "unrefined", or "extra virgin" varieties as they are minimally processed without chemicals. 🔸 Moderation is your friend: Aim for 2 teaspoons per person, per meal, to get your essential fats while keeping your calories in check. 🔸 Variety is the spice of life (and your oil shelf): Include a healthy mix of different oils like groundnut, coconut, olive, mustard and sesame, and even incorporate ghee, to add diverse flavor and nutrients. Dum aloo fried in cold pressed mustard oil can make your good day even better, don't you think? What's your favourtie mustard oil dish? Tell us in the comments. 👇🏽 Who else loves a bit of the sweet coconutty flavour in their meals? 🤤 A big thank you to our amazing community of buyers who helped us reach here. 🥰 We hope to reach even more homes and kitchens this year. Will you help us spread the word? 🫶🏽 If you've made Gramiyaa a constant companion in your kitchen, a little surprise is coming your way in your next order this week. 🥰 The warm, comforting feeling of ghee podi rice. 🤤 A joyride to your tastebuds, agree? Also, our A2 ghee is back in stock, just in time to become a part of your Diwali delicacies. 🪔 #a2desicowghee #culturedghee #a2ghee #hallikarcowghee #gheerice Fry Right, Reuse Smart! 🍳 Don't let your frying oil go to waste. Learn how to maximise its usage with these simple steps and keep your dishes delicious every time. #CookingHacks #OilReuse #TastyTips #KitchenTricks #SustainableCooking #ReduceWaste #FryLikeAPro #ColdPressedOils #ReuseFryingOil #MindfulReuse Have you heard 🧏🏽 the machine whirring as it presses oil from copras (sun-dried coconuts) while enjoying its sweet nutty aroma? 🥥 #coldpressedcoconutoil #coldpressedoils #coldpressedoilmaking #healthycookingoils #coldpressedcoconutoilbenefits #coconutoiluses #coconutoilmaking Even if you have a significant family history, there’s a silver lining. Familial hypercholesterolemia is controllable. 👨👩👧 The earlier you diagnose, the easier it is to control. Don't let family history deter you. With FH, knowledge is power. 💊 Along with medications, follow a diet low in saturated fats. 🏃 Stay active with regular exercise. ⚖️ Maintain a healthy weight. 🚬 And steer clear of smoking. A healthier future is within your reach. ✨ #CholesterolAwareness #FHGenetics #PrioritizeHealth #HeartHealth #KnowYourRisk #HealthyChoices #FHManagement #FamilyHealth #Cholesterol What's holding you back from making the switch from refined to cold-pressed oils? Share your thoughts in the comments. 💭👇🏽 #ColdPressedOils #DailyCooking #HealthyOilsForDailyCooking #NoMoreRefinedOils #HomeCooking #ColdPressedGroundnutOil Calories are the culprit. Not fats. 🚫 #FatMythBusted #HealthyFats #NutritionTruths #FatWontMakeYouFat #CalorieControl #BalanceIsKey #FatMakesYouFat #WeightGain Artificial sweeteners reduce calories and help maintain body weight right now. ⚖️ But they increase our cravings for sweet foods and beverages, leading to overeating and weight gain in the long run. 🏃 So what do you prefer? Tell us in the comments below. 📩 #FoodForThought #ArtificialSweeteners #HealthierChoices #ArtificialSweetenersDebate #CalorieControl #BalanceIsKey Gramiyaa and their story with wood cold pressed oils For generations, Sibi Manivannan's family used traditional methods to make cooking oils. Imagine the power of a bullock driving a wooden pestle, extracting oil from seeds. In the later years, the convenience of refined oils took center stage. However, the desire for natural, healthy ingredients has returned, and people are rediscovering the value of minimally processed foods – just like what Sibi's grandfathers were involved in. While running his family restaurant, Sibi witnessed the use of heavily processed oils. This pushed him to revive his family's business. He combined his deep understanding of traditional methods with his engineering expertise. Through years of research and development, Gramiyaa was born. Our oils are cold pressed in traditional wood and stone mills inside a modern hygienic facility. Like earlier times, oil is minimally processed, unheated and extracted with zero chemicals involved. When we began in 2016, it was just with two cooking oils: wood cold pressed groundnut oil and wood cold pressed sesame oil. We started small, with stores in Trichy and Chennai. Since then, we've grown to serve more people across India, with over 6 micro warehouses enabling convenient doorstep delivery. We've also expanded our range to include a variety of high-quality cold pressed oils, like coconut and mustard, to help you keep your kitchen well-stocked with a variety of cooking oils for a variety of flavors and micronutrients. A GLIMPSE INTO THE HISTORY OF WOOD COLD PRESSED OILS IN INDIA Extracting oil from seeds, fruits and nuts have been around for centuries. Cold pressed oils, made using traditional chekku or ghani methods, have been a staple in many cultures for thousands of years including the Indus Valley Civilization. Charred sesame seeds along with oil pressing machines were found in Harappan ruins that are around 5000 years old. Mechanical pressure gently squeezes oil from seeds, preserving their natural flavor and nutrients. This process avoids high heat, ensuring you get pure cold pressed oil for your daily cooking. * The operation of chekku or ghani was a skilled craft passed down through families for generations. This ensured the preservation of the technique and the quality of the resulting wood cold pressed oils. * Traditionally, these wooden pestles were driven by oxen, building a connection between humans, animals, and the land. * The wooden pestle is made from a tree named Vaagai (or Albizia lebbeck). This helps absorb heat, and maintain the entire process close to room temperature. * Each village could produce their own cooking oil through this method, using oil seeds locally available. * While the core principle remains the same, chekku or ghani designs have slight variations across different regions of India, reflecting local materials and craftsmanship. WHY YOU SHOULD MAKE THE SWITCH TO GRAMIYAA PURE COLD PRESSED OILS * Minimally processed: Unlike refined oils, cold-pressed oils skip the extra steps. This keeps the natural taste and nutrients intact from the seeds. Cold-pressing is also kind to the environment, using 90% less energy than refining methods. It helps you and the planet! * No heat: Cold-pressed oils stay true to their name. Extracted at a gentle temperature (think room temperature plus 10-15°C), this method retains the tiny-but-mighty micronutrients from the seeds and passes it to the oil. * Better flavor: The low-heat temperature also retains the flavor molecules in the oil. Along with that, at Gramiyaa, we spread seeds out to dry naturally under the warm sun. This gentle method keeps the seeds' natural flavor and aroma locked in, resulting in a more delicate and enjoyable taste for your cooking. * Less cooks more: Gramiyaa wood cold pressed oils are flavorful and so 2 teaspoons are just right to cook a meal for 1. This makes sure your food is flavorful while keeping your stomach light and bloat-free. A VARIETY OF WOOD COLD PRESSED COOKING OILS FROM GRAMIYAA Food tastes better with a little variety, and our health loves it too. While you might have your trusty go-to oil, don’t limit yourself to just that one because no single oil is a superhero. There’s wood cold pressed groundnut, coconut, sesame, mustard and it goes on. By incorporating a mix of these throughout the week, give yourself a variety of nutrients to keep things running smoothly. Plus, it keeps your taste buds on their toes with different flavors. WOOD COLD PRESSED GROUNDNUT OIL * Made from 100% sun-dried, non-roasted Java groundnuts for the best flavor & aroma. * Gramiyaa groundnut oil is cold pressed in traditional stone mills at low temperatures to preserve all the natural nutrients. * Contains zero trans fats. Rich in anti-inflammatory omega fatty acids. Plant sterols from groundnuts burn bad LDL cholesterol. * Gramiyaa’s cold pressed groundnut oil has a light nutty taste. It has the right smoke point 160°C and is healthy for daily cooking. * Gramiyaa’s cold pressed groundnut oil has a light nutty taste. It has the right smoke point 160°C and is healthy for daily cooking. * Contains zero chemicals, preservative-free and is machine packed (untouched by hands). Made in our US FDA, ISO Certified facility. * Packed in opaque cartons protect the cold pressed groundnut oil from sunlight and keep it fresh for longer. WOOD COLD PRESSED COCONUT OIL * Gramiyaa Coconut oil for cooking is made from sun-dried, non-roasted copras for the best flavor & aroma. * Coconut oil is cold pressed in traditional stone mills at low temperatures to preserve all the natural nutrients. * Contains zero trans fats. Coconut oil for cooking contains MCT fats that are instantly broken down into ketone energy for your brain health. * Gramiyaa’s cold pressed coconut oil has a sweet, nutty taste. It has a smoke point of 170°C. * Less oil cooks more food as its density is thicker. Food absorbs less oil and feels light on the stomach. 2 teaspoons/person/meal is just right. * Contains zero chemicals, preservative-free and is machine packed (untouched by hands). Made in our US FDA, ISO Certified facility. * Packed in opaque cartons protect cold pressed coconut oil from sunlight and keep it fresh for longer. WOOD COLD PRESSED SESAME OIL * Made from sun-dried, non-roasted black sesame seeds for the best flavor & aroma. * Sesame oil is cold pressed in traditional stone mills at low temperatures to preserve all the natural nutrients. * Contains zero trans fats. Rich in antioxidants that fight disease-causing free radicals and strengthen your immune systems. * Gramiyaa’s cold pressed sesame oil has a light nutty taste. It has a high smoke point of 177°C and is healthy for daily cooking. * Less sesame oil/gingelly oil cooks more food as its density is thicker. Food absorbs less oil and feels light on the stomach. 2 teaspoons/person/meal is just right. * Gramiyaa’s cold pressed sesame oil/gingelly oil contains zero chemicals, preservative-free and is machine packed (untouched by hands). Made in our US FDA, ISO Certified facility. * Packed in opaque cartons protect the cold pressed sesame oil from sunlight and keep it fresh for longer. WOOD COLD PRESSED MUSTARD OIL * Made from sun-dried, non-roasted black mustard seeds for the best flavor & aroma. * Cold pressed in traditional stone mills at temperatures under 50°C to preserve all the natural nutrients. * Contains zero trans fats. Allyl isothiocyanate from mustard releases gastric juices that help improve digestion efficiency and nutrition absorption. * Gramiyaa’s cold pressed mustard oil has a sharp yet subtle pungency. It has a high smoke point of 250°C and is healthy for daily cooking. * Less oil cooks more food as its density is thicker. Food absorbs less oil and feels light on the stomach. 2 teaspoons/person/meal is just right. * Contains zero chemicals, preservative-free and is machine packed (untouched by hands). Made in our US FDA, ISO Certified facility. * Packed in opaque cartons to protect the cold pressed mustard oil from sunlight and keep it fresh for longer. × Gramiyaa Warehouses Bengaluru Chennai Hyderabad Mumbai Delhi Pune Kolkata Cities we also deliver in * Kolkata * Trichy × CHECK FOR DELIVERY Enter your pincode to check if these products are available near you. WE DELIVER TO YOUR LOCATION Adding product to your cart... SORRY, GRAMIYAA.COM DOES NOT SHIP TO YOUR PIN CODE YET. YOU CAN ORDER GRAMIYAA PRODUCTS ON OUR STORE. 4.5/5.0 (1000+ orders) Go to amazon store try different PIN code on gramiyaa.com Check Availability REACH OUT TO US Customer Support orders@gramiyaa.com 080 69489666 73737 43747 LEARN * Fats Explained * Blog ABOUT US * Why we exist * Traceability * Sustainability * Contact PROFILE * Login * Profile OTHERS * B2B & EXPORT * CAREERS FOLLOW US ON * Facebook * Instagram * Twitter PAYMENTS PARTNERS Payment methods * Visa * Mastercard * UPI © 2024 FoodSolve Private Limited CIN No. U1540KA2022PTC163163 * Privacy policy * Shipping policy * Refund policy * Choosing a selection results in a full page refresh. * Opens in a new window. Gramiyaa Rewards Get upto 20% Off using POPcoins × Need Help? Chat with us Test Mode