Difference between revisions of "How to add a suffix for click2search results page"

From JReviews Documentation
Jump to: navigation, search
Line 6: Line 6:
  
 
<source lang="php">
 
<source lang="php">
echo $this->render('listings','listings_' . $this->tmpl_list);  
+
return $this->render('listings','listings_' . $this->listview);
 
</source>
 
</source>
  

Revision as of 12:17, 16 May 2015

You will need to modify this file:

  • \com_jreviews\jreviews\controllers\categories_controller.php


Find function listings() and at the end of the function, right before this line:

return $this->render('listings','listings_' . $this->listview);

Add this code:

// click2search theme suffix customization
$click2SearchPage = isset($this->params['tag']);
if($click2SearchPage){
	switch(Sanitize::getString($this->params['tag'],'field'))
	{
		case 'fieldone':
			$this->viewSuffix = '_suffix1';
		break;
		case 'fieldtwo':
			$this->viewSuffix = '_suffix2';
		break;
	}
}


fieldone and fieldtwo are the names of the fields without the 'jr_' prefix. You need to choose the list type [blogview|tableview|thumbview] for the search results in the Configuration Settings, Search tab. But then it doesn't really matter which one you choose, you can put whatever you want in the suffixed file. So for instance, let's say you choose blogview. Your theme files would be:

  • listings_blogview_suffix1.thtml
  • listings_blogview_suffix2.thtml


If you use the Fields Module, you can enter the suffix for the results page in the module's parameters, setting Custom URL parameters.

Enter the suffix like this:

&tmpl_suffix=_suffix1