View Issue Details

IDProjectCategoryView StatusLast Update
0001116OXID eShop (all versions)4. ------ eShop Core -------public2012-12-10 13:42
Reportersimply because Assigned To 
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
Product Version4.1.3 revision 19918 
Fixed in Version4.1.4 revision 21266 
Summary0001116: Back to main product not availaible
DescriptionThe link "back to main product" is not available as soon as you have only one variant for a product because other variants are sold out and not buyable.

If customer is adding such a variant to the basket, changing to basket and want to change from basket to this product, he can not change to the main product.

Replicable in Oxid-Demoshop.
TagsNo tags attached.
Theme
BrowserAll
PHP Version5.2.6
Database Version5.0.33

Activities

arvydas_vapsva

2009-07-23 15:58

reporter   ~0001271

Next release will only contain php fix, next major release additionally will contain template details.tpl fix:

    [{ if $oView->drawParentUrl()}]
      <b id="test_variantHeader1">[{ oxmultilang ident="INC_PRODUCT_VARIANTS_OTHERVARIANTSOF" }] [{ $oView->getParentName() }]
      

      <div class="txtseparator inbox"></div>
    [{/if}]

should be changed to:

    [{ if $oView->drawParentUrl() && count( $oView->getVariantList() ) }]
      <b id="test_variantHeader1">[{ oxmultilang ident="INC_PRODUCT_VARIANTS_OTHERVARIANTSOF" }] [{ $oView->getParentName() }]
      

      <div class="txtseparator inbox"></div>
    [{/if}]