Advertisement:

Author Topic: (solved)HOW TO REMOVE THE DESCREPTION IN INDEX PAGE ?  (Read 714 times)

falouche

  • Newbie
  • *
  • Posts: 38
(solved)HOW TO REMOVE THE DESCREPTION IN INDEX PAGE ?
« on: March 20, 2015, 03:24:49 am »
Hi

Can anyone tell me how to remove the descreption in the main page ?
« Last Edit: March 21, 2015, 06:40:11 am by falouche »

BritWeb

  • Hero Member
  • *****
  • Posts: 770
  • If it ain't broke, don't fix it.
Re: HOW TO REMOVE THE DESCREPTION IN INDEX PAGE ?
« Reply #1 on: March 21, 2015, 02:25:14 am »
To remove the description from the listing, do as follows:

Find the following code on the 'loop-single.php'

Code: [Select]
<p><?php echo osc_highlightosc_item_description() ,250) ; ?></p>
and replce it with the one below:

Code: [Select]
<div style="display:none"><p><?php echo osc_highlightosc_item_description() ,250) ; ?></p></div>

Hope this is what you are after!

Regards

falouche

  • Newbie
  • *
  • Posts: 38
Re: HOW TO REMOVE THE DESCREPTION IN INDEX PAGE ?
« Reply #2 on: March 21, 2015, 06:38:49 am »
thanks

I found it.