
explodedk
Members-
Posts
61 -
Joined
-
Last visited
Everything posted by explodedk
-
HI there. when i enable PayPal checkout in the Quickpay (Danish gateway) i got no problems ordering stuff. but when it returns from the paypal redirect where i've entered my paypal details, i am getting this error Warning: File /home/telecons/public_html/easybuy.dk/order.php is deprecated in /home/telecons/public_html/easybuy.dk/classes/Tools.php on line 2147 Warning: Cannot modify header information - headers already sent by (output started at /home/telecons/public_html/easybuy.dk/classes/Tools.php:2147) in /home/telecons/public_html/easybuy.dk/classes/Tools.php on line 105 Warning: Cannot modify header information - headers already sent by (output started at /home/telecons/public_html/easybuy.dk/classes/Tools.php:2147) in /home/telecons/public_html/easybuy.dk/classes/Tools.php on line 108 If I enable the default paypal payment there is no problems but i would like to keep it all in one gateway - any idea ? running 1.5.6.0 with default template
-
I can't seem to get the manufacturer_name to work in the shopping cart. i've found where i want it, right under this line of code <p class="product-name"><a href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category, null, null, $product.id_shop, $product.id_product_attribute)|escape:'html':'UTF-8'}">{$product.name|escape:'html':'UTF-8'}</a></p> when i try to add this: <p class="product-name"><a href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category, null, null, $product.id_shop, $product.id_product_attribute)|escape:'html':'UTF-8'}">{$product.manufacturer_name|escape:'html':'UTF-8'}</a></p> it fails
-
Gender symbol in product-list-view
explodedk replied to explodedk's topic in Addons, modules and themes developers
that's way out of my league -
Gender symbol in product-list-view
explodedk replied to explodedk's topic in Addons, modules and themes developers
vekia ? -
Gender symbol in product-list-view
explodedk replied to explodedk's topic in Addons, modules and themes developers
Yes. Everything is in for her/eau de parfume. And for him/eau de toilette and so on... -
Gender symbol in product-list-view
explodedk posted a topic in Addons, modules and themes developers
This is a really long shot - but is it possible to script your way out of this suggestion : on my page - http://billigedufte.dk/13_calvin-klein i want to show a gender icon next to the reference field in the product-list view. i've made a mockup of what i want: I have a feature on each product called Køn: Mænd or Kvinder (gender: men or women) and if feature:Køn == Kvinder then it should show the female gender icon, and if feature is mænd it should show the male gender icon... Im not sure if this is even possible -
always showing double line in functions
explodedk replied to explodedk's topic in Addons, modules and themes developers
Update in this case. The error is only when the product is NEW . if i disable "NEW" it doesn't show twice any idea? -
always showing double line in functions
explodedk replied to explodedk's topic in Addons, modules and themes developers
any idea what i could do -
always showing double line in functions
explodedk replied to explodedk's topic in Addons, modules and themes developers
No I corrected that part. It's not showing on my 3 first products but is showing on all new items I make... -
always showing double line in functions
explodedk replied to explodedk's topic in Addons, modules and themes developers
it's not showing on all products. only on new products i add . no mather what category or feature it's added with/in -
always showing double line in functions
explodedk replied to explodedk's topic in Addons, modules and themes developers
the output is : Array ( [0] => Array ( [name] => Størrelse [value] => 90ml [id_feature] => 1 ) [1] => Array ( [name] => Mærke [value] => Gucci [id_feature] => 2 ) [2] => Array ( [name] => Kollektion [value] => Guilty [id_feature] => 3 ) [3] => Array ( [name] => Produkt Kategori [value] => Eau De Toilette [id_feature] => 4 ) [4] => Array ( [name] => Køn [value] => Mænd [id_feature] => 5 ) [5] => Array ( [id_product] => 4 [name] => Køn [value] => Mænd [id_feature] => 5 ) ) 1 -
always showing double line in functions
explodedk replied to explodedk's topic in Addons, modules and themes developers
any idea Vekia (or others) -
always showing double line in functions
explodedk replied to explodedk's topic in Addons, modules and themes developers
yes - it is always the last element. if i only add 1 function, that one is dublicated. if i add another that one is. if i add 2+ the last one, and only the last one is getting dublicated. -
i don't get it . if i copy your line it works like it should - but di u change the url it's not working.. changed from <a href="http://localhost/1606a/modules/themeconfigurator/img/banner-img6.jpg" class="iframe">TEST</a> to <a href="manufacturers" class="iframe">TEST</a> but then it's not working...
-
i got a problem on my webshop . when i add a function to a product it shows the function twice. if i add more than 1 function it only shows the last function twice.. see it here : http://billigedufte.dk/eau-de-toilette/3-versace-bright-crystal-30ml.html i've tried to illustrate it on the attachment here : and the code from the product.tpl {if isset($features) && $features} <!-- Data sheet --> <section class="page-product-box"> <h3 class="page-product-heading">{l s='Information om produktet'}</h3> <table class="table-data-sheet"> {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> </section> <!--end Data sheet --> {/if}