Jump to content

add to cart buton dissapeared from product page [ solved ]


Recommended Posts

your add to cart form has got display:none;

 

this is the form:

<form action="http://www.vipmujer.com/en/carro-de-la-compra" class="bordercolor" id="buy_block" method="post">

 

css styles:

#columns .bordercolor {
border-color: #e5e5e5 !important;
display: none;
}

 

 

you use for the form bordercolor class and in the css styles you've got there display:none;

 

 

what to do?

use display:block instead display:none

Link to comment
Share on other sites

your add to cart form has got display:none;

 

this is the form:

<form action="http://www.vipmujer.com/en/carro-de-la-compra" class="bordercolor" id="buy_block" method="post">

 

css styles:

#columns .bordercolor {
border-color: #e5e5e5 !important;
display: none;
}

 

 

you use for the form bordercolor class and in the css styles you've got there display:none;

 

 

what to do?

use display:block instead display:none

 

Thank you vekia, for people who want to lean how you figured that out (hint), could you explain what you did? Maybe we can all be superstars like you one day.

Link to comment
Share on other sites

here is my recipe for success :P

  • right mouse click somewhere > "show page source"
  • then i searched for "add to cart" string, i've got the form, checked the elements in the form one by one
  • i've noticed that in the css styles (global.css) .bordercolor has got display: none;
  • changed the value to display:block; (I used default chrome dev extension (f12))
  • voilà

Link to comment
Share on other sites

×
×
  • Create New...