I just started with developing in Magento 2. I'm trying to write a checkout module that adds extra functionality to the default checkout. In my module I change address.html which works fine but i'm testing it in a different project now which also has another module that changes address.html in a different way.
How do I get them working together? Because some projects might have modules that also edit the same files.
I hope this makes sense.
My module moves the billing address from billing to the shipping step. The module in the other project changes the shipping method function to add a delivery calendar.
My address.html
<li id="shipping" class="checkout-shipping-address" data-bind="fadeVisible: visible()"> <div class="step-title" data-bind="i18n: 'Shipping Address'" data-role="title"></div> <div id="checkout-step-shipping" class="step-content" data-role="content"> <!-- ko if: (!quoteIsVirtual) --> <!-- ko foreach: getRegion('customer-email') --> <!-- ko template: getTemplate() --><!-- /ko --> <!--/ko--> <!--/ko--> <!-- ko foreach: getRegion('address-list') --> <!-- ko template: getTemplate() --><!-- /ko --> <!--/ko--> <!-- ko foreach: getRegion('address-list-additional-addresses') --> <!-- ko template: getTemplate() --><!-- /ko --> <!--/ko--> <!-- Address form pop up --> <!-- ko if: (!isFormInline) --> <button type="button" data-bind="click: showFormPopUp, visible: !isNewAddressAdded()" class="action action-show-popup"> <span data-bind="i18n: 'New Address'"></span></button> <div id="opc-new-shipping-address" data-bind="visible: isFormPopUpVisible()"> <!-- ko template: 'Magento_Checkout/shipping-address/form' --><!-- /ko --> </div> <!-- /ko --> <!-- ko foreach: getRegion('before-form') --> <!-- ko template: getTemplate() --><!-- /ko --> <!--/ko--> <!-- Inline address form --> <!-- ko if: (isFormInline) --> <!-- ko template: 'Magento_Checkout/shipping-address/form' --><!-- /ko --> <!-- /ko --> <!-- Inline Billing address form --> <!-- ko foreach: getRegion('billing-address') --> <!-- ko template: getTemplate() --><!-- /ko --> <!-- /ko --> </div> </li> <!--Shipping method template--> <li id="opc-shipping_method" class="checkout-shipping-method" data-bind="fadeVisible: visible(), blockLoader: isLoading" role="presentation"> <div class="checkout-shipping-method"> <div class="step-title" data-bind="i18n: 'Shipping Methods'" data-role="title"></div> <!-- ko foreach: getRegion('before-shipping-method-form') --> <!-- ko template: getTemplate() --><!-- /ko --> <!-- /ko --> <div id="checkout-step-shipping_method" class="step-content" data-role="content" role="tabpanel" aria-hidden="false"> <!-- ko if: rates().length --> <form class="form methods-shipping" id="co-shipping-method-form" data-bind="submit: setShippingInformation" novalidate="novalidate"> <div id="checkout-shipping-method-load"> <table class="table-checkout-shipping-method"> <thead> <tr class="row"> <th class="col col-method" data-bind="i18n: 'Select Method'"></th> <th class="col col-price" data-bind="i18n: 'Price'"></th> <th class="col col-method" data-bind="i18n: 'Method Title'"></th> <th class="col col-carrier" data-bind="i18n: 'Carrier Title'"></th> </tr> </thead> <tbody> <!--ko foreach: { data: rates(), as: 'method'}--> <tr class="row" data-bind="click: $parent.selectShippingMethod"> <td class="col col-method"> <!-- ko ifnot: method.error_message --> <!-- ko if: $parent.rates().length == 1 --> <input class="radio" type="radio" data-bind="attr: { checked: $parent.rates().length == 1, 'value' : method.carrier_code + '_' + method.method_code, 'id': 's_method_' + method.method_code, 'aria-labelledby': 'label_method_' + method.method_code + '_' + method.carrier_code + ' ' + 'label_carrier_' + method.method_code + '_' + method.carrier_code }" /> <!-- /ko --> <!--ko ifnot: ($parent.rates().length == 1)--> <input type="radio" data-bind=" value: method.carrier_code + '_' + method.method_code, checked: $parent.isSelected, attr: { 'id': 's_method_' + method.carrier_code + '_' + method.method_code, 'aria-labelledby': 'label_method_' + method.method_code + '_' + method.carrier_code + ' ' + 'label_carrier_' + method.method_code + '_' + method.carrier_code }, click: $parent.selectShippingMethod" class="radio"/> <!--/ko--> <!-- /ko --> </td> <td class="col col-price"> <!-- ko foreach: $parent.getRegion('price') --> <!-- ko template: getTemplate() --><!-- /ko --> <!-- /ko --> </td> <td class="col col-method" data-bind="text: method.method_title, attr: {'id': 'label_method_' + method.method_code + '_' + method.carrier_code}"></td> <td class="col col-carrier" data-bind="text: method.carrier_title, attr: {'id': 'label_carrier_' + method.method_code + '_' + method.carrier_code}"></td> </tr> <!-- ko if: method.error_message --> <tr class="row row-error"> <td class="col col-error" colspan="4"> <div class="message error"> <div data-bind="text: method.error_message"></div> </div> <span class="no-display"> <input type="radio" data-bind="attr: {'value' : method.method_code, 'id': 's_method_' + method.method_code}"/> </span> </td> </tr> <!-- /ko --> <!-- /ko --> </tbody> </table> </div> <div id="onepage-checkout-shipping-method-additional-load"> <!-- ko foreach: getRegion('shippingAdditional') --> <!-- ko template: getTemplate() --><!-- /ko --> <!-- /ko --> </div> <!-- ko if: errorValidationMessage().length > 0 --> <div class="message notice"> <span><!-- ko text: errorValidationMessage()--><!-- /ko --></span> </div> <!-- /ko --> <div class="actions-toolbar" id="shipping-method-buttons-container"> <div class="primary"> <button data-role="opc-continue" type="submit" class="button action continue primary"> <span><!-- ko i18n: 'Next'--><!-- /ko --></span> </button> </div> </div> </form> <!-- /ko --> <!-- ko ifnot: rates().length > 0 --><div class="no-quotes-block"><!-- ko i18n: 'Sorry, no quotes are available for this order at this time'--><!-- /ko --></div><!-- /ko --> </div> </div> </li>
The address.html in the other module
<!-- ko if: isVisible() && address() !== null --> <div class="shipping-information"> <div class="pakjegemak-address"> <div class="shipping-information-title"> <span data-bind="i18n: 'Postkantoor locatie:'"></span> <button class="action action-edit" data-bind="click: back"> <span data-bind="i18n: 'edit'"></span> </button> </div> <div class="shipping-information-content"> <!-- ko text: address().company --><!-- /ko --><br/> <!-- ko text: address().prefix --><!-- /ko --> <!-- ko text: address().firstname --><!-- /ko --> <!-- ko text: address().street.join(' ') --><!-- /ko --><br/> <!-- ko text: address().city --><!-- /ko -->, <!-- ko text: address().region --><!-- /ko --> <!-- ko text: address().postcode --><!-- /ko --><br/> <!-- ko text: getCountryName(address().countryId) --><!-- /ko --><br/> <!-- ko text: address().telephone --><!-- /ko --><br/> </div> </div> </div> <!-- /ko -->
Or is the only solution to eventually merge the two modules for that particulair shop, to make them both function?
Solved! Go to Solution.
Module wise functionality will be different.
you can not able to do same way for all modules.
If you want to make compatible with other module then you need to override that module file as well.
Module wise functionality will be different.
you can not able to do same way for all modules.
If you want to make compatible with other module then you need to override that module file as well.