Difficulty on finding products?
Top deals of pain relief and cough & cold
See all
`;
if(app_user_id > 0) {
let wishRes = product?.wishlist;
htmlProductItem += `
`;
}
if (parseInt(product.no_online_sale) === 0 && parseInt(product.stock) === 1 && parseInt(product.current) === 1) {
/*var addToCartBtn = `
Add to cart`;*/
var addToCartBtn = `
View Details`;
}else{
/*var addToCartBtn = `
Out Of Stock`;*/
var addToCartBtn = `
View Details`;
}
htmlProductItem += `
Brand: ${product.brand_name ? product.brand_name : product.vendor_name}
${html_price}
${addToCartBtn}
`;
owl.trigger('add.owl.carousel', [jQuery(htmlProductItem)]);
});
owl.trigger('refresh.owl.carousel');
};
const create_page_section = (pageSection) => {
let tag = pageSection.tag_name;
let frontShow = 1;
let selector = 'pharmacy-' + pageSection.tag_name + '-section';
const user_id = "0";
$.ajax({
url: pharmaApiUrl + 'pharmacy_products_list',
type: 'POST',
data: {
tag,
frontShow,
user_id
},
dataType: 'json',
success: function(data) {
products_list_html(data, selector);
}
});
};
$(document).ready(function() {
categories_list();
brands_list();
health_concern_list();
$.each(pageSections, function(key, pageSection) {
create_page_section(pageSection);
});
});
$("#pharmacy-prescription").click(function() {
$("body").loading({
stoppable: true,
message: "Please Wait...",
theme: "dark"
});
});
-->