X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Socialize design help (https://forum.x-cart.com/showthread.php?t=74151)

traceygl 07-02-2016 01:08 PM

Socialize design help
 
1 Attachment(s)
Hi I have used the sociaize module to add facebook like ect to my product page but for some reason the buttons are showing up twice on the same page( screen shot attached) Can anyone please tell me how to get rid of the bottom set of buttons?:? P.s I am using the busy kitchen templte by the xcart store

cflsystems 07-03-2016 10:32 PM

Re: Socialize design help
 
You have to check the product details template - most likely the call to the Socialized module is inserted twice

aim 07-04-2016 12:44 AM

Re: Socialize design help
 
Quote:

Originally Posted by traceygl
Hi I have used the sociaize module to add facebook like ect to my product page but for some reason the buttons are showing up twice on the same page( screen shot attached) Can anyone please tell me how to get rid of the bottom set of buttons?:? P.s I am using the busy kitchen templte by the xcart store



This skin includes two calls to

the
{include file="modules/Socialize/buttons_row.tpl" detailed=true href="`$current_location`/`$canonical_url`"}

template

The first is from skin/busy-kitchen/customer/main/product.tpl

Code:

    {if $active_modules.Socialize ne ''}
      <div style="padding-bottom: 15px;">
        {include file="modules/Socialize/buttons_row.tpl" detailed=true href="`$current_location`/`$canonical_url`"}
        <div class="clear"></div>
      </div>


The second is from
skin/busy-kitchen/customer/main/product_details.tpl


Code:

    {if $active_modules.Socialize}
    <li>
      {if $config.version eq '4.7.0' or $config.version eq '4.7.1' or $config.version eq '4.7.2'}
        {include file="modules/Socialize/buttons_row.tpl" detailed=true href="`$current_location`/`$canonical_url`"}
      {else}
        {include file="modules/Socialize/buttons_row.tpl" detailed=true}
      {/if}
    </li>
    {/if}


Please contact to
support@thexcartstore.com

Thank you.

traceygl 07-04-2016 01:39 AM

Re: Socialize design help
 
Quote:

Originally Posted by aim
This skin includes two calls to

the
{include file="modules/Socialize/buttons_row.tpl" detailed=true href="`$current_location`/`$canonical_url`"}

template

The first is from skin/busy-kitchen/customer/main/product.tpl

Code:

    {if $active_modules.Socialize ne ''}
      <div style="padding-bottom: 15px;">
        {include file="modules/Socialize/buttons_row.tpl" detailed=true href="`$current_location`/`$canonical_url`"}
        <div class="clear"></div>
      </div>


The second is from
skin/busy-kitchen/customer/main/product_details.tpl


Code:

    {if $active_modules.Socialize}
    <li>
      {if $config.version eq '4.7.0' or $config.version eq '4.7.1' or $config.version eq '4.7.2'}
        {include file="modules/Socialize/buttons_row.tpl" detailed=true href="`$current_location`/`$canonical_url`"}
      {else}
        {include file="modules/Socialize/buttons_row.tpl" detailed=true}
      {/if}
    </li>
    {/if}


Please contact to
support@thexcartstore.com

Thank you.

Thank you so much that has been driving me insane for days :)


All times are GMT -8. The time now is 03:47 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.