Expand my Community achievements bar.

Creating delivery category

Avatar

Level 2

Hi,
I want to create a new delivery category for my delivery.

How do I do that?

3 Replies

Avatar

Level 2

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.

MariBa_0-1735804025352.png

 

Avatar

Community Advisor

@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>