Jump to content

thn_

Members
  • Posts

    35
  • Joined

  • Last visited

Profile Information

  • First Name
    Daniel
  • Last Name
    Sieprawski

Recent Profile Visitors

338 profile views

thn_'s Achievements

Explorer

Explorer (4/14)

  • Collaborator Rare
  • First Post Rare
  • Conversation Starter Rare
  • Week One Done Rare
  • One Month Later Rare

Recent Badges

0

Reputation

  1. Video of what is happening in category page: Video showing what is happening on product page: I have PS 1.7.8.5, theme Warehouse.
  2. Pobrałem i zainstalowałem moduł, pozyskałem API jako Translation API Agent, skopiowałem klucz do konfiguracji modułu, próbując tłumaczyć cokolwiek moduł wykasowuje treść z języka docelowego. Wybrałem dobre API? Co może powodować takie zachowanie? EDIT: sprawdziłem też klucz API jako Translation API Administrator, to samo, zamiast tłumaczyć moduł czyści wszystkie pola. PS 1.7.8.5
  3. I know there is an option to show quantity on product page in details section, but it is way to hidden, I want to show available quantity on product list and product page next to add to cart button. I've copied {block name='product_quantities'} {if $product.show_quantities} <div class="product-quantities"> <label class="label">{l s='In stock' d='Shop.Theme.Catalog'}</label> <span data-stock="{$product.quantity}" data-allow-oosp="{$product.allow_oosp}">{$product.quantity} {$product.quantity_label}</span> </div> {/if} {/block} to product-list.tpl and it works, shows available quantity, but not like it should. On category page it shows for example available 100 pieces, when I'll add 10 to cart it changes from "available 100 pieces" to "available 10 pieces", if i'll add 10 more pieces then it turns into "available 20 pieces" etc. On the other hand I've added this code to product-prices.tpl right under reference, and it shows "available 100 pieces", but when I'll add 10 to cart it still says "available 100 pieces" when same piece of code in product details works like it should (after adding 10 to cart shows 90 available). Where I'm making mistake?
  4. Szukam sposobu, aby wyświetlać ilość produktu koło symbolu/indeksu oraz na liście produktów. Przekleiłem: {block name='product_quantities'} {if $product.show_quantities} <div class="product-quantities"> <label class="label">{l s='In stock' d='Shop.Theme.Catalog'}</label> <span data-stock="{$product.quantity}" data-allow-oosp="{$product.allow_oosp}">{$product.quantity} {$product.quantity_label}</span> </div> {/if} {/block} w odpowiednie miejsce i super, działa, ale po dodaniu określonej ilości do koszyka, zamiast dostępnej ilości na magazynie pojawia się ilość w koszyku, po odświeżeniu strony znowu jest ok, ale ponownie po dodaniu do koszyka zmienia się na ilość w koszyku. Jest jakiś sposób, aby temu zaradzić?
  5. to be specific - it only works when discount is set for all products, not only for certain categories
  6. Nie można po prostu wyłączyć dla mobilek z poziomu menadżera modułów?
  7. Stawiam platformę B2B dla naszego sklepu internetowego opartą o multistore i rabaty przypisane do grup klientów. Chciałbym pokazać klientom ile płacą za towar, ile mają rabatu, jaka jest cena przed rabatem i ile zaoszczędzili, póki co dzięki tematom z forum udało mi się to osiągnąć na karcie produktu, w pliku product-prices.tpl wystarczyło wkleić kod: {if $product.customer_group_discount > 0} <p>Twój rabat wynosi <strong>{$product.customer_group_discount*100}%</strong><br> Cena przed rabatem: <strong>{( $product.price_amount/(1-$product.customer_group_discount) )|round:2} zł</strong><br> Kwota rabatu: <strong>{( $product.price_amount/(1-$product.customer_group_discount)*$product.customer_group_discount )|round:2} zł</strong></p> {/if} i działa bardzo fajnie, ale niestety nie jestem w stanie osiągnąć tego samego na liście produktów/na stronie kategorii, ponieważ zmienna $product.customer_group_discount nie jest tam obsługiwana. Macie jakiś pomysł co zrobić w takiej sytuacji?
  8. I'm setting up B2B platform for our shop on PS 1.7, it's basically multistore, but with different prices and discounts for client groups. I've managed to show % of group discount, price without price discount, and amount of discount in product details by adding code: {if $product.customer_group_discount > 0} <p>Your discount <strong>{$product.customer_group_discount*100}%</strong><br> Price before discount: <strong>{( $product.price_amount/(1-$product.customer_group_discount) )|round:2} $</strong><br> Discount amount: <strong>{( $product.price_amount/(1-$product.customer_group_discount)*$product.customer_group_discount )|round:2} $</strong></p> {/if} But I can't figure it out how to do the same on product list/categories, it seems that $product.customer_group_discount doesn't work there. Is there any way to make it work?
  9. solution works perfectly in product details, but how to achieve same thing on product list (eg categories)?
  10. I'll bump this one up, is there any way to make 2 different signup forms for multistore B2C and B2B?
  11. I've accidently stumbled upon this module while looking for better review module than we are using now and damn, as for free module it's awesome - great looking, well made with a lot of options, I would like all modules to be like Revws! I've pitched my boss idea to go premium on this one and we'll probably will. Meantime I have little problem - I can't translate "Quality" as shown on screenshots, can you help me with this one?
  12. so it can be modal video player hosted on our site, doesn't matter, is there a module that can do that? maybe it doesn't need module, maybe there is even easier way?
×
×
  • Create New...