Vivid Theme - Issue with hiding product price & paypal

Hello! I’ve got 2 main issues that I’ve been struggling with.

I’m trying to hide the prices of items that are above a certain price. I want people to see no price and instead inquire about the price and details of the item, specifically the expensive items. I’m also having an issue with trying to hide the PayPal purchase now button on particular expensive items.

There’s a “buy now with PayPal” button under every single product available. I don’t know how to remove it without removing it entirely for all product across the entire website. I only want it hidden for the very expensive items. How do I hide that button on only the expensive items that I want to be inquired about, and not the rest of the cheaper products? I don’t want someone to accidentally checkout on a price they can’t see.

I installed an app for inquires that has a built in “hide price” but it only hides the price on the inquiry pop up page, and not the rest of the website. You can still see the price of the item on the website, but when you click “inquire”, it doesn’t show the price on that popup page. How do I go about hiding the price of only certain items that I want to be hidden on the website itself? I know that I need to add a no-price tag to the items I want the price hidden on, but I have no coding experience.

The website theme is Vivid.

Store URL: https://rarepearlskauai.com/

Password: AB2007

Thanks to anyone who assists! Much appreciated.

1 Like

Hey @SB50

Here’s a better approach for this. Add any tag in the products you wanna hide the prices and buy button from so for example in your case. Add a product tag called “hidden”. After that,

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above </ body> tag
{% if product.tags contains 'hidden' %}
<style>
.price {
    display: none !important;
}
.shopify-payment-button {
    display: none !important;
}
</style>
{% endif %}

RESULT:

If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.

Best,
Moeed

1 Like

Hi @SB50,

How much do you want the price to be hidden?

Please go to Actions > Edit code > snippets > price.liquid file and send me the code, I will guide you.

Best,
NamPhan

Hey @SB50,

Thanks for posting this Query to Shopify Community.
Your scaniro is the same match with this store :backhand_index_pointing_right: Colours Bib Apron with Pocket - PR154 | RIBBLE APPAREL

In the Ribble Apparel they are using the same case. They selling the print shirts and instead of hiding the price they are showing the From Price. From price is better than hiding the price. Because the from price gave a idea to the customer that how much it costs them. From Price is not the exact price. But it means the price start from X value. Or you can use the form to collect the data.

But if you really want to hide the price then you can hide it on tag based. Like Moeed show you.

This will works in a way that if the product contains the tag ‘hidden‘ then in this case the price of the product will not show in the collection page, product page and even in the cart Drawer/page.

Let us know if this was helpful or you need more assistance?

Waiting to hear back from you.
Thanks

Hey there @SB50 I think your best course of action to hide the prices for products over a certain price would be to create a new category for those products and then follow the steps in the video here https://m.youtube.com/watch?v=Gnviba-bIYQ

This is extremely helpful! Thank you so much. I tested it out on the same product in your image below, and I’m only having one issue.

Everything is perfect when I’m on the page for that specific product.

However, when I’m on All Products or Search, I can still see the price. Is there any way to fix this?

Thanks again for the help! I really really appreciate it.