Ausverkaufte Produkte sollen oft zwar noch sichtbar sein, aber nicht mehr bestellbar.
In Gambio GX 2.2 lässt sich der Warenkorbbutton in der Listenansicht einfach ausblenden.
Dazu muss die Datei product_listing_v1.html um 2 Zeilen ergänzt werden (hier fett markiert):
{if $module_data.GM_PRODUCTS_STOCK > 0}
<div style=“width: auto; text-align: right;“>
<div><span class=“gm_checker_error“ id=“gm_checker_error_{$module_data.PRODUCTS_ID}“></span></div>
{if $module_data.GM_PRODUCTS_BUTTON_BUY_NOW && $module_data.GM_PRODUCTS_QTY}
<a href=“{$module_data.GM_PRODUCTS_BUTTON_BUY_NOW_URL}“ class=“button_green button_set action_add_to_cart“{if $module_data.PRODUCTS_NAME != “} title=“{$module_data.PRODUCTS_NAME|replace:'“‚:’"‘} {$txt.text_buy}“{/if}>
<span class=“button-outer“>
<span class=“button-inner“>{$button.add_to_cart}</span>
</span>
</a>
{if $module_data.QTY_DATA.VALUE != 1 || (($GM_SHOW_QTY == ‚1‘ && $module_data.GM_ATTRIBUTES) || ($GM_SHOW_QTY == ‚1‘ && $module_data.GM_HAS_ATTRIBUTES == ‚0‘))}
<span class=“quantity_container“>
{if $module_data.UNIT}<label for=“{$module_data.QTY_DATA.ID}“ class=“products_quantity_unit“>{$module_data.UNIT}</label>{/if}
<input type=“{$module_data.QTY_DATA.TYPE}“ name=“{$module_data.QTY_DATA.NAME}“ id=“{$module_data.QTY_DATA.ID}“ class=“article-count-input numeric input-text products_quantity {$module_data.QTY_DATA.CLASS}“ value=“{$module_data.QTY_DATA.VALUE}“ />
</span>
{else}
<input type=“hidden“ name=“{$HIDDEN_QTY_NAME}“ value=“{$module_data.QTY_DATA.VALUE}“ />
{/if}
<input type=“hidden“ class=“gm_products_id“ name=“products_id“ value=“{$module_data.PRODUCTS_ID}“ />
{/if}
</div>
{/if}