Difference between revisions of "Customizing the listing detail page"

From JReviews Documentation
Jump to: navigation, search
Line 25: Line 25:
 
<?php echo $this->renderControllerView('reviews','user_reviews',array('listing'=>$listing))?>
 
<?php echo $this->renderControllerView('reviews','user_reviews',array('listing'=>$listing))?>
 
</source>
 
</source>
 +
  
 
loads a separate theme file which includes all code for user reviews:
 
loads a separate theme file which includes all code for user reviews:
Line 34: Line 35:
 
prx($listing);
 
prx($listing);
 
</source>
 
</source>
 +
  
 
Also, take a look at the [[Variables you can use in theme files|list of mostly used variables]]
 
Also, take a look at the [[Variables you can use in theme files|list of mostly used variables]]

Revision as of 14:45, 6 January 2014

The listing detail page contains all information about a specific listing (custom fields, media items, reviews, etc.). Here is an example of a listing detail page on the demo site.

If you want to customize the layout of the listing detail page, this is where its default theme file is located:

  • /com_jreviews/jreviews/views/themes/default/listings/detail.thtml

Before making any theme changes, read about JReviews Code Overrides and create a custom theme.

Almost every block of code in detail.thtml is commented to make it easier to find what you want to modify.

You can make any modifications below "EDIT HTML BELOW THIS LINE" comment.

The detail.thtml theme file also includes some other theme files. For example, this line:

<?php echo $this->element('listing_detail_media',array('position'=>'top','mainMedia'=>$mainMedia));?>


loads a separate theme file which includes all code for listing media items:

  • /com_jreviews/jreviews/views/themes/default/elements/listing_detail_media.thtml

This code:

<?php echo $this->renderControllerView('reviews','user_reviews',array('listing'=>$listing))?>


loads a separate theme file which includes all code for user reviews:

  • /com_jreviews/jreviews/views/themes/default/reviews/user_reviews.thtml

Most of the listing data is stored in the $listing array. To see the contents of this array, add this line to the detail.thtml:

prx($listing);


Also, take a look at the list of mostly used variables