I hope you are doing well.
I’m new to D365 eCommerce development and currently working on a custom module for the checkout page. Specifically, I’m trying to implement it within the Checkout Information Container module in the Site Builder.
I followed the instructions from this Dynamics Community thread to create the custom module. While I can see it listed in the HTML tree via developer tools, it appears hidden and disabled. as shown below in the screenshot.
Upon investigating, I found the relevant code in the guided-card.tsx
component, where the ICheckoutGuidedCardProps
interface defines the disabled
property. This indicates that the module is currently not available.
I have used the below logic in my custom module definition to add my custom module to checkout information container slot.
{
"$type": "contentModule",
"friendlyName": "my-custom-checkout-info",
"name": "my-custom-checkout-info",
"description": "",
"categories": ["checkout_checkoutInformation"],
"tags": [""],
"dataActions": {
}
}
Your guidance on how to resolve this issue and properly display my custom module on the checkout page would save me a lot of time and effort. I would be truly grateful for your assistance!