I am working on champer theme , I add portfolio by guideness of documentation, but when i click on image , its go on another page, but I want to stay in similar page, not changing. how can I do this. i am wanted my portfolio Image behaviour like seo Optimization In this link. http://www.gallyapp.com/tf_themes/?theme=Chamber
my portfolio.php code is
<?php
session_start();
if(!isset($hide_header) OR !$hide_header)
{
get_header();
}
if(isset($_SESSION['pp_portfolio_style']))
{
$pp_portfolio_style = $_SESSION['pp_portfolio_style'];
}
else
{
$pp_portfolio_style = get_option('pp_portfolio_style');
}
if(empty($pp_portfolio_style))
{
$pp_portfolio_style = '2';
}
include (TEMPLATEPATH . "/templates/template-portfolio- ".$pp_portfolio_style.".php");
?>