How to remove popup when opening product details?

1

I'm using a theme, and this theme by clicking the product on the main page opens a popup with the details on the page. I would like to either click "view" to go to the product page or remove the "+" sign from the price of the combobox (on the product page the "+"

Magento version. 1.8.1.0

Site for viewing

    
asked by anonymous 08.06.2015 / 20:05

1 answer

1

I've never worked with Magento, but analyzing your code for just doing a "trick" with CSS.

.item a.product-image {
   display: block; /* adicionei esse */ 
   z-index: 1; /* adicionei esse */
   position: relative; /* adicionei esse */
   outline: medium none;
}

It basically makes the link override the div of popup view.

To remove the button go to the 4040 line of style.css , in the .item .product-hover-box class and add:

display: none;

Do the same in line 7943 of style.css , in class .mt-actions and add again:

display: none;
    
08.06.2015 / 21:55