Need an App to Hide Prices unless Customer is logged in & APPROVED (Licensed Professionals)

Hello! I need help with locating an App. Our site needs to showcase all of our products but hide prices unless a customer is logged in and APPROVED. Basically they need to submit documents to show that they are licensed professionals. I know how to lock out everyone that’s not approved but they will not be able to see our products.

Any help is greatly appreciated. Thank you!

Have you tried this? https://apps.shopify.com/test-app-198

1 Like

Hello,
You can add liquid code in your theme to hide prices from unapproved customers.
If you are manually approving customers, just add a Boolean type metafield for customers.

In my example i created a metafield called ‘Can_View’

after adding the metafield, just add this small piece of code where you are showing your product prices in the theme.

In my case, it is,

{%liquid
    assign Can_view = customer.metafields.my_fields.can_view.value
   %}
  {%if customer and Can_view %}
        
    {{ money_price }}
  {%endif%}