Jump to content
xt:Commerce Community Forum

Lieferzeiten Master ausblenden


Amrit

Recommended Posts

Hallo,

noch ne Masterfrage.

wie kann ich im Master die stockimage ausblenden ohne das die auch im Einzelprodukt ausgeblendet sind.

Die Daten für Stockimage für den Master und Einzelprodukte werden ja aus der protukt.html geholt.

Wenn ich die in der product.html auskommentiere, werden die weder im Einzelprodukt noch im master angezeigt.

Für die Slaves werden die stockimage ja im Plugin reingeschrieben.

Gibts da nicht ne if anweisung ??

Grüße

Link to comment
Share on other sites

  • 1 month later...

Hallo,

in die product.html

das ganze sieht so aus:


                        [COLOR=DarkRed]{if $products_master_flag != 1} [/COLOR]    

                            {if $shipping_status || $stock_image} 

                            <div class="shipping shipping-{$products_shippingtime}">

                                {if $shipping_status}<span class="shippingtime">{txt key=TEXT_SHIPPING_STATUS} {$shipping_status}</span> |{/if}

                                {if $stock_image}<span class="stockimage">{img img=$stock_image.image type=t_img_stockrules alt=$stock_image.name title=$stock_image.name}</span>{/if}

                            </div>

                            {/if}

                       [COLOR=DarkRed] {/if}[/COLOR]


Grüße

Link to comment
Share on other sites

Hallo,

in die product.html

das ganze sieht so aus:


                        [COLOR=DarkRed]{if $products_master_flag != 1} [/COLOR]    

                            {if $shipping_status || $stock_image} 

                            <div class="shipping shipping-{$products_shippingtime}">

                                {if $shipping_status}<span class="shippingtime">{txt key=TEXT_SHIPPING_STATUS} {$shipping_status}</span> |{/if}

                                {if $stock_image}<span class="stockimage">{img img=$stock_image.image type=t_img_stockrules alt=$stock_image.name title=$stock_image.name}</span>{/if}

                            </div>

                            {/if}

                       [COLOR=DarkRed] {/if}[/COLOR]


Grüße

Vielen Dank aber ich bin irgendwie zu "dumm" diese Stelle in der product.html zu finden :-(

Link to comment
Share on other sites

such in der product.html nach

$shipping_status

da gibt es nur 2 Einträge, schau Dir den Code in meinem Beispiel an

dann den Rot Matkierten Code so Eintragen.

Dann kann auch nix schiefgehen :D

Grüße

Sorry, aber das funktioniert bei mir irgendwie nicht.....

a) habe ich mit "shipping_status" nur diesen Eintrag in der product.html:

{if $shipping_status}

<p class="product-shipping-status">{txt key=TEXT_SHIPPING_STATUS} {$shipping_status}</p>

{/if}

B) wenn ich diesen durch Deinen Code ersetze, werden im Slave-Artikel ZWEI Lagerampeln ausgegeben

Ich will doch nur, dass beim Master-Artikel die Lagerampel nicht angezeigt wird!

Link to comment
Share on other sites

Sorry,

ich habe ein anderes Template,

im xt_grid steht, ca. bei Zeile 45


  {if $stock_image}

   <p class="product-stock-image">{img img=$stock_image.image type=t_img_stockrules}</p>

  <p class="product-stock-name">{$stock_image.name}</p>

   {/if}


Sorry

Hi,

ja, bei Zeile 45 steht der von Dir genannte Code.....wo muss ich nun den Code "{if $products_master_flag != 1} zeige stockimage {/if}" zum ausblenden der Lagerampel im Master-Artikel einfügen? Vor oder nach dem "{if $stock_image} ??

Besten Dank und Grüße

Link to comment
Share on other sites

Ich will doch nur, dass beim Master-Artikel die Lagerampel nicht angezeigt wird!

sag das doch gleich..:P

in Dein Template > Plugins > xt_master_slave > product_listing > ms_product_list_default.html

da nach


   {*

{if $module_data.stock_image}

                                            <p class="stockimage">{img img=$module_data.stock_image.image type=t_img_stockrules alt=$module_data.stock_image.name}</p>

                                            <p class="stockimagetext">{$module_data.stock_image.name}</p>}

                                        *}

suchen und auskommentieren.

Grüße

Link to comment
Share on other sites

so


[COLOR=DarkRed]{if $products_master_flag != 1}  [/COLOR]   

      {if $stock_image}

      <p class="product-stock-image">{img img=$stock_image.image type=t_img_stockrules}</p>

        <p class="product-stock-name">{$stock_image.name}</p>

            {/if}

     [COLOR=DarkRed]   {/if}    [/COLOR]




Gruß

Link to comment
Share on other sites

sag das doch gleich..:P

in Dein Template > Plugins > xt_master_slave > product_listing > ms_product_list_default.html

da nach


   {*

{if $module_data.stock_image}

                                            <p class="stockimage">{img img=$module_data.stock_image.image type=t_img_stockrules alt=$module_data.stock_image.name}</p>

                                            <p class="stockimagetext">{$module_data.stock_image.name}</p>}

                                        *}

suchen und auskommentieren.

Grüße

Hallo Amrit,

auch auf die Gefahr hin, dass ich nerve aber diesen Code gibt es in meiner "ms_product_list_default.html" gar nicht :-(

Grüße

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...