dwatte Posted October 9, 2009 Share Posted October 9, 2009 Hej alla! Jag har ett gäng attributes på varje produkt som ändrar pris efter val, och det pris som syns innan man gjort något val är ju det förvalda attributet, så även på framsidan vilket är lite missvisande eftersom kunden redan här kan trycka på köpknappen utan att ha sett alla val (storlek och andra tillval). Finns det någon möjlighet att ändra prisprefixet till exempelvis "från....kr", eller att köpknappen avvaktiveras på framsidan, eller har någon ett annat förslag. Min shop är den senaste versionen, 1.2.4.Tacksam för svar Link to comment Share on other sites More sharing options...
briq Posted October 9, 2009 Share Posted October 9, 2009 Hej, jag modifierade filen "/modules/homefeatured/homefeatured.tpl" så att det står "Från ... kr" samtatt köp-knappen är borta: <!-- MODULE Home Featured Products --> {l s='featured products' mod='homefeatured'} {if isset($products) AND $products} {assign var='liHeight' value=360} {assign var='nbItemsPerLine' value=4} {assign var='nbLi' value=$products|@count} {assign var='nbLines' value=$nbLi/$nbItemsPerLine|ceil} {assign var='ulHeight' value=$nbLines*$liHeight} {foreach from=$products item=product name=homeFeaturedProducts} {$product.name|truncate:27:'...'|escape:'htmlall':'UTF-8'} {$product.description_short|strip_tags|truncate:130:'...'} getImageLink($product.link_rewrite, $product.id_image, 'home')}" height="{$homeSize.height}" width="{$homeSize.width}" alt="{$product.legend|escape:htmlall:'UTF-8'}" /> {if !$priceDisplay || $priceDisplay == 2} {l s='From' mod='homefeatured'} {convertPrice price=$product.price}{if $priceDisplay == 2} {l s='+Tx' mod='homefeatured'}{/if}{/if} {if $priceDisplay} {convertPrice price=$product.price_tax_exc}{if $priceDisplay == 2} {l s='-Tx' mod='homefeatured'}{/if}{/if} {l s='View' mod='homefeatured'} {/foreach} {else} {l s='No featured products' mod='homefeatured'} {/if} <!-- /MODULE Home Featured Products --> Link to comment Share on other sites More sharing options...
dwatte Posted October 9, 2009 Author Share Posted October 9, 2009 Toppen. Precis vad jag behöver. Enda kruxet är att bilderna försvann från framsidan fast länkarna är kvar, som text" getImageLink($product.link_rewrite, $product.id_image, 'home')}" height="129" width="129" alt="Flightcase PPA7-svart" />". Är det något tecken som försvunnit.DWLÖST! Jag klistrade in bildlänksnutten från originalfilen, så nu funkar allt som det skaJättetack för hjälpenDW Link to comment Share on other sites More sharing options...
dwatte Posted October 9, 2009 Author Share Posted October 9, 2009 Kan man göra likadant på kategorisidan? :-) Link to comment Share on other sites More sharing options...
briq Posted October 9, 2009 Share Posted October 9, 2009 Här är koden för "/themes/ditt_tema/product-list.tpl" det är samma fil som används för att visa resultat när man söker osv. >{if isset($products)} <!-- Products list --> </pre> <ul> {foreach from=$products item=product name=products} {if ($product.allow_oosp OR $product.quantity > 0)}{l s='Available'}{else}{l s='Out of stock'}{/if} getImageLink($product.link_rewrite, $product.id_image, 'home')}" alt="{$product.legend|escape:'htmlall':'UTF-8'}" /> {if $product.new == 1}{l s='new'}{/if}{$product.name|truncate:35:'...'|escape:'htmlall':'UTF-8'} {$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'} {if $product.on_sale} {l s='On sale!'} {elseif ($product.reduction_price != 0 || $product.reduction_percent != 0) && ($product.reduction_from == $product.reduction_to OR ($smarty.now|date_format:'%Y-%m-%d' <= $product.reduction_to && $smarty.now|date_format:'%Y-%m-%d' >= $product.reduction_from))} {l s='Price lowered!'} {/if} {if !$priceDisplay || $priceDisplay == 2}{l s='From'} {convertPrice price=$product.price}{if $priceDisplay == 2} {l s='+Tx'}{/if}{/if} {if $priceDisplay}{convertPrice price=$product.price_tax_exc}{if $priceDisplay == 2} {l s='-Tx'}{/if}{/if} {l s='View'} {/foreach} </ul> <br> <!-- /Products list --><br>{/if Link to comment Share on other sites More sharing options...
dwatte Posted October 9, 2009 Author Share Posted October 9, 2009 Du rockar!!Jag är säker på att fler kommer att ha nytta av dettaTack igen Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now