Jump to content

Question about Viewed Product Module


Recommended Posts

I purchase a responsive theme and can not get the viewed product block to show up on any device except desktop.

Is this module not designed for that? or is there a setting I can't find.

I contacted the theme developer but have not heard back at this time.

 

Any suggestion greatly appreciated.

 

Link to comment
Share on other sites

Hi Sharak,

I am not sure what you mean. When I click on the photo or the text using desktop it goes to the correct product.

 

Did you mean the block showed up on a device you are using?

 

Am new to this but how will I know if the variables are correct for devices?

Link to comment
Share on other sites

No, I meant image of the products in block viewed are not visible but It seems I just picked the one product that doesn't have proper thumb generated (MacBook). Other products look ok in this block.

 

And here's solution for your problem: not only block viewed is missing on smaller devices but whole column and that is because you've hidden it for screen width smaller than 520px. Check your theme's global.css:

@media screen and (max-width: 519px) {

    .resp #layout {
        width: 98%;
        padding:0 1%;
    }
    .resp #center_column, .resp #center_column.columnWide2{
        width:100% !important;
    }
    .resp #reinsurance_block{
        display:none;
    }
    body#index.resp #left_column, body#index.resp #right_column{
        display:none !important;
    }
    body#product.resp #left_column, body#product.resp #right_column{
        display:none !important;
    }
    body#category.resp #left_column, body#category.resp #right_column{
        display:none !important;
    }
    body.resp #left_column, body.resp #right_column{
        display:none !important;
    }
    .resp #center_column.columnWide3{
        width:100%;
    }


}

I have 2 questions for you:

1. Why did you make left column appear on the right instead just move modules to right column?

2. What's with product pictures? I remember you made a thread particularly for product images on homepage but nothing's changed. Don't know what did you do to thumbs generator but I think you should get it back to its default configuration. Normally you have the same size of all images, but your thumbs have size relative to its source therefore all have different dimensions. It does not look nice :P

Edited by Sharak (see edit history)
Link to comment
Share on other sites

×
×
  • Create New...