This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch release18.12 in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git
The following commit(s) were added to refs/heads/release18.12 by this push: new 485e3b8 Fixed: Empty field is reflecting on Contact list section on Profile Page (OFBIZ-10386) 485e3b8 is described below commit 485e3b89d712879ce3d96b27ae092a4e134b0bf0 Author: Jacques Le Roux <jacques.le.r...@les7arts.com> AuthorDate: Sat May 29 15:47:21 2021 +0200 Fixed: Empty field is reflecting on Contact list section on Profile Page (OFBIZ-10386) Steps to generate: Open https://demo-trunk.ofbiz.apache.org/ecomseo/viewprofile On the profile page, Go down to Contact list Empty fields are displaying before Verify Subscription button Expected: The field should have some specifications to be filled up Thanks: Archana Asthana for report, Devanshu Vyas for suggestion, Praveen Patil for patch and Thirumurugan for confirming --- ecommerce/template/customer/ViewProfile.ftl | 2 +- ecommerce/widget/CommonScreens.xml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ecommerce/template/customer/ViewProfile.ftl b/ecommerce/template/customer/ViewProfile.ftl index e7211f1..e938122 100644 --- a/ecommerce/template/customer/ViewProfile.ftl +++ b/ecommerce/template/customer/ViewProfile.ftl @@ -509,7 +509,7 @@ under the License. <th>${uiLabelMap.CommonThruDate}</th> <th>${uiLabelMap.CommonStatus}</th> <th>${uiLabelMap.CommonEmail}</th> - <th></th> + <th>${uiLabelMap.MarketingContactListOptInVerifyCode}</th> <th></th> </tr> <#list contactListPartyList as contactListParty> diff --git a/ecommerce/widget/CommonScreens.xml b/ecommerce/widget/CommonScreens.xml index ed1dafb..d7557a7 100644 --- a/ecommerce/widget/CommonScreens.xml +++ b/ecommerce/widget/CommonScreens.xml @@ -31,6 +31,7 @@ under the License. <property-map resource="AccountingUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="OrderUiLabels" map-name="uiLabelMap" global="true"/> + <property-map resource="MarketingUiLabels.xml" map-name="uiLabelMap" global="true"/> <set field="MainColumnStyle" value="nocolumns" global="true"/> <script location="component://ecommerce/groovyScripts/EcommerceSetup.groovy"/>