View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0003708 | OXID eShop (all versions) | 2.3. Extensions (modules, themes) | public | 2012-03-12 15:06 | 2012-12-10 13:33 |
| Reporter | saulius.stasiukaitis | Assigned To | |||
| Priority | high | Severity | major | Reproducibility | always |
| Status | resolved | Resolution | fixed | ||
| Fixed in Version | 4.6.0_beta3 | ||||
| Summary | 0003708: Not valid link to article from articles list if article has variants and parent is available for purchase. | ||||
| Description | If parameter blVariantParentBuyable is set format additional option in variants list in article in articles list. After press on button more info page with error show up: Error The requested page 'dc581d8a115035cbfb0223c9c736f513/' could not be found. | ||||
| Tags | No tags attached. | ||||
| Theme | Basic | ||||
| Browser | All | ||||
| PHP Version | any | ||||
| Database Version | any | ||||
|
|
JavaScript links to wrong page as option value was article id not link. Fixed in product.tpl From line: <option value="[{$product->getId()}]">[{ $product->oxarticles__oxvarselect->value }] [{oxhasrights ident="SHOWARTICLEPRICE"}] [{ $product->getFPrice() }] [{ $currency->sign|strip_tags}]* [{/oxhasrights}]</option> To line: <option value="[{$product->getLink()}]">[{ $product->oxarticles__oxvarselect->value }] [{oxhasrights ident="SHOWARTICLEPRICE"}] [{ $product->getFPrice() }] [{ $currency->sign|strip_tags}]* [{/oxhasrights}]</option> |