Woocommerce - Disabling the Pickup calendar on the checkout page (WIP)
The Order Delivery Date Pro Plugin - for Woocommerce will allow you to disable the pickup calendar on the checkout page through CSS.
Step-by-Step Guide:
Inspect Element:
First, right-click on the calendar field.
Select "Inspect Element" from the context menu.
Locate the ID:
In the inspect element panel, you can find the ID attribute associated with the calendar field.
For instance, in this case, it is identified as "e_deliverydate_0_field".
The ID will be highlighted, and you can find it labeled in blue within the inspection panel.
Utilizing CSS:
With the identified ID, you can now utilize CSS to modify its behavior.
Navigate to the customizer section of your website.
Access Additional CSS:
Look for the option labeled "Additional CSS" within the customizer settings.
Apply CSS Rules:
Add the ID selector preceded by a hash symbol (#) followed by the desired CSS attribute to disable pointer events.
For example, if the ID is "e_deliverydate_0_field", input "#e_deliverydate_0_field { pointer-events: none; }".
This CSS rule effectively disables pointer events for the identified calendar field.
By following these steps, you can effectively disable the pickup calendar on the checkout page using CSS customization in Woocommerce.