Need some advise/help for modifying PK moviesdb
Posted: 2014-03-23 19:05:04
Hi
1. Is there a way to change the value "true" in another text in the header?
[/url]
2. How do i correct the way i see the actors. See difference in the picture and website.
This is how i see it:
And this is the way how i see it at:
http://www.bclaude.neq3.com/index.php?view=MAINVIEW.
that looks correct.
3. How can i add 1 movie into the sql database because if i import the sql file with 1 movie then it overwrite the datase and i see only the one movie.
4. I modified the detail_view.tpl. I want the translated movie naam between (). I discoverd that i have to change something in mdb_movie.in somewhere in
But where?
Thanks Bianca
1. Is there a way to change the value "true" in another text in the header?
[/url]
2. How do i correct the way i see the actors. See difference in the picture and website.
This is how i see it:
And this is the way how i see it at:
http://www.bclaude.neq3.com/index.php?view=MAINVIEW.
that looks correct.
3. How can i add 1 movie into the sql database because if i import the sql file with 1 movie then it overwrite the datase and i see only the one movie.
4. I modified the detail_view.tpl. I want the translated movie naam between (). I discoverd that i have to change something in mdb_movie.in somewhere in
Code: Select all
/** -------------------------------------------------------------------------------------------
* Checks if ORIGINALTITLE = TRANSLATEDTITLE .
* @access private
* ------------------------------------------------------------------------------------------*/
function _viewtitles() {
$html = "";
$originaltitlte = trim($this->data[ORIGINALTITLE]);
$translatedtitlte = trim($this->data[TRANSLATEDTITLE]);
if ($translatedtitlte != $originaltitlte)
{
$html .= "<div class='translated'>".$originaltitlte." <span class='title'> ".$translatedtitlte." </span></div>";
}
else
{
$html .= "<div class='original'>".$originaltitlte."</div>";
}
return $html;
}
Thanks Bianca