skip to Main Content

Magento API v1 product list call on VB.NET

What is the equivalent of this for VB.NET? $filters = array('sku' => array('like'=>'zol%')); $products = $proxy->call($sessionId, 'product.list', array($filters)); Because I am trying to retrieve a specific product from Magento by doing something like this: Dim products = magentoV1_servico.call(magentoV1_sessao, "product.list", filters)…

VIEW QUESTION

Magento2 OR query on collection

We have been trying to make a query when a user apply some filters on front end. We are trying to make OR query in products collection: tried the following but none of them work $collection->addAttributeToFilter(['web_mobile_filter','offer_group_name_value'], [ ['in' => '1122'],…

VIEW QUESTION

How to add tooltip in Magento 2

I am using a custom template and just added: <span class="custom-tooltip"> <a href="#" class="tooltip-toggle">Test ?</a> <span class="tooltip-content">Tolltip description come here</span> </span> and than added below style code in my theme styles-l.css .custom-tooltip { .lib-tooltip(right); } but its not working, am…

VIEW QUESTION
Back To Top
Search