| Author |
Message |
Fatih429
Guest

|
Posted:
Thu Jun 09, 2005 2:47 pm |
|
hi guys,
does anyone know if there is a way to get dynamic titles code for universal module [ page title also page keywords Smile ]?
Or does anyone feel like creating it..
MSN : Fatih429 [ at ] hotmail [ dot ] com
Thank you... |
| |
|
|
 |
Ghost

Joined: Jan 08, 2005
Posts: 53
Location: Puyallup, Washington
|
Posted:
Thu Jun 09, 2005 6:21 pm |
|
Hi Faith429,
I have a stupid question...'lol'
What is the Universal Module and what does it do? I am simply curious as whether this is something I could use on my site.
Thank you graciously,
Ghost |
| |
|
|
 |
Fatih429
Guest

|
Posted:
Fri Jun 10, 2005 5:14 pm |
|
| Ghost wrote: |
Hi Faith429,
I have a stupid question...'lol'
What is the Universal Module and what does it do? I am simply curious as whether this is something I could use on my site.
Thank you graciously,
Ghost |
Hi Ghost....
my universal module is unimod25-full..
my site is www.turkmizah.net/hileler.html
universal modules is being used instead of content module..
you can download from http://download.e-devstudio.com/file/10/
please help me ghost...and others
Thank you graciously, |
| |
|
|
 |
Ghost

Joined: Jan 08, 2005
Posts: 53
Location: Puyallup, Washington
|
Posted:
Tue Jun 14, 2005 10:51 pm |
|
Fatih429,
Firstly, please allow me to apologize, I have been looking into this for you, but unfortunately, I have not prevailed. It appears that many people have asked this question, but no defintive answer. I did manage to talley suggestions, but other than that...nothing. Provided below are links in which are from other sources in which may provide the anwser for you...
http://ravenphpscripts.com/postt5213.html
http://translate.google.com/translate?hl=en&sl=de&u=http://www.conrads-berlin.de/ftopict-1072.html&prev=/search%3Fq%3DDynamic%2BTitles%2Bfor%2BUniversal%2BModule%26hl%3Den%26lr%3D%26rls%3DRNWE,RNWE:2005-20,RNWE:en
I believe the first link provides the answer in which you seek, but again, no one has mentioned this as a success for Universal. Have you posted your request to the Module Authors website? Either way please keeps us posted as to your success with this and if you need further assistance, we will diffenately help if we can. Aslo feel free to add me to MSN, if at all I may be able to assist further.
Ghost
voice4vision@hotmail.com (MSN) |
| |
|
|
 |
nihplod
Guest

|
Posted:
Tue Jan 03, 2006 9:58 am |
|
This code works works fine but only shows the thittle of the document and the module name, some like this: 'your name site - Universal module - Article title'
The code:
in the index.php of tour universal module look for this:
| Code: |
$modtitle = getconfigvar("modtitle");
$pagetitle = "- $modtitle"; |
And change it to this:
| Code: |
// mostrar tÃtulos de los documentos en la barra del explorador
if($vid != ""){
$sql = "SELECT title FROM ".$prefix."_".$mainprefix."_items WHERE id = '$vid'";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$bar_title = $row[title];
$modtitle = getconfigvar("modtitle");
$pagetitle = "- $modtitle - $bar_title";
}else{
$modtitle = getconfigvar("modtitle");
$pagetitle = "- $modtitle";
}
//Fin de mostrar tÃtulos |
That's all
Regards from Spain
Nihplod |
| |
|
|
 |
|
|