*

questions

  • *****
  • 319 posts
Remove description isDetail from Homepage (loop-single.php)
« on: April 03, 2023, 06:38:41 PM »
Hi,

Is there any way to remove description isDetail only from Homepage?

Once removing the code from loop-single.php:
<div class="description isDetail"><?php echo osc_highlight(strip_tags(osc_item_description()), 360); ?></div>

the description isDetail is also removed from search and so on.

I would like to avoid excessive loading of text on the home page so I would like to know if there is any other option than removing that code from loop-singe.php

Maybe wraping the code somehow.. to exclude the homepage? I don't know.

Thank you,

*

questions

  • *****
  • 319 posts
Re: Remove description isDetail from Homepage (loop-single.php)
« Reply #1 on: April 03, 2023, 06:47:50 PM »
Ok did some change:

<div class="description isDetail"><?php if(!osc_is_home_page()) { echo osc_highlight(strip_tags(osc_item_description()), 360); } ?></div>

Seems it work fine. Is it correct?

Thank you,