Hi,
I want to create a new delivery category for my delivery.
How do I do that?
Views
Replies
Total Likes
Hi @MariBa ,
New delivery category - Can you describe in details what you want to create?
Views
Replies
Total Likes
In the delivery properties there's a field called Delivery Category.
Our IT team has previously created multiple categories that we can choose from the drop-down menu.
However, none of them is relevant to the new delivery I've created.
Can I create a new one and how do I do that?
See the highlighted portion in the screenshot.
Views
Replies
Total Likes
@MariBa , This seems to be custom attribute using the values from enumeration.
Go to /Administration/Configuration/Data schemas/ and search for delivery schema (extended one; internal name will be 'delivery') and search for the enumeration of 'Delivery category' and add a new value in it which you need to see in delivery dropdown.
<enumeration name="DeliveryCategory">
<value name="One" value="1"/>
<value name="Two" value="2"/>
<value name="Three" value="3"/>
<value name="Four" value="4"/>
</enumeration>
<element label="Sample" name="Sample">
<attribute dbEnum="DeliveryCategory" label="Delivery Category" name="DeliveryCategory" type="string"/>
</element>
Views
Replies
Total Likes