Cron Job issue Magento
the issue I am facing is that order emails not working on my magento store. I installed AOE scheduler but I am getting this issue No heartbeat task found. Check if cron is configured correctly. Though I have set the…
the issue I am facing is that order emails not working on my magento store. I installed AOE scheduler but I am getting this issue No heartbeat task found. Check if cron is configured correctly. Though I have set the…
When I get the product collection with : $collection = Mage::getModel('catalog/product')->getCollection(); I get a group_price key but it's empty. (product have group_price) Array ( [entity_id] => 1 [entity_type_id] => 4 [attribute_set_id] => 2 [type_id] => simple [sku] => 00000 ......…
I have a multidimensional array whose depth is uncertain or let's say depends on how many categories & sub-categories(& sub-sub-categories) are there in magento website, as I calling function $product->getCategoryIds(). Now let's assume I get all product's(that are added in…
Here I show how to get items from a Order by the order number id: $order = Mage::getModel('sales/order')->load($order_id); $items = $order->getAllItems(); $itemcount = count($items); $name = array(); $unitPrice = array(); $sku = array(); $ids = array(); $qty = array(); foreach…
var filtered_value = $(this).attr("filterset"); var filter_attribute = $(this).parent().parent().attr('data-facet'); var count = 0; var filtered_json = []; $.getJSON('<?php echo $jsonFileUrl;?>', function (json) { for (var i = 0; i < json.length; i++) { if(json[i][filter_attribute] == filtered_value){ count++; filtered_json.push(json[i]); } } //console.log(filtered_json);…
I`m a beginner in Magento 2. I did setup a shopping cart app with flat rate shipping. But now client wants to add a link in cart for buying premium membership, so that this particular users can shop without shipping…
Please have a look at the code of breadcrumbs.phtml: <?php if($crumbs && is_array($crumbs)): ?> <!-- SLIDER START HERE--> <div class="container"> <div class="innerSlider relative"> <div class="innerSlidercontent"> <h2>“People with thyroid problems avoid eating millet on a daily basis as it is believed…
An inline translation I did in Magento broke because I used a '&' symbol. Now, whenever I edit this translation nothing happends. I want to remove the inline translation from the database, how would I do that? The original text…
Intro : as the title suggests. I am starting a new e-commerce website using magento, the latest available release on official website is 2.1.7, I've just learned that the 2.2 version will be soon released,holding decent code changes. I am…
I am a beginner with Magento and I started from developing small extension. I had it already installed and everything was fine. But by some reason I decided to reinstall it. I removed rows from core_resource table, I removed module…