Where is the OpenCart form action url

362 Views Asked by At

I am using OpenCart 3.0.2.0. Where is the form action path in OpenCart Twig file?

Here is some of the code:

    <form action="{{ action }}" method="post" enctype="multipart/form-data" id="form-product" class="form-horizontal">

I don't know where this action comes from.

1

There are 1 best solutions below

0
On

You can go to the admin directory

Path :

admin\controller\catalog\product.php

and find

$data['action']

you can see it for action in view files as well.