• Priority: 0
  • Status: Closed
  • Theme: Alysum
  • Assigned To: Marek
  • Private: No
  • Open Date: 09.04.19, 10:58
  • Opened by: Lisa Keeling
  • Closed by: Marek
  • Closed on: 01.05.19, 16:09
  • Reason: Closed
  • Comment: Glad to help!

Ticket #14223 - Disabling the summary on mobiles

Hi Marek,

We just wondered whether it’s possible to disable product summary on mobiles? We’d like to keep it though for tablets and bigger devices (basically everywhere where the summary text is next to the image, not below) See image attached. Is that something you could help with?

Comments

Marek 09 Apr 2019, 20:27

Hi, Lisa.
Try to use Chrome Developer Tools to find an elemen class you want to hide and add “display:none” property

.item {display:none}

It will be faster for you, because my internet now is very slow and limited

Lisa Keeling 10 Apr 2019, 10:16

But doesn’t it hide the section on all devices? I can do it no problem, but just as i mentioned before - we’d like to hide the section just on devices that display it under the image (not next to it) so it’s pretty much all mobiles.

Marek 10 Apr 2019, 22:20

To hide it for mobile devices use following CSS:

@media (max-width:768px) {
.item {display:none}
}