Removing Printful's Personalize Design button

Hey guys,

I have recently added a new Printful product to my store without any option for customization. However, after editing the product description in Shopify the Personalize Design button shows and throws out an error message when clicking it.

Is there any way to remove it via Shopify code? So far, I haven’t been able to finde the line of code for this button in any of the files in the coding section.

Cheers

Hi @Tschuksl

Can you please share store and product Url.

Thanks

Vishvas Mishra

Thank you for your reply.

Store URL is rvnuwear.com

Product URL is www.rvnuwear.com/collections/c-h-a-r-t-e-d/products/kurzarmelshirt-tsla

Hope this helps.

Cheers!

Hi @Tschuksl ,

Please try this code, just add it to the theme.scss.liquid file.

#pfCustomizeProductBtn {
display: none!important;
}

By the way, don’t just include 1 type of product image. For clothing products, you’d better add images of models or (at least) mannequins wearing the products. It helps people relate how the products look like when they wear it.

You can check this article to learn more about the types of product images to include for visually-driven products.

1 Like

Thank you for your help and advice.

I have already tried editing the scss file, but this doesn’t quite solve my problem. It removes the personalize button from all my products, not just the ones that are customizable. Is there a way of doing that just for certain products?

@Tschuksl

Please add the given in .sccs file.It’s only worked for the given product.(https://www.rvnuwear.com/collections/c-h-a-r-t-e-d/products/kurzarmelshirt-tsla)

form#product_form_4543941279857 #pfCustomizeProductBtn {
display: none;

}

Thanks
Vishvas Mishra

1 Like

Thank you very much! I already suspected that I would have to include the product ID in the code in some way. But I couldn’t figure out the proper wording of the code.

Would you mind taking a look at another one of my threads, it’s got something to do with JavaScript on the product page? I also think that I am quite close to the solution, I just haven’t found the last quirk yet: https://community.shopify.com/c/Shopify-Design/Integration-of-JavaScript/m-p/821547#M206838

If you don’t want to take the time - no problem at all. You have already helped me a lot, I can’t thank you enough!

Cheers!