I wonder if it is possible to remove a specific product drop-down page and display it inside a tag <p>or just a regular line? Imagine that I have 3 product options:
We all know that all these parameters will be displayed in the drop-down menu. How about how I wanted to display the parameter Sizeas a regular string or text? How can we do this?
Here's an image to make it clearer.

product.liquid
<select name="id" id="ProductSelect" class="product-single__variants">
{% for variant in product.variants %}
{% if variant.available %}
<option {% if variant == product.selected_or_first_available_variant %} selected="selected" {% endif %} data-sku="{{ variant.sku }}" value="{{ variant.id }}">{{ variant.title }} - {{ variant.price | money_with_currency }} </option>
{% else %}
<option disabled="disabled">
{{ variant.title }} - {{ 'products.product.sold_out' | t }}
</option>
{% endif %}
{% endfor %}
</select>
source
share