Jump to content

[SOLVED] Description block size


CharlotteV

Recommended Posts

Hello everyone, I need to change the width of the description to make it fill the whole space as you can see in the screenshot. Here is a link to the product in the screenshot for a live view.

 

 

 post-828392-0-19198800-1409126300_thumb.jpg

 

Also I would like to get rid of the "Share on Facebook!" link since there is a button to do that right on top

 

Thanks in advance and have a nice day you all =)

Edited by CharlotteV (see edit history)
Link to comment
Share on other sites

Hi,

 

I do not recognize the theme - URL would be really helpful, this way we could tell you what width of which element to change..

 

Hello and thanks for your quick reply. The theme is Flatroshop and the url is www.maracuyes.com. I hope you can help! Thanks again =)

Link to comment
Share on other sites

In product.tpl, change this code

<div class="col-lg-9 col-md-9 col-sm-12 col-xs-12 main-column box-block product-details-tabs">

to this one

<div class="col-lg-12 col-md-9 col-sm-12 col-xs-12 main-column box-block product-details-tabs">

It should do the trick.

 

Hi! I have change this code but nothing happened. Do you think theres another way to do it? Thanks for your help 

Link to comment
Share on other sites

Are you using FireFox with FireBug addon, it would help you greatly to develop sites.

 

Yes Jimbola I'm using it but I try to inspect everything and find the css where I can find the parameters for that block but after inspect I don't know what else to do =)

Link to comment
Share on other sites

The code posted by PSFever.com is the one you should use. Make sure you're editing the right product.tpl file - the one located in your active theme's folder so /themes/[YOUR_THEME_NAME]/product.tpl .

 

*edit* you should probably use:

<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 main-column box-block product-details-tabs">

since the description block would go back to 9 column width on medium sized screens/devices if you leave "col-md-9"

Edited by defuzed (see edit history)
  • Like 1
Link to comment
Share on other sites

The code posted by PSFever.com is the one you should use. Make sure you're editing the right product.tpl file - the one located in your active theme's folder so /themes/[YOUR_THEME_NAME]/product.tpl .

 

*edit* you should probably use:

<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 main-column box-block product-details-tabs">

since the description block would go back to 9 column width on medium sized screens/devices if you leave "col-md-9"

 

Now we are talking!! I have change the parameters the way you told me and now is working like a charm! Thanks both but defuzed in special for giving me the key. Have a great day =)

Link to comment
Share on other sites

which "Share on facebook!" link are you referring to? i couldn't find any on the product page except the "addthis" buttons above the "add to cart" button, or did you mean that?

 

No,it is the one that is under Add to cart in white, you can see it in the screenshot in the first post of this thread. Thank you

Link to comment
Share on other sites

oh wow, that is impossible to see on my monitor :D
look for

<li id="left_share_fb"> 

</li>

in your themes product.tpl and remove the whole <li> tag or comment out with smarty comments like so:

{*<li id="left_share_fb"> 

</li>*}

If you cannot find this <li> tag then it must be included by a module or something, if that is the case please post your product.tpl in here so i can help.

  • Like 1
Link to comment
Share on other sites

Sorry for the delay, I've been trying to find "left_share_fb" in product.tpl and everywhere with no success so here goes my product.tpl contents, hope this help. Thanks

 

{*
* 2007-2014 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <[email protected]>
*  @copyright  2007-2014 PrestaShop SA
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*}
{include file="$tpl_dir./errors.tpl"}
{if $errors|@count == 0}
{if !isset($priceDisplayPrecision)}
{assign var='priceDisplayPrecision' value=2}
{/if}
{if !$priceDisplay || $priceDisplay == 2}
{assign var='productPrice' value=$product->getPrice(true, $smarty.const.NULL, $priceDisplayPrecision)}
{assign var='productPriceWithoutReduction' value=$product->getPriceWithoutReduct(false, $smarty.const.NULL)}
{elseif $priceDisplay == 1}
{assign var='productPrice' value=$product->getPrice(false, $smarty.const.NULL, $priceDisplayPrecision)}
{assign var='productPriceWithoutReduction' value=$product->getPriceWithoutReduct(true, $smarty.const.NULL)}
{/if}
        <div class="row clearfix f-space10"></div>
        <div class="row clearfix"></div>
        
<div class="container">  
  <!-- row -->
  <div class="row">
    <div class="col-md-12 box-block"> 
      
      <!--  box content -->
      
      <div class="box-content"> 
        <!-- single product -->
        <div class="single-product"> 
            
                      <!-- Images -->
          <div class="images col-md-6 col-sm-12 col-xs-12">
              <div class="row"> 
              <!-- Small Images -->
              <div class="thumbs col-md-3 col-sm-3 col-xs-3"  id="thumbs">
             
                    {if isset($images) && count($images) > 0}
<!-- thumbnails -->
<div id="views_block" class="clearfix {if isset($images) && count($images) < 1}hidden{/if}">


                                    <div id="thumbs_list"  class="vjcarousel">
                                            <ul data-jcarousel="true">
{if isset($images)}
{foreach from=$images item=image name=thumbnails}
{assign var=imageIds value="`$product->id`-`$image.id_image`"}
{if !empty($image.legend)}
{assign var=imageTitle value=$image.legend|escape:'html':'UTF-8'}
{else}
{assign var=imageTitle value=$product->name|escape:'html':'UTF-8'}
{/if}
<li id="thumbnail_{$image.id_image}"{if $smarty.foreach.thumbnails.last} class="last"{/if}>
<a 
{if $jqZoomEnabled && $have_image && !$content_only}
href="javascript:void(0);"
rel="{literal}[spam-filter]/literal}gallery: 'gal1', smallimage: '{$link->getImageLink($product->link_rewrite, $imageIds, 'large_default')|escape:'html':'UTF-8'}',largeimage: '{$link->getImageLink($product->link_rewrite, $imageIds, 'thickbox_default')|escape:'html':'UTF-8'}'{literal[spam-filter]{/literal}"
{else}
href="{$link->getImageLink($product->link_rewrite, $imageIds, 'thickbox_default')|escape:'html':'UTF-8'}"
data-fancybox-group="other-views"
class="fancybox{if $image.id_image == $cover.id_image} shown{/if}"
{/if}
title="{$imageTitle}">
<img id="thumb_{$image.id_image}" src="{$link->getImageLink($product->link_rewrite, $imageIds, 'cart_default')|escape:'html':'UTF-8'}" alt="{$imageTitle}" title="{$imageTitle}"  itemprop="image" />
</a>
</li>
{/foreach}
{/if}
</ul>
                                              
</div> <!-- end thumbs_list -->
                                         <!-- end thumbs_list -->
                       {if isset($images) && count($images) > 3}
        <a class="vjcarousel-prev">{l s='Prev'}</a> | <a class="vjcarousel-next">{l s='Next'}</a>
{/if}
</div> <!-- end views-block -->
<!-- end thumbnails -->
{/if}   
                            
<script type="text/javascript">
$(function() {
   $('.vjcarousel').jcarousel({
       vertical: true,
       scroll: 1,
       auto: 2,
       wrap: 'circular'
   });


   $('.vjcarousel-prev').click(function() {
   $('.vjcarousel').jcarousel('scroll', '-=1');
});


$('.vjcarousel-next').click(function() {
   $('.vjcarousel').jcarousel('scroll', '+=1');
});


});
</script>


  
              </div>
              <!-- end: Small Images --> 
              <!-- Big Image and Zoom -->
              <div class="big-image col-md-9 col-sm-9 col-xs-9">
                    {if $have_image}
                 
   <span id="view_full_size">
                                
                             <a id="cloudZoom" gallery="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'thickbox_default')}" class="cloud-zoom main-image_{$product->id}" href="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'thickbox_default')}" rel="zoomWidth: '500',zoomHeight: '500',position: 'inside',smoothMove: 10,showTitle: true,titleOpacity: 0,lensOpacity: 0,tintOpacity: 0,softFocus: false" >
                                 <img itemprop="image" id="bigpic" src="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'large_default')}" title="{$product->name|escape:'htmlall':'UTF-8'}" alt="{$product->name|escape:'htmlall':'UTF-8'}"  />
                             </a>
   </span>
  {else}
                     
   <span id="view_full_size">
                             <a id="cloudZoom" class="cloud-zoom main-image_{$product->id}" href="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'thickbox_default')}"rel="zoomWidth: '500',zoomHeight: '500',position: 'inside',smoothMove: 10,showTitle: true,titleOpacity: 0,lensOpacity: 0,tintOpacity: 0,softFocus: false" >
    
                                 <img src="{$img_prod_dir}{$lang_iso}-default-large_default.jpg" id="bigpic" alt="" title="{$product->name|escape:'htmlall':'UTF-8'}" width="{$largeSize.width}" height="{$largeSize.height}" />
     </a>
   </span>
  {/if}
                  
              </div>
  


              <!-- end: Big Image and Zoom --> 
            </div>
          </div>
          
          <!-- end: Images --> 


          <!-- product details -->
          
          <div class="product-details col-md-6 col-sm-12 col-xs-12"> 
            
            <!-- Title and rating info -->
            <div class="title">
              <h1>{$product->name|escape:'html':'UTF-8'}</h1>
              <div class="rating"> 
                  <div class="comments_note clearfix pp_comments">
<span>{l s='Rating' mod='productcomments'} </span>
<div class="star_content clearfix">
{section name="i" start=0 loop=5 step=1}
{if $averageTotal le $smarty.section.i.index}
<div class="star"></div>
{else}
<div class="star star_on"></div>
{/if}
{/section}
<meta itemprop="worstRating" content = "0" />
<meta itemprop="ratingValue" content = "2" />
<meta itemprop="bestRating" content = "5" />
<span class="hidden" itemprop="ratingValue">{$averageTotal}</span> 
</div>
</div> <!-- .comments_note -->


                <span><a href="#idTab5" class="reviews">{l s='This Product has' mod='productcomments'} <span itemprop="reviewCount">{$nbComments} </span> {l s='Review(s)' mod='productcomments'}</a>
                 {if !$content_only}      <a id="new_comment_tab_btn" class="open-comment-form" href="#new_comment_form">{l s='Add Review' mod='productcomments'}</a>   {/if}
                  </span>
             
              </div>
                    {if isset($HOOK_EXTRA_RIGHT) && $HOOK_EXTRA_RIGHT}{$HOOK_EXTRA_RIGHT}{/if}
            </div>
            <!-- end: Title and rating info -->
            
            <div class="row"> 
              <!-- Availability, Product Code, Brand and short info -->
              <div class="short-info-wr col-md-12 col-sm-12 col-xs-12">
                <div class="short-info">
                  <div class="product-attr-text">
{if ($display_qties == 1 && !$PS_CATALOG_MODE && $PS_STOCK_MANAGEMENT && $product->available_for_order)}
<!-- number of item in stock -->
<p id="pQuantityAvailable"{if $product->quantity <= 0} style="display: none;"{/if}>
<span id="quantityAvailable">{$product->quantity|intval}</span>
<span {if $product->quantity > 1} style="display: none;"{/if} id="quantityAvailableTxt">{l s='Item'}</span>
<span {if $product->quantity == 1} style="display: none;"{/if} id="quantityAvailableTxtMultiple">{l s='Items'}</span>
</p>
{/if}
{if $PS_STOCK_MANAGEMENT}
<!-- availability -->
<p id="availability_statut"{if ($product->quantity <= 0 && !$product->available_later && $allow_oosp) || ($product->quantity > 0 && !$product->available_now) || !$product->available_for_order || $PS_CATALOG_MODE} style="display: none;"{/if}>
{*<span id="availability_label">{l s='Availability:'}</span>*}
<span id="availability_value" class=" available"{if $product->quantity <= 0} class="warning_inline"{/if}>{if $product->quantity <= 0}{if $allow_oosp}{$product->available_later}{else}{l s='This product is no longer in stock'}{/if}{else}{$product->available_now}{/if}</span> 
</p>
<p class="warning_inline" id="last_quantities"{if ($product->quantity > $last_qties || $product->quantity <= 0) || $allow_oosp || !$product->available_for_order || $PS_CATALOG_MODE} style="display: none"{/if} >{l s='Warning: Last items in stock!'}</p>
{/if}
<p id="availability_date"{if ($product->quantity > 0) || !$product->available_for_order || $PS_CATALOG_MODE || !isset($product->available_date) || $product->available_date < $smarty.now|date_format:'%Y-%m-%d'} style="display: none;"{/if}>
<span id="availability_date_label">{l s='Availability date:'}</span>
<span id="availability_date_value">{dateFormat date=$product->available_date full=false}</span>
</p>                  
                  </div>
                  
                 <p id="product_reference"{if empty($product->reference) || !$product->reference} style="display: none;"{/if}>
<label>{l s='Model :'} </label>
<span class="editable" itemprop="sku">{if !isset($groups)}{$product->reference|escape:'html':'UTF-8'}{/if}</span>
</p>
{capture name=condition}
{if $product->condition == 'new'}{l s='New'}
{elseif $product->condition == 'used'}{l s='Used'}
{elseif $product->condition == 'refurbished'}{l s='Refurbished'}
{/if}
{/capture}
                         
                </div>
              </div>
              <!-- end: Availability, Product Code, Brand and short info --> 
              
            </div>
            <div class="row">
                
               <div class="product-btns-wr col-md-8 col-sm-8 col-xs-12 product-page-link-color">
{if ($product->show_price && !isset($restricted_country_mode)) || isset($groups) || $product->reference || (isset($HOOK_PRODUCT_ACTIONS) && $HOOK_PRODUCT_ACTIONS)}
<!-- add to cart form-->
<form id="buy_block" {if $PS_CATALOG_MODE && !isset($groups) && $product->quantity > 0}class="hidden"{/if} action="{$link->getPageLink('cart')|escape:'html':'UTF-8'}" method="post">
<!-- hidden datas -->
<p class="hidden">
<input type="hidden" name="token" value="{$static_token}" />
<input type="hidden" name="id_product" value="{$product->id|intval}" id="product_page_product_id" />
<input type="hidden" name="add" value="1" />
<input type="hidden" name="id_product_attribute" id="idCombination" value="" />
</p>                                
<div class="box-info-product"> 
<div class="product_attributes clearfix">


<!-- minimal quantity wanted -->
<p id="minimal_quantity_wanted_p"{if $product->minimal_quantity <= 1 || !$product->available_for_order || $PS_CATALOG_MODE} style="display: none;"{/if}>
{l s='This product is not sold individually. You must select at least'} <b id="minimal_quantity_label">{$product->minimal_quantity}</b> {l s='quantity for this product.'}
</p>
{if isset($groups)}
<!-- attributes -->
<div id="attributes">
<div class="clearfix"></div>
{foreach from=$groups key=id_attribute_group item=group}
{if $group.attributes|@count}
<fieldset class="attribute_fieldset">
<label class="attribute_label" {if $group.group_type != 'color' && $group.group_type != 'radio'}for="group_{$id_attribute_group|intval}"{/if}>{$group.name|escape:'html':'UTF-8'} : </label>
{assign var="groupName" value="group_$id_attribute_group"}
<div class="attribute_list">
{if ($group.group_type == 'select')}
<select name="{$groupName}" id="group_{$id_attribute_group|intval}" class="form-control attribute_select no-print">
{foreach from=$group.attributes key=id_attribute item=group_attribute}
<option value="{$id_attribute|intval}"{if (isset($smarty.get.$groupName) && $smarty.get.$groupName|intval == $id_attribute) || $group.default == $id_attribute} selected="selected"{/if} title="{$group_attribute|escape:'html':'UTF-8'}">{$group_attribute|escape:'html':'UTF-8'}</option>
{/foreach}
</select>
{elseif ($group.group_type == 'color')}
<ul id="color_to_pick_list" class="clearfix">
{assign var="default_colorpicker" value=""}
{foreach from=$group.attributes key=id_attribute item=group_attribute}
<li{if $group.default == $id_attribute} class="selected"{/if}>
<a href="{$link->getProductLink($product)|escape:'html':'UTF-8'}" id="color_{$id_attribute|intval}" name="{$colors.$id_attribute.name|escape:'html':'UTF-8'}" class="color_pick{if ($group.default == $id_attribute)} selected{/if}" style="background: {$colors.$id_attribute.value|escape:'html':'UTF-8'};" title="{$colors.$id_attribute.name|escape:'html':'UTF-8'}">
{if file_exists($col_img_dir|cat:$id_attribute|cat:'.jpg')}
<img src="{$img_col_dir}{$id_attribute|intval}.jpg" alt="{$colors.$id_attribute.name|escape:'html':'UTF-8'}" width="20" height="20" />
{/if}
</a>
</li>
{if ($group.default == $id_attribute)}
{$default_colorpicker = $id_attribute}
{/if}
{/foreach}
</ul>
<input type="hidden" class="color_pick_hidden" name="{$groupName|escape:'html':'UTF-8'}" value="{$default_colorpicker|intval}" />
{elseif ($group.group_type == 'radio')}
<ul>
{foreach from=$group.attributes key=id_attribute item=group_attribute}
<li>
<input type="radio" class="attribute_radio" name="{$groupName|escape:'html':'UTF-8'}" value="{$id_attribute}" {if ($group.default == $id_attribute)} checked="checked"{/if} />
<span>{$group_attribute|escape:'html':'UTF-8'}</span>
</li>
{/foreach}
</ul>
{/if}
</div> <!-- end attribute_list -->
</fieldset>
{/if}
{/foreach}
</div> <!-- end attributes -->
{/if}
</div> <!-- end product_attributes -->                                
</div> <!-- end box-info-product -->
</form>
{/if}
              </div>
              <div class="short-info-opt-wr col-md-6 col-sm-6 col-xs-12">
                <div class="short-info-opt">
                  <div class="att-row">
                      
                    {if !$PS_CATALOG_MODE}  
                    <div class="qty-wr" id="quantity_wanted_p"{if (!$allow_oosp && $product->quantity <= 0) || !$product->available_for_order || $PS_CATALOG_MODE} style="display: none;"{/if}>
                      <div class="qty-text hidden-xs">{l s='Qty:'}</div>
                      <div class="quantity-inp">
                      <input type="text" name="qty" id="quantity_wanted" class="quantity-input" value="{if isset($quantityBackup)}{$quantityBackup|intval}{else}{if $product->minimal_quantity > 1}{$product->minimal_quantity}{else}1{/if}{/if}" />
                      </div>
                      <div class="quantity-txt">
                        <a href="#" data-field-qty="qty" class="qty qtyminus button-minus product_quantity_down">
                                <i class="fa fa-minus fa-fw"></i>
                        </a>
                      </div>
                      <div class="quantity-txt">
                        <a href="#" data-field-qty="qty" class="qty qtyplus button-plus product_quantity_up ">
                                <i class="fa fa-plus fa-fw"></i>
                        </a>                      
                      </div>
                      <span class="clearfix"></span>
                    </div>
                      {/if}
                    <!-- minimal quantity wanted -->
                    <p id="minimal_quantity_wanted_p"{if $product->minimal_quantity <= 1 || !$product->available_for_order || $PS_CATALOG_MODE} style="display: none;"{/if}>
                            {l s='This product is not sold individually. You must select at least'} <b id="minimal_quantity_label">{$product->minimal_quantity}</b> {l s='quantity for this product.'}
                    </p>                      
                                         
                    
                 
                  </div>
                </div>
              </div>
              <div class="short-info-share-wr col-md-6 col-sm-6 col-xs-12">
                  <div id="oosHook"{if $product->quantity > 0} style="display: none;"{/if}>
                    {$HOOK_PRODUCT_OOS}
                </div>
                <div class="short-info-opt"> 
                 {$themesdev.td_pro_shareright|html_entity_decode}
                </div>


               


              </div>
            </div>
            <div class="row">
              <div class="price-wr col-md-4 col-sm-4 col-xs-12">
                <div class="big-price"> 
<div class="content_prices clearfix">
{if $product->show_price && !isset($restricted_country_mode) && !$PS_CATALOG_MODE}
<!-- prices -->
<div class="big-price pp_big_price">
                                                            
                                                                <span class="price-old pp_old_price" {if (!$product->specificPrice || !$product->specificPrice.reduction) && $group_reduction == 1} class="hidden"{/if}>
{if $priceDisplay >= 0 && $priceDisplay <= 2}
<span>{if $productPriceWithoutReduction > $productPrice}{convertPrice price=$productPriceWithoutReduction}{/if}</span>
<!-- {if $tax_enabled && $display_tax_label == 1}{if $priceDisplay == 1}{l s='tax excl.'}{else}{l s='tax incl.'}{/if}{/if} -->
{/if}
</span>
                                                                
                                                                <span class="reduction_percent pp_discount_percent" {if !$product->specificPrice || $product->specificPrice.reduction_type != 'percentage'} style="display:none;"{/if}>
<span>
{if $product->specificPrice && $product->specificPrice.reduction_type == 'percentage'}-{$product->specificPrice.reduction*100}%{/if}
</span>
</span>
                                                                
<span class="our_price_display price-new pp_new_price" itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<link itemprop="availability" {if $product->quantity <= 0}href="http://schema.org/OutOfStock"{else}href="http://schema.org/InStock"{/if}>
{if $priceDisplay >= 0 && $priceDisplay <= 2}
<span  id="our_price_display"  itemprop="price">{convertPrice price=$productPrice}</span>
<!--{if $tax_enabled  && ((isset($display_tax_label) && $display_tax_label == 1) || !isset($display_tax_label))}
{if $priceDisplay == 1}{l s='tax excl.'}{else}{l s='tax incl.'}{/if}
{/if}-->
<meta itemprop="priceCurrency" content="{$currency->iso_code}" />
{/if}
                                                                        
                                                                        
</span>
                                                                        
                                                                
           </div> 
                                                                        
{if $priceDisplay == 2}
<br />
<span id="pretaxe_price">
<span id="pretaxe_price_display">{convertPrice price=$product->getPrice(false, $smarty.const.NULL)}</span>
{l s='tax excl.'}
</span>
{/if}
<!-- end prices -->
<div id="reduction_amount" {if !$product->specificPrice || $product->specificPrice.reduction_type != 'amount' || $product->specificPrice.reduction|floatval ==0} style="display:none"{/if}>
<span id="reduction_amount_display">
{if $product->specificPrice && $product->specificPrice.reduction_type == 'amount' && $product->specificPrice.reduction|intval !=0}
-{convertPrice price=$productPriceWithoutReduction-$productPrice|floatval}
{/if}
</span>
</div>
{if $packItems|@count && $productPrice < $product->getNoPackPrice()}
<div class="pack_price">{l s='Instead of'} <span style="text-decoration: line-through;">{convertPrice price=$product->getNoPackPrice()}</span></div>
{/if}
{if $product->ecotax != 0}
<div class="price-ecotax">{l s='Include'} <span id="ecotax_price_display">{if $priceDisplay == 2}{$ecotax_tax_exc|convertAndFormatPrice}{else}{$ecotax_tax_inc|convertAndFormatPrice}{/if}</span> {l s='For green tax'}
{if $product->specificPrice && $product->specificPrice.reduction}
<br />{l s='(not impacted by the discount)'}
{/if}
</div>
{/if}


{/if} {*close if for show price*}
<div class="clear"></div>
</div> <!-- end content_prices -->                
                </div>
              </div>
<div class="product-btns-wr col-md-8 col-sm-8 col-xs-12">
                <div class="product-btns">
                  <div class="product-big-btns">                       
                 
                    <div  class="{if (!$allow_oosp && $product->quantity <= 0) || !$product->available_for_order || (isset($restricted_country_mode) && $restricted_country_mode) || $PS_CATALOG_MODE}unvisible{else}btninline{/if}">
                            <p id="add_to_cart" class="buttons_bottom_block no-print">
                                     <button type="submit" name="Submit" class="btn btn-addtocart exclusive">
                            <i class="fa fa-shopping-cart fa-fw"></i>{l s='Add to Cart'}
                        </button>
                            </p>
                    </div>
                    {if isset($HOOK_PRODUCT_ACTIONS) && $HOOK_PRODUCT_ACTIONS}{$HOOK_PRODUCT_ACTIONS}{/if}<strong></strong> 
                    {if isset($comparator_max_item) && ($comparator_max_item)}
                     <a id="comparator_item_{$product->id}" class="link-compare btn btn-compare add_to_compare" data-toggle="tooltip" data-original-title="{l s='Add to Compare'}" href="" ><i class="fa normal fa-retweet fa-fw"></i></a>
                    {/if}          
                   {if !$content_only}


{if $HOOK_EXTRA_LEFT}{$HOOK_EXTRA_LEFT}{/if}


{/if}
                   
                  </div>
                </div>
              </div>    
                                                
             
            </div>
          </div>
          
          <!-- end: product details --> 
          
        </div>
        
        <!-- end: single product --> 
        
      </div>
      
      <!-- end: box content --> 
      
    </div>
  </div>
  <!-- end:row --> 
</div>
<div class="row clearfix f-space30"></div>                
{if !$content_only}
            
<div class="container"> 
  <!-- row -->
  <div class="row"> 
    <!-- tabs -->
    {if (isset($product) && $product->description) || (isset($features) && $features) || (isset($accessories) && $accessories) || (isset($HOOK_PRODUCT_TAB) && $HOOK_PRODUCT_TAB) || (isset($attachments) && $attachments) || isset($product) && $product->customizable}
    <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 main-column box-block product-details-tabs"> 
      
      <!-- Details Info/Reviews/Tags --> 
      <!-- Nav tabs -->     
      <ul class="nav nav-tabs blog-tabs nav-justified product-page-tab-content">
        {if $product->description}<li class="active"><a data-toggle="tab" href="#details-info"><i class="fa  fa-th-list fa-fw"></i> {l s='Details Info'}</a></li>{/if}
        {if (isset($quantity_discounts) && count($quantity_discounts) > 0)}<li class="active"><a data-toggle="tab" href="#discounts-info"><i class="fa  fa-th-list fa-fw"></i> {l s='Volume discounts'}</a></li>{/if}
        {if $features}<li><a data-toggle="tab" href="#feature-info"><i class="fa  fa-th-list fa-fw"></i> {l s='Data sheet'}</a></li>{/if}
       <!-- {if $attachments}<li><a data-toggle="tab" id="more_info_tab_attachments" href="#idTab9"><i class="fa  fa-th-list fa-fw"></i> {l s='Download'}</a></li>{/if}
        {if isset($product) && $product->customizable}<li><a data-toggle="tab" href="#idTab10"><i class="fa  fa-th-list fa-fw"></i> {l s='Product customization'}</a></li>{/if}-->
        {$HOOK_PRODUCT_TAB}
        {if $themesdev.td_custom_tab == 'enable'}
            <li><a data-toggle="tab" href="#custom-tab"><i class="fa fa-video-camera fa-fw"></i> {l s='Custom Tab'}</a></li>
        {/if}
        </ul>
      <!-- Tab panes -->
      <div class="tab-content">
          
          
          
      
               {if (isset($quantity_discounts) && count($quantity_discounts) > 0)}
                       <div id="discounts-info" class="tab-pane">
<!-- quantity discount -->
<section class="page-product-box">


<div id="quantityDiscount">
<table class="std table-product-discounts">
<thead>
<tr>
<th>{l s='Quantity'}</th>
<th>{if $display_discount_price}{l s='Price'}{else}{l s='Discount'}{/if}</th>
<th>{l s='You Save'}</th>
</tr>
</thead>
<tbody>
{foreach from=$quantity_discounts item='quantity_discount' name='quantity_discounts'}
<tr id="quantityDiscount_{$quantity_discount.id_product_attribute}" class="quantityDiscount_{$quantity_discount.id_product_attribute}">
<td>{$quantity_discount.quantity|intval}</td>
<td>
{if $quantity_discount.price >= 0 || $quantity_discount.reduction_type == 'amount'}
{if $display_discount_price}
{convertPrice price=$productPrice-$quantity_discount.real_value|floatval}
{else}
{convertPrice price=$quantity_discount.real_value|floatval}
{/if}
{else}
{if $display_discount_price}
{convertPrice price = $productPrice-($productPrice*$quantity_discount.reduction)|floatval}
{else}
{$quantity_discount.real_value|floatval}%
{/if}
{/if}
</td>
<td>
<span>{l s='Up to'}</span>
{if $quantity_discount.price >= 0 || $quantity_discount.reduction_type == 'amount'}
{$discountPrice=$productPrice-$quantity_discount.real_value|floatval}
{else}
{$discountPrice=$productPrice-($productPrice*$quantity_discount.reduction)|floatval}
{/if}
{$discountPrice=$discountPrice*$quantity_discount.quantity}
{$qtyProductPrice = $productPrice*$quantity_discount.quantity}
{convertPrice price=$qtyProductPrice-$discountPrice}
</td>
</tr>
{/foreach}
</tbody>
</table>
</div>
</section>
                                                 </div>
{/if}
         {if isset($product) && $product->description}
           <div id="details-info" class="tab-pane active">
<!-- More info -->
<!-- full description -->
<p  class="rte">{$product->description}</p>
<!--end  More info -->


                    </div>
                {/if}
                
                {if isset($features) && $features}
                         <div id="feature-info" class="tab-pane active">  


                <div class="table-responsive">
<table class="table table-striped"> 
{foreach from=$features item=feature}
<tr class="{cycle values="odd,even"}">
{if isset($feature.value)}     
<td>{$feature.name|escape:'html':'UTF-8'}</td>
<td>{$feature.value|escape:'html':'UTF-8'}</td>
{/if}
</tr>
{/foreach}
</table>
             </div>
                                  </div>
                                {/if}
    
        
   
     {if isset($HOOK_PRODUCT_TAB_CONTENT) && $HOOK_PRODUCT_TAB_CONTENT}{$HOOK_PRODUCT_TAB_CONTENT}{/if}
                {if $themesdev.td_custom_tab == 'enable'}         
                <div id="custom-tab" class="tab-pane">
          
          <div class="video-wrapper">
              <div class="video-container">
            {$themesdev.td_ptab_con|html_entity_decode}  
            </div>
            <!-- /video --> 
          </div>
          <!-- /video-wrapper --> 
        </div>
            
            {/if}
    
            </div>
              </div>
          {/if}    
    <!-- end: tabs --> 
  
    <!-- sidebar -->
    {$TD_PRODUCT_HOOK} 


      
      </div>
      <!-- end: Tab panes --> 
     
  </div>
  <!-- row --> 
 <div class="row clearfix f-space30"></div>
          
             {if isset($accessories) && $accessories}
<!--Accessories -->
                        <div class="container">
  <div class="row">
    <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 main-column box-block">
      <div class="box-heading"><span>{l s='Accessories'}</span></div>
      <div class="box-content">
        <div class="box-products slide" id="productc5">
          <div class="carousel-controls"> <a class="carousel-control left" data-slide="prev" href="#productc5"> <i class="fa fa-angle-left fa-fw"></i> </a> <a class="carousel-control right" data-slide="next" href="#productc5"> <i class="fa fa-angle-right fa-fw"></i> </a> </div>
          <div class="carousel-inner"> 
            <!-- Items Row -->
          {$i=0}
             {$j=1}
           
           {foreach from=$accessories item=accessory name=accessories_list}
{if ($accessory.allow_oosp || $accessory.quantity_all_versions > 0 || $accessory.quantity > 0) && $accessory.available_for_order && !isset($restricted_country_mode)}
{assign var='accessoryLink' value=$link->getProductLink($accessory.id_product, $accessory.link_rewrite, $accessory.category)}
               {if $i%4==0}
             <div class="item{if $i==0} active {/if}">
              <div class="row box-product"> 
                  {/if}
               <div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
                  <div class="product-block">
                      


                      
                    <div class="image main-image_{$accessory.id_product}">                
                      <a class="img" href="{$accessoryLink|escape:'html':'UTF-8'}">
                           <img src="{$link->getImageLink($accessory.link_rewrite, $accessory.id_image, 'home_default')|escape:'html':'UTF-8'}" title="{$accessory.legend|escape:'html':'UTF-8'}"  alt="{$accessory.name|truncate:20:'...':true|escape:'html':'UTF-8'}" />
                      </a> 
                    </div>
                    <div class="product-meta">
                      <div class="name">
                          <a href="{$accessoryLink|escape:'html':'UTF-8'}" title="{$accessory.legend|escape:'html':'UTF-8'}" itemprop="url">{$accessory.name|truncate:20:'...':true|escape:'html':'UTF-8'}</a>
                    </div>
                       {if $accessory.show_price && !isset($restricted_country_mode) && !$PS_CATALOG_MODE}
                      <div class="big-price"> 
                             <span class="price">
                                            {if $priceDisplay != 1}
                                            {displayWtPrice p=$accessory.price}{else}{displayWtPrice p=$accessory.price_tax_exc}
                                            {/if}
                                    </span>
                      </div>
                      {/if} 
                      <div class="big-btns"> 
                        {if isset($quick_view) && $quick_view}
                        <a class="quick-view btn btn-default btn-view pull-left" href="{$accessoryLink|escape:'html':'UTF-8'}" rel="{$accessoryLink|escape:'html':'UTF-8'}">
                        {l s='view'}
                        </a>
                        {/if}                           
                        {if !$PS_CATALOG_MODE && ($accessory.allow_oosp || $accessory.quantity > 0)}
                                    <a class="btn btn-default btn-addtocart pull-right ajax_add_to_cart_button" href="{$link->getPageLink('cart', true, NULL, "qty=1&id_product={$accessory.id_product|intval}&token={$static_token}&add")|escape:'html':'UTF-8'}" rel="nofollow" title="{l s='Add to cart'}" data-id-product="{$accessory.id_product|intval}">
                                        <span>{l s='Add to cart'}</span>
                                    </a> 
                            {else}
                                <span class="btn btn-default btn-addtocart pull-right ajax_add_to_cart_button">
                                    <span>{l s='Out of stock'}</span>
                                </span>
                            {/if}
                     
                      </div> 
                       {if $accessory.show_price && !isset($restricted_country_mode) && !$PS_CATALOG_MODE}
                      <div class="small-price"> 
                        
                                    
                                            {if $priceDisplay != 1}
                                            {displayWtPrice p=$accessory.price}{else}{displayWtPrice p=$accessory.price_tax_exc}
                                            {/if}
                                   
                               
                      </div>
                      {/if}                    
                      <div class="rating"> {hook h='displayProductListReviews' product=$accessory} </div>
                  <div class="small-btns">
                    {if isset($comparator_max_item) && $comparator_max_item}
                     <a id="comparator_item_{$accessory.id_product}" class="link-compare btn normal btn-compare pull-left" data-toggle="tooltip" data-original-title="{l s='Add to Compare'}" href="" ><i class="fa normal fa-retweet fa-fw"></i></a>
                    {/if}                      
                    <input type="hidden" name="qty" id="quantity_wanted" class="text"  value="1" size="2" maxlength="3" />
                     <a href="#" data-toggle="tooltip" onclick="WishlistCart('wishlist_block_list', 'add', '{$accessory.id_product|intval}', $('#idCombination').val(), document.getElementById('quantity_wanted').value); return false;"  rel="tooltip" class="btn btn-default btn-wishlist pull-left link-wishlist" title="{l s='Add to Wishlist'} "><i class="fa fa-heart fa-fw"></i></a>                         


                            {if !$PS_CATALOG_MODE && ($accessory.allow_oosp || $accessory.quantity > 0)}
                                    <a class="btn btn-default btn-addtocart pull-left ajax_add_to_cart_button" href="{$link->getPageLink('cart', true, NULL, "qty=1&id_product={$accessory.id_product|intval}&token={$static_token}&add")|escape:'html':'UTF-8'}" data-toggle="tooltip" rel="nofollow" title="{l s='Add to cart'}" data-id-product="{$accessory.id_product}"> <i class="fa fa-shopping-cart fa-fw"></i></a>
                            {/if} 
                        
                             
              


                  </div> 
                    </div>
                    <div class="meta-back"></div>
                  </div>
                </div>
                <!-- end: Product --> 
                {if $j%4==0}
                </div>
            </div>
                <!-- end: Items Row --> 
                {/if}
                        {$i=$i+1}
                          {$j=$j+1}
                 {/if}
               {/foreach}


              
            
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
<div class="row clearfix f-space30"></div> 
<!--end Accessories -->
{/if}


{if isset($HOOK_PRODUCT_FOOTER) && $HOOK_PRODUCT_FOOTER}{$HOOK_PRODUCT_FOOTER}{/if}


{if (isset($product) && $product->description) || (isset($features) && $features) || (isset($accessories) && $accessories) || (isset($HOOK_PRODUCT_TAB) && $HOOK_PRODUCT_TAB) || (isset($attachments) && $attachments) || isset($product) && $product->customizable}
{if isset($attachments) && $attachments}
<!--Download -->
<section class="page-product-box">
<h3 class="page-product-heading">{l s='Download'}</h3>
{foreach from=$attachments item=attachment name=attachements}
{if $smarty.foreach.attachements.iteration %3 == 1}<div class="row">{/if}
<div class="col-lg-4">
<h4><a href="{$link->getPageLink('attachment', true, NULL, "id_attachment={$attachment.id_attachment}")|escape:'html':'UTF-8'}">{$attachment.name|escape:'html':'UTF-8'}</a></h4>
<p class="text-muted">{$attachment.description|escape:'html':'UTF-8'}</p>
<a class="btn btn-default btn-block" href="{$link->getPageLink('attachment', true, NULL, "id_attachment={$attachment.id_attachment}")|escape:'html':'UTF-8'}">
<i class="icon-download"></i>
{l s="Download"} ({Tools::formatBytes($attachment.file_size, 2)})
</a>
<hr>
</div>
{if $smarty.foreach.attachements.iteration %3 == 0 || $smarty.foreach.attachements.last}</div>{/if}
{/foreach}
</section>
<!--end Download -->
{/if}
{if isset($product) && $product->customizable}
<!--Customization -->
<section class="page-product-box">
<h3 class="page-product-heading">{l s='Product customization'}</h3>
<!-- Customizable products -->
<form method="post" action="{$customizationFormTarget}" enctype="multipart/form-data" id="customizationForm" class="clearfix">
<p class="infoCustomizable">
{l s='After saving your customized product, remember to add it to your cart.'}
{if $product->uploadable_files}
<br />
{l s='Allowed file formats are: GIF, JPG, PNG'}{/if}
</p>
{if $product->uploadable_files|intval}
<div class="customizableProductsFile">
<h5 class="product-heading-h5">{l s='Pictures'}</h5>
<ul id="uploadable_files" class="clearfix">
{counter start=0 assign='customizationField'}
{foreach from=$customizationFields item='field' name='customizationFields'}
{if $field.type == 0}
<li class="customizationUploadLine{if $field.required} required{/if}">{assign var='key' value='pictures_'|cat:$product->id|cat:'_'|cat:$field.id_customization_field}
{if isset($pictures.$key)}
<div class="customizationUploadBrowse">
<img src="{$pic_dir}{$pictures.$key}_small" alt="" />
<a href="{$link->getProductDeletePictureLink($product, $field.id_customization_field)|escape:'html':'UTF-8'}" title="{l s='Delete'}" >
<img src="{$img_dir}icon/delete.gif" alt="{l s='Delete'}" class="customization_delete_icon" width="11" height="13" />
</a>
</div>
{/if}
<div class="customizationUploadBrowse form-group">
<label class="customizationUploadBrowseDescription">
{if !empty($field.name)}
{$field.name}
{else}
{l s='Please select an image file from your computer'}
{/if}
{if $field.required}<sup>*</sup>{/if}
</label>
<input type="file" name="file{$field.id_customization_field}" id="img{$customizationField}" class="form-control customization_block_input {if isset($pictures.$key)}filled{/if}" />
</div>
</li>
{counter}
{/if}
{/foreach}
</ul>
</div>
{/if}
{if $product->text_fields|intval}
<div class="customizableProductsText">
<h5 class="product-heading-h5">{l s='Text'}</h5>
<ul id="text_fields">
{counter start=0 assign='customizationField'}
{foreach from=$customizationFields item='field' name='customizationFields'}
{if $field.type == 1}
<li class="customizationUploadLine{if $field.required} required{/if}">
<label for ="textField{$customizationField}">
{assign var='key' value='textFields_'|cat:$product->id|cat:'_'|cat:$field.id_customization_field}
{if !empty($field.name)}
{$field.name}
{/if}
{if $field.required}<sup>*</sup>{/if}
</label>
<textarea name="textField{$field.id_customization_field}" class="form-control customization_block_input" id="textField{$customizationField}" rows="3" cols="20">{strip}
{if isset($textFields.$key)}
{$textFields.$key|stripslashes}
{/if}
{/strip}</textarea>
</li>
{counter}
{/if}
{/foreach}
</ul>
</div>
{/if}
<p id="customizedDatas">
<input type="hidden" name="quantityBackup" id="quantityBackup" value="" />
<input type="hidden" name="submitCustomizedDatas" value="1" />
<button class="button btn btn-default button button-small" name="saveCustomization">
<span>{l s='Save'}</span>
</button>
<span id="ajax-loader" class="unvisible">
<img src="{$img_ps_dir}loader.gif" alt="loader" />
</span>
</p>
</form>
<p class="clear required"><sup>*</sup> {l s='required fields'}</p> 
</section>
<!--end Customization -->
{/if}
{/if}
{if isset($packItems) && $packItems|@count > 0}
<section id="blockpack">
<h3 class="page-product-heading">{l s='Pack content'}</h3>
{include file="$tpl_dir./product-list.tpl" products=$packItems}
</section>
{/if}
     
{/if}
{strip}
{if isset($smarty.get.ad) && $smarty.get.ad}
{addJsDefL name=ad}{$base_dir|cat:$smarty.get.ad|escape:'html':'UTF-8'}{/addJsDefL}
{/if}
{if isset($smarty.get.adtoken) && $smarty.get.adtoken}
{addJsDefL name=adtoken}{$smarty.get.adtoken|escape:'html':'UTF-8'}{/addJsDefL}
{/if}
{addJsDef allowBuyWhenOutOfStock=$allow_oosp|boolval}
{addJsDef availableNowValue=$product->available_now|escape:'quotes':'UTF-8'}
{addJsDef availableLaterValue=$product->available_later|escape:'quotes':'UTF-8'}
{addJsDef attribute_anchor_separator=$attribute_anchor_separator|addslashes}
{addJsDef attributesCombinations=$attributesCombinations}
{addJsDef currencySign=$currencySign|html_entity_decode:2:"UTF-8"}
{addJsDef currencyRate=$currencyRate|floatval}
{addJsDef currencyFormat=$currencyFormat|intval}
{addJsDef currencyBlank=$currencyBlank|intval}
{addJsDef currentDate=$smarty.now|date_format:'%Y-%m-%d %H:%M:%S'}
{if isset($combinations) && $combinations}
{addJsDef combinations=$combinations}
{addJsDef combinationsFromController=$combinations}
{addJsDef displayDiscountPrice=$display_discount_price}
{addJsDefL name='upToTxt'}{l s='Up to' js=1}{/addJsDefL}
{/if}
{if isset($combinationImages) && $combinationImages}
{addJsDef combinationImages=$combinationImages}
{/if}
{addJsDef customizationFields=$customizationFields}
{addJsDef default_eco_tax=$product->ecotax|floatval}
{addJsDef displayPrice=$priceDisplay|intval}
{addJsDef ecotaxTax_rate=$ecotaxTax_rate|floatval}
{addJsDef group_reduction=$group_reduction}
{if isset($cover.id_image_only)}
{addJsDef idDefaultImage=$cover.id_image_only|intval}
{else}
{addJsDef idDefaultImage=0}
{/if}
{addJsDef img_ps_dir=$img_ps_dir}
{addJsDef img_prod_dir=$img_prod_dir}
{addJsDef id_product=$product->id|intval}
{addJsDef jqZoomEnabled=$jqZoomEnabled|boolval}
{addJsDef maxQuantityToAllowDisplayOfLastQuantityMessage=$last_qties|intval}
{addJsDef minimalQuantity=$product->minimal_quantity|intval}
{addJsDef noTaxForThisProduct=$no_tax|boolval}
{addJsDef customerGroupWithoutTax=$customer_group_without_tax|boolval}
{addJsDef oosHookJsCodeFunctions=Array()}
{addJsDef productHasAttributes=isset($groups)|boolval}
{addJsDef productPriceTaxExcluded=($product->getPriceWithoutReduct(true)|default:'null' - $product->ecotax)|floatval}
{addJsDef productBasePriceTaxExcluded=($product->base_price - $product->ecotax)|floatval}
{addJsDef productBasePriceTaxExcl=($product->base_price|floatval)}
{addJsDef productReference=$product->reference|escape:'html':'UTF-8'}
{addJsDef productAvailableForOrder=$product->available_for_order|boolval}
{addJsDef productPriceWithoutReduction=$productPriceWithoutReduction|floatval}
{addJsDef productPrice=$productPrice|floatval}
{addJsDef productUnitPriceRatio=$product->unit_price_ratio|floatval}
{addJsDef productShowPrice=(!$PS_CATALOG_MODE && $product->show_price)|boolval}
{addJsDef PS_CATALOG_MODE=$PS_CATALOG_MODE}
{if $product->specificPrice && $product->specificPrice|@count}
{addJsDef product_specific_price=$product->specificPrice}
{else}
{addJsDef product_specific_price=array()}
{/if}
{if $display_qties == 1 && $product->quantity}
{addJsDef quantityAvailable=$product->quantity}
{else}
{addJsDef quantityAvailable=0}
{/if}
{addJsDef quantitiesDisplayAllowed=$display_qties|boolval}
{if $product->specificPrice && $product->specificPrice.reduction && $product->specificPrice.reduction_type == 'percentage'}
{addJsDef reduction_percent=$product->specificPrice.reduction*100|floatval}
{else}
{addJsDef reduction_percent=0}
{/if}
{if $product->specificPrice && $product->specificPrice.reduction && $product->specificPrice.reduction_type == 'amount'}
{addJsDef reduction_price=$product->specificPrice.reduction|floatval}
{else}
{addJsDef reduction_price=0}
{/if}
{if $product->specificPrice && $product->specificPrice.price}
{addJsDef specific_price=$product->specificPrice.price|floatval}
{else}
{addJsDef specific_price=0}
{/if}
{addJsDef specific_currency=($product->specificPrice && $product->specificPrice.id_currency)|boolval} {* TODO: remove if always false *}
{addJsDef stock_management=$stock_management|intval}
{addJsDef taxRate=$tax_rate|floatval}
{addJsDefL name=doesntExist}{l s='This combination does not exist for this product. Please select another combination.' js=1}{/addJsDefL}
{addJsDefL name=doesntExistNoMore}{l s='This product is no longer in stock' js=1}{/addJsDefL}
{addJsDefL name=doesntExistNoMoreBut}{l s='with those attributes but is available with others.' js=1}{/addJsDefL}
{addJsDefL name=fieldRequired}{l s='Please fill in all the required fields before saving your customization.' js=1}{/addJsDefL}
{addJsDefL name=uploading_in_progress}{l s='Uploading in progress, please be patient.' js=1}{/addJsDefL}
{addJsDefL name='product_fileDefaultHtml'}{l s='No file selected' js=1}{/addJsDefL}
{addJsDefL name='product_fileButtonHtml'}{l s='Choose File' js=1}{/addJsDefL}
{/strip}
<div class="container">
   {$themesdev.td_htop_content|html_entity_decode} 
</div> 
<div class="row clearfix f-space30"></div>
{/if}




<script>


(function($) {
  "use strict";
  //Mega Menu
 /*$('#menuMega').menu3d();*/
             
              //Help/Contact Number/Quick Message
$('.quickbox').carousel({
interval: 10000
});


//SPECIALS
$('#productc2').carousel({
interval: 4000
}); 
//RELATED PRODUCTS
$('#productc3').carousel({
interval: 4000
}); 
$('#productc4').carousel({
interval: 4000
}); 
$('#productc5').carousel({
interval: 4000
}); 
})(jQuery);


 </script>
Link to comment
Share on other sites

ok the link must in a module hooked to the "Extra_Left" Hook, it might belong to the "send to a friend" module? you're gonna need to look what modules are hooked to "extra_left" and then modify its template.

This is wonderfull! "Share on facebook" is gone. There was a module inside the hook "displayLeftColumnProduct" that was inserting the link. Now it's unhooked and not showing anymore. Thankssss!!!!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...