How to hide short description on product page?

Gentlemen, I would need your help. Is it possible to disable short description from the product details? I can’t find it in admin area. So I think it has to be removed from a file. Can you please advise where to find it? Many thanks!

[{$oDetailsProduct->oxarticles__oxshortdesc->rawValue}]

root/application/views/flow/tpl/page/details/inc/productmain.tpl

1 Like

perfect, thank you very much!

Other (and easier) way without editing the productman.tpl is to use CSS e.g. in flow template:

#productShortdesc {
display: none;
}

1 Like