posting data from magento to a SOAP API
I have an observer event that is capturing customer details anytime they are updated. At this point it posts that information to a var log. I would like to get it to post to a SOAP API url. SOAP API…
I have an observer event that is capturing customer details anytime they are updated. At this point it posts that information to a var log. I would like to get it to post to a SOAP API url. SOAP API…
I am Trying to create two instance on my NGnix server First would be accessed by mydomain.com (it listening to port 80 ) Second using 172.32.32.123:81 (it listening to port 81 and this IP is server IP) this is my…
I want to get input text value in checkout page. I have tried to apply jquery in checkout page but it didn't work it. I have also worked with pure javascript but it also didn't work. Jquery not working because…
I want to add Order search functionality in customer account My Orders section. As if customer have many orders so they dont need to navigate instead of they can search by orders like this - http://demo.dckap.com/m2/sales/order/history/ I tried to get…
I would like to filter out all orders with a specific country_id. Here a sample from the json response: { "items": [{ "total_qty_ordered": 3, "updated_at": "2018-01-10 15:59:05", "weight": 0, "billing_address": { "city": "Schaffhausen", "country_id": "CH" } }] } Here is…
In order to conduct a Market Basket Analysis on the sales data in magento, i need to retrieve the products that are included in each invoice from magento. So far this is what i got. SELECT tblInvoice.increment_id AS orderId, tblLine.product_id…
I have some problem on my online store with Magento 2.2.2 After enable merge Js in Magento Backend: Store/Configuration/Advanced/Developer and save the config. I realized that I can't click any menu button in the backend. Js is broken so I…
I tried to include js in Layout XML of cms page but js is not included. I want to apply js on particular cms page.
I have an eCommerce store in Magento (if that matters). I have a goal setup as "Buy tickets", Goal type as "Destination, and here is the setup: The funnel seems to be "broken", as obviously doesn't seem to be working…
I'm working on magento site and facing strange error when array values assign inside function and retrieve outside of function. //define array $ctall=array(); //function for array value assign function printtest($fg){ //global variable global $ctall; //just assign to array $ctall[rand(10000,100000)]=$fg; //this…