Magento – How to move review tab in product page

customermagento-1product-viewtabs

I use porto theme and add attribute tab on product page . Now, I wanted to ask
how to move review tab ?

enter image description here

Best Answer

Check in theme layout files have below code

<reference name="product.info">
     <block type="review/product_view_list" name="product.reviews" as="reviews" template="review/product/view/list.phtml" after="additional">
         <action method="addToParentGroup"><group>detailed_info</group></action>
         <action method="setTitle" translate="value"><value>Reviews</value></action>
      </block>
 </reference>

You can move the tab by changing this code after="additional" . Change tab name instead of additional.