Jump to content

yasic

Members
  • Posts

    14
  • Joined

  • Last visited

Profile Information

  • Activity
    Agency

yasic's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Brilliant, works prefectly, thanks for your help (should you ever need some graphics help, let me know!)
  2. I have made some changes to the names of conditions so that instead of chosing new, used or refurbished in the backend it's now an option to chose the delivery time, all works well in the product.tpl but in product-list.tpl every product shows as refurbished, here's the code that works in product but not on the list: {if $product->condition == 'new'} <span class="condition_new">{l s='Delivery in 48hrs'}</span> {elseif $product->condition == 'used'} <span class="condition_used">{l s='Delivery in 7 working days'}</span> {else} <span class="condition_refurbished">{l s='refurbished'}</span> {/if} can somebody tell me what i'm doing wrong?
  3. this makes things clearer, but i tried with the shipping costs first, i added them to the variables and then to the mail template, but now it always shows shipping costs at 0€ and the total_products is now without taxes. what is it that i'm missing?
  4. hi sebkos, thanks for your help, the problem is i haven't found a site yet where i can see how to write new variables, could you give me an example or a link? thanks
  5. Sorry for reposting again, but my problem is really more complicated than i thought, i need the total price without taxes, the taxes total as well as the price with taxes only for one language which is why i don't know how to change the mail settings in php. anyone?
  6. Is this that complicated? If someone can give me a link with some further reading, i'd be very thankful
  7. Hi, i'm starting to get crazy here, I want to change the order confirmation mail and i want to include: Total products price without taxes Discounts Delivery without taxes All taxes combined (products + delivery) Total price with tax I can't find the hooks to use in the mail template, the only one that works correctly is total_paid Can someone tell me which hooks to use to get the list above? Thanks
  8. You helped me a lot already, im relatively new to php and i dont know how to correctly write these if statements. could you show me an example please? one where i could see how the condition is used (as in "if condition=used", the style and all that i could figure out but the if part is more difficult to me) thanks please pm me a paypal link so that i can tip you for your help.
  9. wow that was easy. thanks but the tricky part is how to i get to 1. change the condition names (i tried in translations, doesnt work) and 2. how to i get it to display in 3 different colors (if i knew where to change the condition name, im sure i could add style into that code) thanks again
  10. thanks again but i don't know how i would write the code for product.tpl to display the condition as well. could you give me an example please?
  11. Hi thanks for that. Could you tell me how i would use this to insert on product.tpl to show the actual condition? used, new, refurbished?
  12. Hi all, i'd like to always have the product condition. While 'new' is displayed, also as an option in preferences, but i want to also show if the product is 'used' or 'refurbished' in product list the part where i can change the label should be this: {if isset($product.new) && $product.new == 1}<span class="new">{l s='New'}</span>{/if} i wonder how to get for example a product.used to work thanks in advance for the help
  13. Hi, I would like to have a radio button where I can chose whether a product is in stock or not. My problem is that in stock products are only supposed to give the message: Delivery in 48hrs and out-of-stock products should give the message: Delivery in 7 working days. Right now i was trying to change the text for the "in stock" and "out of stock" message which works without a problem but the problem is that when i "Allow ordering out-of-stock product" the "out of stock" message isn't displayed anymore. So what i think i need is one of these: - Possibility to show "out of stock" message when "Allow ordering out-of-stock product" is active or - A module where i can chose whether product is in stock or not, insted of numeral stock gestion. Another solution i thought of is to change the condition names and use that as "in stock/out of stock" system. I would just need to include the message of the condition into product.tpl etc
×
×
  • Create New...