Difference between revisions of "How do I hide Summary text on listing detail page"

From JReviews Documentation
Jump to: navigation, search
(Created page with 'Edit \com_jreviews\jreviews\views\themes\{theme_name}\listings\detail.thtml and replace <source lang="php"> <?php echo nl2br($listing['Listing']['text']);?> </source> With: <sou…')
 
Line 1: Line 1:
Edit \com_jreviews\jreviews\views\themes\{theme_name}\listings\detail.thtml and replace
+
Edit this theme file:
 +
*<span style="color: blue">\com_jreviews\jreviews\views\themes\{theme_name}\listings\detail.thtml</span>
 +
and replace
 
<source lang="php">
 
<source lang="php">
 
<?php echo nl2br($listing['Listing']['text']);?>
 
<?php echo nl2br($listing['Listing']['text']);?>

Revision as of 10:54, 14 November 2009

Edit this theme file:

  • \com_jreviews\jreviews\views\themes\{theme_name}\listings\detail.thtml

and replace

<?php echo nl2br($listing['Listing']['text']);?>

With:

<?php echo nl2br($listing['Listing']['description']);?>