How can I add $100 to all print prices on my Dawn Theme site?

Hi! I apologize if I’ve asked this question before (I have a brain injury that affects my memory so if I have, I’m sorry).

What I’m trying to figure out is how to add $100 to each of the prints I have with the exception of the Personal and Commercial-Professional digital offerings?

I run the Dawn Theme.

My site address is: TheOnceDeadArtist.com

Any help would be greatly appreciated.

Lon

use this code


  {% if product.type == 'Print' and product.variants.first.metafields.global.digital_product != 'true' %}
    {% assign adjusted_price = product.price | plus: 100 %}
    {{ adjusted_price | money }}
  {% else %}
    {{ product.price | money }}
  {% endif %}

Question. Will this add just $100 or will it effectively double (i.e., 100%) the prices?

I ask because the parameters are plus: 100 %

Thanks very much! :slightly_smiling_face: