Shopify themes, liquid, logos, and UX
I'm looking to remove the add to cart / checkout buttons on certain product collections and replace them with a button linking to a Google Form or other URL.
Certain "products" on our site are used as info pages for application forms, while other products are traditional ecommerce products with an add to cart / checkout process. The different product types are broken up by collection, so will need to have some collections with add to cart / checkout, others with a link to an application form.
Hello @tsccunningham ,
It's possible but not without customization.
Or you can try to search an app maybe something helpful found
or if you are looking for a developer to do it you can drop me an email.
Thanks
You can add tag on product and edit card-product.liquid to hide button and show your Google sheet URL.
Use below code to read the tags
{% for t in product.tags %}
{% if t contains 'hide-cat-button' %}
<style>
.product-form__submit{
display: none;
}
</style>
{% endif %}
{% endfor %}
My recommendation will be to hire someone if you don't have understanding of coding and structure of Shopify.
Don't forget to keep the backup of your theme.
Looking to hire details are in BIO.
Condition with product tag is not recommended as you know filters also use tags so in that case it make issue.
Much better to use checkbox meatfield
and then through code
{% if metafield %}
// leave blank or do something
{% else %}
//default code as it is
{% endif %}
Starting a B2B store is a big undertaking that requires careful planning and execution. W...
By JasonH Sep 23, 2024By investing 30 minutes of your time, you can unlock the potential for increased sales,...
By Jacqui Sep 11, 2024We appreciate the diverse ways you participate in and engage with the Shopify Communi...
By JasonH Sep 9, 2024