Is it possible to change the position of the reviews to be inside a tab just like here?
http://www.bhphotovideo.com/c/produc…i_Digital.html
I want that when a user will visit my site he will see immideatly the reviews without needded to click on the reviews to see it.
thanks.
6 answers
Hi,
An easy way to achieve is that you change the order of tab displaying in product view page:
-- Open file: \app\design\frontend\default\jm_jasminetemplate\c atalog\product\view.phtml
-- Move code for reviews tab to the first order:
PHP Code:
<?php if($product_reviews = $this->getChildHtml('product_reviews')): ?>
<li><a href="#ja-tabitem-reviews"><?php echo $this->__('Product Reviews') ?></a></li>
<?php endif; ?>
so it appears just before:
PHP Code:
<?php foreach ($this->getChildGroup('detailed_info', 'getChildHtml') as $alias => $html):?>
<li><a href="<?php echo "#ja-tab-{$alias}"?>"><?php echo $alias; ?></a></li>
<?php endforeach;?>
underneath:
PHP Code:
<ul class="ja-tab-navigator clearfix">
-- Change the same order in div tag named:
PHP Code:
<div class="ja-tab-content">
PHP Code:
<?php if($product_reviews): ?>
<div id="ja-tabitem-reviews">
<?php echo $product_reviews ?>
</div>
<?php endif;?>
Once done, remember to flush magento cache.
Hi,
I have done what you told me to do but it didn’t change anything. still everything stay the same.
Did you flush magento cache?
yes…I did…
You can pm me admin and ftp account of your site, I will check this for you
I pm you. please check.
thanks !
This question is now closed