implement custom checkout address UI with delivery/pickup selection and Uber fee integration

This commit is contained in:
Alaguraj0361 2026-04-06 22:39:36 +05:30
parent ae1980ee9d
commit bdb92a60ab

View File

@ -34,12 +34,14 @@
<attribute name="style">display: none !important;</attribute>
</xpath>
<!-- NEW: Hide 'Company Name' and 'VAT' fields -->
<!-- Hide 'Company Name' and 'VAT' fields using robust label selectors -->
<xpath expr="//div[label[@for='company_name']]" position="attributes">
<attribute name="class" add="d-none" separator=" "/>
<attribute name="style">display: none !important;</attribute>
</xpath>
<xpath expr="//div[hasclass('div_vat')]" position="attributes">
<xpath expr="//div[label[@for='vat']]" position="attributes">
<attribute name="class" add="d-none" separator=" "/>
<attribute name="style">display: none !important;</attribute>
</xpath>
<!-- Inject Selection Cards -->