- Posts: 5
- Thank you received: 0
How to move RELATED PRODUCTS between DESCRIPTION and REVIEWS?
- Valeriy Nikitin
-
Topic Author
- Offline
- Fresh Boarder
-
Less
More
10 years 11 months ago #7590
by Valeriy Nikitin
One more question, please. How to move RELATED PRODUCTS between DESCRIPTION and REVIEWS?
Attachments:
Please Log in or Create an account to join the conversation.
- Nguyen Mai
-
- Offline
- Senior Boarder
-
Less
More
- Posts: 47
- Thank you received: 10
10 years 11 months ago #7594
by Nguyen Mai
Replied by Nguyen Mai on topic Re: How to move RELATED PRODUCTS between DESCRIPTION and REVIEWS?
Hello,
You can edit file 'templates/ot_furnite/html/com_virtuemart/productdetails/default.php':
- Find and move the 'related product' block code (line 376 - 378):
above the 'review' block code (line 343):
=> change to:
You can edit file 'templates/ot_furnite/html/com_virtuemart/productdetails/default.php':
- Find and move the 'related product' block code (line 376 - 378):
Code:
if (!empty($this->product->customfieldsRelatedProducts)) {
echo $this->loadTemplate('relatedproducts');
} // Product customfieldsRelatedProducts END
above the 'review' block code (line 343):
Code:
echo $this->loadTemplate('reviews');
=> change to:
Code:
if (!empty($this->product->customfieldsRelatedProducts)) {
echo $this->loadTemplate('relatedproducts');
} // Product customfieldsRelatedProducts END
echo $this->loadTemplate('reviews');
The following user(s) said Thank You: Valeriy Nikitin
Please Log in or Create an account to join the conversation.
- Valeriy Nikitin
-
Topic Author
- Offline
- Fresh Boarder
-
Less
More
- Posts: 5
- Thank you received: 0
10 years 11 months ago #7595
by Valeriy Nikitin
Replied by Valeriy Nikitin on topic Re: How to move RELATED PRODUCTS between DESCRIPTION and REVIEWS?
Thank You!!!



Please Log in or Create an account to join the conversation.
Time to create page: 0.187 seconds