I am using the Amasty store locator module, in the backend, i am filled with all values and click the save button, how to find which controller is responsible for saving all the values.
After clicking the save button i want to do some customization, What is the controller responsible?
Solved! Go to Solution.
Hello @Aveeva ,
The most common way to find the responsible controller class is to watch the xhr request in network tab.
Follow these steps :
1. right before clicking save, open the network tab by F12 key.
2. Observe the xhr requests being made, the first request after clicking on save will go to the controller class.
Hope it helps !
Hello @Aveeva ,
The most common way to find the responsible controller class is to watch the xhr request in network tab.
Follow these steps :
1. right before clicking save, open the network tab by F12 key.
2. Observe the xhr requests being made, the first request after clicking on save will go to the controller class.
Hope it helps !