Jump to content
  • 0

Warenkorb "Auf Lager" ausblenden


ZoXx

Question

Hey Leute,

ich würde gerne im Warenkorb das "Auf Lager" ausblenden.

Theoretisch sollte das ganze ja hier drüber geregelt sein:

shopping-cart-product-line.tpl
 

{if $PS_STOCK_MANAGEMENT}
		<td class="cart_avail"><span class="label{if $product.quantity_available <= 0 && isset($product.allow_oosp) && !$product.allow_oosp} label-danger{elseif $product.quantity_available <= 0} label-warning{else} label-success{/if}">{if $product.quantity_available <= 0}{if isset($product.allow_oosp) && $product.allow_oosp}{if isset($product.available_later) && $product.available_later}{$product.available_later}{else}{l s='In Stock'}{/if}{else}{l s='Out of stock'}{/if}{else}{if isset($product.available_now) && $product.available_now}{$product.available_now}{else}{l s='In Stock'}{/if}{/if}</span>{if !$product.is_virtual}{hook h="displayProductDeliveryTime" product=$product}{/if}</td>
	{/if}

geändert zu:
 

{if $PS_STOCK_MANAGEMENT}
		<td class="cart_avail">{hook h="displayProductDeliveryTime" product=$product}</td>
	{/if}

Smarty etc. natürlich alles gemacht.

Leider wird nichts geändert.

Kann mir wer helfen?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Hi,

 

das sollte genau so funktionieren wie Du es gemacht hast und wenn Du "Templates nach Datei-Änderungen neu kompilieren" aktiviert hast würde ich mal die kompilierten files im cache Verzeichnis durchsuchen ob die Änderungen auch übernommen wurden.

 

Ansonsten gäbe es natürlich auch noch die Möglichkeit die Spalte einfach über css auszublenden. Im Bsp. beim default theme mit original table ungefähr so

#order-detail-content th:nth-child(3),
#order-detail-content tbody td:nth-child(3) {
    display:none
}

Ein paar User schließt damit halt aus da nth-child natürlich bei ältere Browser nicht funkt. aber die sind mittlerweile eher gering.

 

Gruß Tom

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...