Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls
 

X-Cart Adapt Template

 
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4
 
Thread Tools
  #231  
Old 06-11-2013, 01:38 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart Adapt Template

Try removing or commenting out this line from skin/adapt/customer/main/products_t.tpl
Code:
{include file="modules/On_Sale/on_sale_icon_products_t.tpl" product=$product}
__________________
xcartmods.co.uk
Reply With Quote
  #232  
Old 06-11-2013, 03:42 AM
 
Pitak Pitak is offline
 

Advanced Member
  
Join Date: Jun 2012
Posts: 87
 

Default Re: X-Cart Adapt Template

Quote:
Originally Posted by PhilJ
Try removing or commenting out this line from skin/adapt/customer/main/products_t.tpl
Code:
{include file="modules/On_Sale/on_sale_icon_products_t.tpl" product=$product}

Phil, I can't find the above code in my products_t.tpl file.

Code:
<ul class="row_view"> {foreach from=$products item=product name=products} {if $active_modules.Product_Configurator and $is_pconf and $current_product} {assign var="url" value="product.php?productid=`$product.productid`&amp;pconf=`$current_product.productid`&amp;slot=`$slot`"} {else} {assign var="url" value="product.php?productid=`$product.productid`&amp;cat=`$cat`&amp;page=`$navigation_page`"} {if $featured eq 'Y'} {assign var="url" value=$url|cat:"&amp;featured=Y"} {/if} {/if} <script type="text/javascript"> //<![CDATA[ products_data[{$product.productid}] = {ldelim}{rdelim}; //]]> </script> <li{interline name=products additional_class="product-cell product-cell-buynow"}> <div class="product_block{if $product.have_offers} special{/if}{if $product.adapt_caption ne ""} promo{$product.adapt_caption}{/if}"> {*------------------------------------*} <div class="thumb_column"> {*------------------------------------*} <a href="{$product.alt_url|default:$product.page_url|amp}"{if $config.Adapt.adapt_image_preview eq "Y" && ($product.image_url || $f_product.image_url)} data-tooltip="sticky_{$product.productid}"{/if}>{include file="product_thumbnail.tpl" productid=$product.productid image_x=$product.tmbn_x image_y=$product.tmbn_y product=$product.product tmbn_url=$product.tmbn_url}</a> {if $active_modules.Feature_Comparison} {include file="modules/Feature_Comparison/compare_checkbox.tpl"} {/if} {*------------------------------------*} </div> {*------------------------------------*} {*------------------------------------*} <div class="product_overflow"> {*------------------------------------*} <h2><a href="{$product.alt_url|default:$product.page_url|amp}">{$product.product|amp}</a></h2> <div class="pdetails"> {* <div class="descr pdescr expander">{if $config.Adapt.adapt_addon_glossary eq "Y"}<span class="glossary_highlight">{/if}{$product.fulldescr|default:$product.descr}{if $config.Adapt.adapt_addon_glossary eq "Y"}</span>{/if}</div> *} <div class="descr pdescr">{if $config.Adapt.adapt_addon_glossary eq "Y"}<span class="glossary_highlight">{/if}{$product.descr}{if $config.Adapt.adapt_addon_glossary eq "Y"}</span>{/if}</div> <div class="clearing"></div> {if $config.Appearance.display_productcode_in_list eq "Y"} {if $product.productcode} <div class="sku">{$lng.lbl_sku}: {$product.productcode|escape}</div> {else} <div class="sku">&nbsp;</div> {/if} {/if} {*----- {if $active_modules.Customer_Reviews and $rating_data_exists} {if $product.rating_data} {include file="modules/Customer_Reviews/vote_bar.tpl" rating=$product.rating_data productid=$product.productid} {/if} {/if} -----*} {*-------------------------------------*} {if $product.product_type eq "C"} {include file="customer/buttons/details.tpl" href=$url} {else} <div class="price_block"> {if not $product.appearance.is_auction} {if $product.appearance.has_price} <div class="price-row{if $active_modules.Special_Offers ne "" and $product.use_special_price ne ""} special-price-row{/if}"> <span class="price-value">{currency value=$product.taxed_price}</span> <span class="market-price">{alter_currency value=$product.taxed_price}</span> </div> {if $product.appearance.has_market_price and $product.appearance.market_price_discount gt 0} <div class="market-price"> <span class="market-price-value"><s>{currency value=$product.list_price}</s></span> </div> {/if} {if $product.taxes} <div class="taxes"> {include file="customer/main/taxed_price.tpl" taxes=$product.taxes is_subtax=true} </div> {/if} {/if} {if $active_modules.Special_Offers ne "" and $product.use_special_price ne ""} {include file="modules/Special_Offers/customer/product_special_price.tpl"} {/if} {else} <span class="price">{$lng.lbl_enter_your_price}</span><br /> {$lng.lbl_enter_your_price_note} {/if} </div> <div class="buy_block"> {if $active_modules.Product_Configurator and $is_pconf and $current_product} {include file="modules/Product_Configurator/pconf_add_form.tpl"} {elseif $product.appearance.buy_now_enabled and $product.product_type ne "C"} {if $login ne ""} {include_cache file="customer/main/buy_now.tpl" product=$product cat=$cat featured=$featured is_matrix_view=$is_matrix_view login="1" smarty_get_cat=$smarty.get.cat smarty_get_page=$smarty.get.page smarty_get_quantity=$smarty.get.quantity} {else} {include_cache file="customer/main/buy_now.tpl" product=$product cat=$cat featured=$featured is_matrix_view=$is_matrix_view login="" smarty_get_cat=$smarty.get.cat smarty_get_page=$smarty.get.page smarty_get_quantity=$smarty.get.quantity} {/if} {/if} {/if} </div> {*-------------------------------------*} </div> {*------------------------------------*} </div> <div class="clearing"></div> {*------------------------------------*} </div>{* /product_block *} </li> {*------------------------------------*} {/foreach} </ul> <div class="clearing"></div> {*-------------------------------------*}
Attached Files
File Type: tpl products_t.tpl (5.4 KB, 1 views)
__________________
X-Cart Gold Plus v4.6.6
xcartmods.co.uk reBOOT Template v3.52
Reply With Quote
  #233  
Old 06-15-2013, 08:54 AM
 
gotpump gotpump is offline
 

eXpert
  
Join Date: Aug 2008
Posts: 272
 

Default Re: X-Cart Adapt Template

Does anyone know if upgrading to 4.6 will have a negative effect on the Adapt template?
__________________
X-Cart DB Version: 5
Reply With Quote
  #234  
Old 06-15-2013, 09:06 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart Adapt Template

Adapt doesn't support v4.6.0, but if you're interested in reBOOT I'll give you a $50 discount, PM me for info.
__________________
xcartmods.co.uk
Reply With Quote
  #235  
Old 06-15-2013, 12:38 PM
 
gotpump gotpump is offline
 

eXpert
  
Join Date: Aug 2008
Posts: 272
 

Default Re: X-Cart Adapt Template

Can anyone please tell me how my products ended up doing this?

http://www.havochockey06.ca/wtf.jpg

The price and add to cart has somehow ended up outside the product window. This is only effected when looking at the products in grid view.
__________________
X-Cart DB Version: 5
Reply With Quote
  #236  
Old 06-18-2013, 02:36 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart Adapt Template

Quote:
The price and add to cart has somehow ended up outside the product window. This is only effected when looking at the products in grid view.

Change this setting in the Adapt settings...

Quote:
Grid view column height (pixels)
__________________
xcartmods.co.uk
Reply With Quote
  #237  
Old 06-18-2013, 02:38 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart Adapt Template

FYI, Twitter has discontinued its unauthenticated v1.0 API, so your Adapt Twitter feed will have stopped working.

Info... https://dev.twitter.com/blog/api-v1-is-retired

The fix is available here. Read install.txt.
__________________
xcartmods.co.uk
Reply With Quote
  #238  
Old 06-18-2013, 03:22 AM
 
xtech xtech is offline
 

X-Adept
  
Join Date: Jun 2010
Posts: 605
 

Default Re: X-Cart Adapt Template

Hello Phil,
If I select Select the order in which products should be displayed within a category by date added then when I import product via csv then the product display is not according to by date added it always display A-Z wise?

Why I cannot positioning my product from manufacturer level?

How to positioning according to my way?
__________________
X-cart Platinum
4.6.1
Reboot template
Reply With Quote
  #239  
Old 06-18-2013, 05:59 AM
 
gotpump gotpump is offline
 

eXpert
  
Join Date: Aug 2008
Posts: 272
 

Default Re: X-Cart Adapt Template

Thanks Phil!
__________________
X-Cart DB Version: 5
Reply With Quote
  #240  
Old 06-30-2013, 12:52 AM
 
xtech xtech is offline
 

X-Adept
  
Join Date: Jun 2010
Posts: 605
 

Default Re: X-Cart Adapt Template

Quote:
Originally Posted by PhilJ
FYI, Twitter has discontinued its unauthenticated v1.0 API, so your Adapt Twitter feed will have stopped working.

Info... https://dev.twitter.com/blog/api-v1-is-retired

The fix is available here. Read install.txt.

Hello Phil,
Thanks for your update.But can u please let me know where to upload jquery.tweet.min.js file? What is the path for that?

Please let me know.
__________________
X-cart Platinum
4.6.1
Reboot template
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 09:48 PM.

   

 
X-Cart forums © 2001-2020