Jump to content

How To Hide Button ?


anniebellainc

Recommended Posts

You need to edit your "/themes/YOUR_THEME/js/product.js" file and find there a place where the "add to cart button" becoming hidden.

For example, in the defaulth theme that line looks like this:

$('#add_to_cart:visible').fadeOut(600);

And in that place you need to add a code for hiding quantity block. It should looks like this:

$('#quantity_wanted_p:visible').fadeOut(600);

(#quantity_wanted_p may differ in dependency of your theme)

  • Like 1
Link to comment
Share on other sites

You need to edit your "/themes/YOUR_THEME/js/product.js" file and find there a place where the "add to cart button" becoming hidden.

 

For example, in the defaulth theme that line looks like this:

$('#add_to_cart:visible').fadeOut(600);

And in that place you need to add a code for hiding quantity block. It should looks like this:

$('#quantity_wanted_p:visible').fadeOut(600);

(#quantity_wanted_p may differ in dependency of your theme)

 

How can I hide Reference and Condition too ?

 

post-1192670-0-52490000-1456954898_thumb.jpg
Edited by anniebellainc (see edit history)
Link to comment
Share on other sites

You need to use the same code, but with other ids.

This code is for default theme, hopefully it will work for you too:

$('#product_reference:visible').fadeOut(600);
$('#product_condition:visible').fadeOut(600);

By the way, don't forget to add code for showing these blocks again when selecting available combination

Link to comment
Share on other sites

You need to use the same code, but with other ids.

This code is for default theme, hopefully it will work for you too:

$('#product_reference:visible').fadeOut(600);
$('#product_condition:visible').fadeOut(600);

By the way, don't forget to add code for showing these blocks again when selecting available combination

 

Works great. Thank you.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...