Move price circle below reviews

ThemeBurn SupportForumsOpenCart ThemesShoppica 2 OpenCart ThemeMove price circle below reviews

This topic has been marked as resolved.

can you please tell me how to remove the price circle to below the reviews ( see attached image) and to also have it showing as just text , there is an option in the cp but not for product viewing.

July 21, 2012 at 7:56 pm #11641

i have changed the circle to text by following this post here
http://support.themeburn.com/topic/price-circle-removal

so if you can please tell me how to move the price text to below the reviews (see image in the above post) that would be great. and to add the words Price: before the actual price of the item http://screencast.com/t/pJOqO1QKWHG
regards

July 22, 2012 at 11:45 am #11647
You will need to register in order to post topics and read replies in the ThemeBurn.com support forums!
July 26, 2012 at 1:32 am #11750

i add the zip to the file upload but nothing is uploading ?

regards

July 26, 2012 at 10:20 am #11767

Hi,

The attached file does not follow the modification steps. Please, take a look again and be sure, you have done exactly as we have described.

Best,
ThemeBurn team

July 26, 2012 at 1:27 pm #11779

i have made the changes and i can not get it to work, i have uploaded the product.tpl to the root of my website for you to test, the rar is at the same link as the post above.
regards

July 26, 2012 at 9:35 pm #11806
You will need to register in order to post topics and read replies in the ThemeBurn.com support forums!
July 30, 2012 at 11:09 am #11877

that is were i have put it, if you download the product.tpl from my server ( link is in the post above you can see it is pasted at that location


          <dl class="clearfix">
            <dt><?php echo $text_stock; ?></dt>
            <dd itemprop="availability" content="<?php echo strtolower(str_replace(' ', '_', $stock)); ?>"><?php echo $stock; ?></dd>
            <dt><?php echo $text_model; ?></dt>
            <dd><?php echo $model; ?></dd>
            <?php if ($reward): ?>
            <dt><?php echo $text_reward; ?></dt>
            <dd><?php echo $reward; ?></dd>
            <?php endif; ?>
            <?php if ($tbData->common['manufacturers_enabled'] && $manufacturer): ?>
            <dt><?php echo $text_manufacturer; ?></dt>
            <dd itemprop="brand"><a href="<?php echo $manufacturers; ?>"><?php echo $manufacturer; ?></a></dd>
            <?php endif; ?>
          </dl>

          <?php if ($review_status || $tbData->common['product_social_share_enabled']): ?>
          <div id="product_share" class="clearfix">
            <?php if ($review_status): ?>
            <?php if ($rating): ?>
            <div class="s_rating_holder" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">
              <meta itemprop="name" content="<?php echo $heading_title; ?>" />
              <img itemprop="photo" class="none" src="<?php echo $thumb; ?>" title="<?php echo $heading_title; ?>" alt="<?php echo $heading_title; ?>" />
              <p class="s_rating s_rating_5"><span style="width: <?php echo $rating * 2 ; ?>0%;" class="s_percent"></span></p>
              <span class="s_average" itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating">
                <span itemprop="average"><?php echo $rating; ?></span>/<span itemprop="best">5</span>
              </span>
              <span class="s_total">(<a class="s_999" href="<?php echo $tbData->current_url; ?>#product_tabs"><span itemprop="count"><?php echo $reviews; ?></span></a>)</span>
              <br />
              <a class="s_review_write s_icon_10 s_main_color" href="<?php echo $tbData->current_url; ?>#product_tabs"><span class="s_icon s_main_color_bgr"></span> <?php echo $text_write; ?></a>
            </div>
      
        <div id="product_price" class="s_price_holder s_size_4 s_label">
          <?php if (!$special): ?>
          <p class="s_price" itemprop="offerDetails" itemscope itemtype="http://data-vocabulary.org/Offer">
            <meta itemprop="currency" content="<?php echo $this->currency->getCode(); ?>" />
            <span itemprop="price">
            <?php echo $tbData->priceFormat($price); ?>
            </span>
          </p>
          <?php else: ?>
          <p class="s_price s_promo_price" itemprop="offerDetails" itemscope itemtype="http://data-vocabulary.org/Offer">
            <meta itemprop="currency" content="<?php echo $this->currency->getCode(); ?>" />
            <span class="s_old_price"><?php echo $tbData->priceFormat($price); ?></span>
            <span itemprop="price">
            <?php echo $tbData->priceFormat($special); ?>
            </span>
          </p>
          <?php endif; ?>
          <?php if ($tax): ?>
          <p class="s_price_tax"><?php echo $text_tax; ?> <?php echo $tax; ?></p>
          <?php endif; ?>
          <?php if ($points): ?>
          <p class="s_reward_points"><small><?php echo $text_points; ?> <?php echo $points; ?></small></p>
          <?php endif; ?>
        </div>      
            <?php else: ?>
            <div class="s_rating_holder">
              <p class="s_rating s_rating_5 s_rating_blank"></p>
              <span class="s_average"><span class="s_total"><?php echo $tbData->text_product_not_yet_rated; ?></span></span>
              <br />
              <a class="s_review_write s_icon_10 s_main_color" href="<?php echo $tbData->current_url; ?>#product_tabs"><span class="s_icon s_main_color_bgr"></span> <?php echo $text_write; ?></a>
            </div>
            <?php endif; ?>
            <?php endif; ?>
            <?php if ($tbData->common['product_social_share_enabled']): ?>
            <!-- AddThis Button BEGIN -->
            <div class="addthis_toolbox addthis_default_style ">
              <script type="text/javascript" src="http<?php if($tbData->isHTTPS) echo 's'?>://apis.google.com/js/plusone.js"></script>
              <div class="s_plusone"><g:plusone size="medium"></g:plusone></div>
              <a class="addthis_button_tweet"></a>
              <a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
            </div>
            <script type="text/javascript" src="http<?php if($tbData->isHTTPS) echo 's'?>://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4e20919036eba525"></script>
            <!-- AddThis Button END -->
            <?php endif; ?>
          </div>
          <?php endif; ?>

        <?php if ($tbData->right_column_empty): ?>
        </div>
        <div id="product_buy_col">
        <?php endif; ?>

best regards

July 30, 2012 at 12:14 pm #11893

Hi,

Yes, we’ve checked the modified files and it is not correct.

Please, take a look at our previous post.

Best,
ThemeBurn team

July 30, 2012 at 12:41 pm #11898

Sorry but this is were i have put it ? have you downloaded the new product.tpl file and checked, see the code above i posted.
best regards

  • This reply was modified 4291 days ago by  werepair.
July 30, 2012 at 12:47 pm #11904

Hi,

We’ve checked both the attached file and the example in your reply and we will say again that you haven’t put the price correctly. Here is the correct position:

          <dl class="clearfix">
            <dt><?php echo $text_stock; ?></dt>
            <dd itemprop="availability" content="<?php echo strtolower(str_replace(' ', '_', $stock)); ?>"><?php echo $stock; ?></dd>
            <dt><?php echo $text_model; ?></dt>
            <dd><?php echo $model; ?></dd>
            <?php if ($reward): ?>
            <dt><?php echo $text_reward; ?></dt>
            <dd><?php echo $reward; ?></dd>
            <?php endif; ?>
            <?php if ($tbData->common['manufacturers_enabled'] && $manufacturer): ?>
            <dt><?php echo $text_manufacturer; ?></dt>
            <dd itemprop="brand"><a href="<?php echo $manufacturers; ?>"><?php echo $manufacturer; ?></a></dd>
            <?php endif; ?>
          </dl>

          <?php if ($review_status || $tbData->common['product_social_share_enabled']): ?>
          <div id="product_share" class="clearfix">
            <?php if ($review_status): ?>
            <?php if ($rating): ?>
            <div class="s_rating_holder" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">
              <meta itemprop="name" content="<?php echo $heading_title; ?>" />
              <img itemprop="photo" class="none" src="<?php echo $thumb; ?>" title="<?php echo $heading_title; ?>" alt="<?php echo $heading_title; ?>" />
              <p class="s_rating s_rating_5"><span style="width: <?php echo $rating * 2 ; ?>0%;" class="s_percent"></span></p>
              <span class="s_average" itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating">
                <span itemprop="average"><?php echo $rating; ?></span>/<span itemprop="best">5</span>
              </span>
              <span class="s_total">(<a class="s_999" href="<?php echo $tbData->current_url; ?>#product_tabs"><span itemprop="count"><?php echo $reviews; ?></span></a>)</span>
              <br />
              <a class="s_review_write s_icon_10 s_main_color" href="<?php echo $tbData->current_url; ?>#product_tabs"><span class="s_icon s_main_color_bgr"></span> <?php echo $text_write; ?></a>
            </div>
            <?php else: ?>
            <div class="s_rating_holder">
              <p class="s_rating s_rating_5 s_rating_blank"></p>
              <span class="s_average"><span class="s_total"><?php echo $tbData->text_product_not_yet_rated; ?></span></span>
              <br />
              <a class="s_review_write s_icon_10 s_main_color" href="<?php echo $tbData->current_url; ?>#product_tabs"><span class="s_icon s_main_color_bgr"></span> <?php echo $text_write; ?></a>
            </div>
            <?php endif; ?>
            <?php endif; ?>
            <?php if ($tbData->common['product_social_share_enabled']): ?>
            <!-- AddThis Button BEGIN -->
            <div class="addthis_toolbox addthis_default_style ">
              <script type="text/javascript" src="http<?php if($tbData->isHTTPS) echo 's'?>://apis.google.com/js/plusone.js"></script>
              <div class="s_plusone"><g:plusone size="medium"></g:plusone></div>
              <a class="addthis_button_tweet"></a>
              <a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
            </div>
            <script type="text/javascript" src="http<?php if($tbData->isHTTPS) echo 's'?>://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4e20919036eba525"></script>
            <!-- AddThis Button END -->
            <?php endif; ?>
          </div>
          <?php endif; ?>

        <div id="product_price" class="s_price_holder s_size_4 s_label">
          <?php if (!$special): ?>
          <p class="s_price" itemprop="offerDetails" itemscope itemtype="http://data-vocabulary.org/Offer">
            <meta itemprop="currency" content="<?php echo $this->currency->getCode(); ?>" />
            <span itemprop="price">
            <?php echo $tbData->priceFormat($price); ?>
            </span>
          </p>
          <?php else: ?>
          <p class="s_price s_promo_price" itemprop="offerDetails" itemscope itemtype="http://data-vocabulary.org/Offer">
            <meta itemprop="currency" content="<?php echo $this->currency->getCode(); ?>" />
            <span class="s_old_price"><?php echo $tbData->priceFormat($price); ?></span>
            <span itemprop="price">
            <?php echo $tbData->priceFormat($special); ?>
            </span>
          </p>
          <?php endif; ?>
          <?php if ($tax): ?>
          <p class="s_price_tax"><?php echo $text_tax; ?> <?php echo $tax; ?></p>
          <?php endif; ?>
          <?php if ($points): ?>
          <p class="s_reward_points"><small><?php echo $text_points; ?> <?php echo $points; ?></small></p>
          <?php endif; ?>
        </div>

        <?php if ($tbData->right_column_empty): ?>
        </div>
        <div id="product_buy_col">
        <?php endif; ?>

Best,
ThemeBurn team

July 30, 2012 at 1:03 pm #11908

Hi,
Thankyou
this works perfect now, one more thing, how do i add the words Price: before the actual price of the item http://screencast.com/t/pJOqO1QKWHG
Best regards

July 30, 2012 at 4:56 pm #11928
You will need to register in order to post topics and read replies in the ThemeBurn.com support forums!
August 1, 2012 at 11:27 am #11971
Viewing 13 posts - 1 through 13 (of 13 total)
  • You must be logged in to reply to this topic.