If you want to change ordering of review tab in product detail page then follow below steps:
Step 1. You need to override catalog_product_view.xml file in your theme [vendername]/[yourthemename]/Magento_Review/layout/ folder and paste the below code in between the body tag.
1 2 3 4 5 |
<referenceBlock name="reviews.tab"> <arguments> <argument name="sort_order" xsi:type="string">50</argument> </arguments> </referenceBlock> |
Here I have set tab order 50, so you can change it with whatever value you want.
Please follow the below methods to get the attribute options...
Update product attribute value programmatically in Magento 2 . [crayon-62877a1e02180881617190/]...
If you want restrict customer to checkout based on your...
Sometime we need to set html data without load or...
If you want get query string params in controller file,...