View Issue Details

IDProjectCategoryView StatusLast Update
0005458OXID eShop (all versions)1.05. Userspublic2014-04-01 13:49
Reporterramunas.skarbalius 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version4.7.5 / 5.0.5 
Target Version4.9.0_5.2.0_beta1Fixed in Version4.9.0_5.2.0_beta1 
Summary0005458: error messages are not showed after save and shipping address not saved too
Descriptionin account page "BILLING AND SHIPPING SETTINGS" when comes some error messages like information are not valid or not added then any errors are not showed
Steps To Reproduce1. Create account without phone number.
2. Make phone number required (Admin -> Core settings -> Settings -> Other settings)
3. Open account page.
4. Edit shipping information. Billing information is not visible so it is not clear, that phone number for billing information is required.
5. Save changed shipping information.

in Shop 5.0 page reloads without error message. Old shipping information is visible. Edited information is lost. Not clear what's happened.
in Shop 5.1 page reloads with error message. Billing information is visible. It's clear that phone number is missing. Edited information is lost.
TagsNo tags attached.
ThemeAll
BrowserAll
PHP Versionany
Database Versionany

Activities

saulius.stasiukaitis

2014-04-01 13:48

reporter   ~0009796

Billing address form becomes visible if some required field is missing:

[{oxscript add="
    $( document ).ready(function() {
        oForm = $('#addressForm');
        $( '.js-oxValidate_notEmpty', oForm).each( function(index) {
            if (this.name != 'user_password' && this.value == '') {
                $('#userChangeAddress').click();
            }
        } );
    });
"}]