View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0006809 | Flow theme | Theme | public | 2018-03-15 21:33 | 2018-03-22 11:21 |
Reporter | marco_steinhaeuser | Assigned To | |||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 2.3.3 | ||||
Fixed in Version | 3.0.0 | ||||
Summary | 0006809: selection lists don't work in checkout (cart) | ||||
Description | If the following option is activated: master settings -> core settings -> perform -> Load Selection Lists in Product Lists selection lists don't work in cart (1st checkout step). Additionally, the values appear in the footer. | ||||
Steps To Reproduce | do as described in description ;) | ||||
Additional Information | This is because JS doesn't work properly here. The following code fixed it: $( '.basketItemDesc .selectorsBox .dropdown-menu li a', $oDetailsWrapper ).click( function( e ) { e.preventDefault(); var $this = $( this ); $this.closest( '.selectbox' ).removeClass( 'open' ); $this.parent().parent().prev().val( $this.attr( 'data-selection-id' ) ); $this.parent().parent().prev().siblings( 'button' ).find( 'span' ).first().text( $this.text() ); } ); | ||||
Tags | Solution Provided | ||||
Attached Files | |||||
|
https://forum.oxid-esales.com/t/auswahllisten-funktionieren-im-warenkorb-nicht/93238 |
|
Pull request merged to master. Will be available with next release. |