How to override a advance search & orders return page in magento 2? [closed]
In magento 2 how to override a advance search page and order return
page in my custom theme
magento-2.1 advanced-search
closed as off-topic by Piyush, Aasim Goriya, Jai, Priyank, Manashvi Birla Feb 4 at 7:12
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions on problems in code you've written must describe the specific problem and include valid code to reproduce it. For help writing short, self-contained syntactically-valid examples, see: http://sscce.org/" – Piyush, Aasim Goriya, Jai, Priyank, Manashvi Birla
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
In magento 2 how to override a advance search page and order return
page in my custom theme
magento-2.1 advanced-search
closed as off-topic by Piyush, Aasim Goriya, Jai, Priyank, Manashvi Birla Feb 4 at 7:12
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions on problems in code you've written must describe the specific problem and include valid code to reproduce it. For help writing short, self-contained syntactically-valid examples, see: http://sscce.org/" – Piyush, Aasim Goriya, Jai, Priyank, Manashvi Birla
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
In magento 2 how to override a advance search page and order return
page in my custom theme
magento-2.1 advanced-search
In magento 2 how to override a advance search page and order return
page in my custom theme
magento-2.1 advanced-search
magento-2.1 advanced-search
edited Feb 4 at 6:07
divya sekar
asked Feb 4 at 5:58
divya sekardivya sekar
12010
12010
closed as off-topic by Piyush, Aasim Goriya, Jai, Priyank, Manashvi Birla Feb 4 at 7:12
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions on problems in code you've written must describe the specific problem and include valid code to reproduce it. For help writing short, self-contained syntactically-valid examples, see: http://sscce.org/" – Piyush, Aasim Goriya, Jai, Priyank, Manashvi Birla
If this question can be reworded to fit the rules in the help center, please edit the question.
closed as off-topic by Piyush, Aasim Goriya, Jai, Priyank, Manashvi Birla Feb 4 at 7:12
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions on problems in code you've written must describe the specific problem and include valid code to reproduce it. For help writing short, self-contained syntactically-valid examples, see: http://sscce.org/" – Piyush, Aasim Goriya, Jai, Priyank, Manashvi Birla
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
To Override advance search
Copy
vendor/magento/module-catalog-search/view/frontend/templates/advanced/form.phtml
to your
app/design/frontend/Mytheme/Theme_name/Magento_CatalogSearch/templates/advanced/form.phtml
For Order return page
Copy
vendor/magento/module-sales/view/frontend/templates/guest/form.phtml
to
app/design/frontend/Mytheme/Theme_name/Magento_Sales/templates/guest/form.phtml
For more details on how to override phtml files in Magento 2 you may refer this answer
add a comment |
To Advance Search below file Copy and override in your custom theme:
vendor/magento/module-catalog-search/view/frontend/templates/advanced/form.phtml
Follow this path
app/design/frontend/[VendorName]/[theme]/Magento_CatalogSearch/templates/advanced/form.phtml
To Order Return Below file Copy and Overrirde
vendor/magento/module-sales/view/frontend/templates/guest/form.phtml
Follow this path
app/design/frontend/[VendorName]/[theme]/Magento_Sales/templates/guest/form.phtml
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
To Override advance search
Copy
vendor/magento/module-catalog-search/view/frontend/templates/advanced/form.phtml
to your
app/design/frontend/Mytheme/Theme_name/Magento_CatalogSearch/templates/advanced/form.phtml
For Order return page
Copy
vendor/magento/module-sales/view/frontend/templates/guest/form.phtml
to
app/design/frontend/Mytheme/Theme_name/Magento_Sales/templates/guest/form.phtml
For more details on how to override phtml files in Magento 2 you may refer this answer
add a comment |
To Override advance search
Copy
vendor/magento/module-catalog-search/view/frontend/templates/advanced/form.phtml
to your
app/design/frontend/Mytheme/Theme_name/Magento_CatalogSearch/templates/advanced/form.phtml
For Order return page
Copy
vendor/magento/module-sales/view/frontend/templates/guest/form.phtml
to
app/design/frontend/Mytheme/Theme_name/Magento_Sales/templates/guest/form.phtml
For more details on how to override phtml files in Magento 2 you may refer this answer
add a comment |
To Override advance search
Copy
vendor/magento/module-catalog-search/view/frontend/templates/advanced/form.phtml
to your
app/design/frontend/Mytheme/Theme_name/Magento_CatalogSearch/templates/advanced/form.phtml
For Order return page
Copy
vendor/magento/module-sales/view/frontend/templates/guest/form.phtml
to
app/design/frontend/Mytheme/Theme_name/Magento_Sales/templates/guest/form.phtml
For more details on how to override phtml files in Magento 2 you may refer this answer
To Override advance search
Copy
vendor/magento/module-catalog-search/view/frontend/templates/advanced/form.phtml
to your
app/design/frontend/Mytheme/Theme_name/Magento_CatalogSearch/templates/advanced/form.phtml
For Order return page
Copy
vendor/magento/module-sales/view/frontend/templates/guest/form.phtml
to
app/design/frontend/Mytheme/Theme_name/Magento_Sales/templates/guest/form.phtml
For more details on how to override phtml files in Magento 2 you may refer this answer
answered Feb 4 at 6:09
Dhaval SolankiDhaval Solanki
1,3711932
1,3711932
add a comment |
add a comment |
To Advance Search below file Copy and override in your custom theme:
vendor/magento/module-catalog-search/view/frontend/templates/advanced/form.phtml
Follow this path
app/design/frontend/[VendorName]/[theme]/Magento_CatalogSearch/templates/advanced/form.phtml
To Order Return Below file Copy and Overrirde
vendor/magento/module-sales/view/frontend/templates/guest/form.phtml
Follow this path
app/design/frontend/[VendorName]/[theme]/Magento_Sales/templates/guest/form.phtml
add a comment |
To Advance Search below file Copy and override in your custom theme:
vendor/magento/module-catalog-search/view/frontend/templates/advanced/form.phtml
Follow this path
app/design/frontend/[VendorName]/[theme]/Magento_CatalogSearch/templates/advanced/form.phtml
To Order Return Below file Copy and Overrirde
vendor/magento/module-sales/view/frontend/templates/guest/form.phtml
Follow this path
app/design/frontend/[VendorName]/[theme]/Magento_Sales/templates/guest/form.phtml
add a comment |
To Advance Search below file Copy and override in your custom theme:
vendor/magento/module-catalog-search/view/frontend/templates/advanced/form.phtml
Follow this path
app/design/frontend/[VendorName]/[theme]/Magento_CatalogSearch/templates/advanced/form.phtml
To Order Return Below file Copy and Overrirde
vendor/magento/module-sales/view/frontend/templates/guest/form.phtml
Follow this path
app/design/frontend/[VendorName]/[theme]/Magento_Sales/templates/guest/form.phtml
To Advance Search below file Copy and override in your custom theme:
vendor/magento/module-catalog-search/view/frontend/templates/advanced/form.phtml
Follow this path
app/design/frontend/[VendorName]/[theme]/Magento_CatalogSearch/templates/advanced/form.phtml
To Order Return Below file Copy and Overrirde
vendor/magento/module-sales/view/frontend/templates/guest/form.phtml
Follow this path
app/design/frontend/[VendorName]/[theme]/Magento_Sales/templates/guest/form.phtml
edited 20 hours ago
Shimon
296
296
answered Feb 4 at 6:09
Rakesh DongaRakesh Donga
1,302213
1,302213
add a comment |
add a comment |