Page 2 of 16
Posted: Thu 8. Apr 2004, 12:33
by Jérôme
cyrano wrote:great stuff this means we can use any ttf-font on the website?
and for example also only the headline for example?
coool
Exactly
.
Posted: Thu 8. Apr 2004, 13:11
by Jan212
Leute jetzt mal ohne Scheiße - der mod ist der absolute hammer - wer's nicht sieht ist blind oder kein typo fan.
ICH KANN NUR SAGEN - DAS ROCKT HEFTIG
hi peops - this is an absolutly kicking like a wild rodeo mod. jérôme is on fire...
Posted: Thu 8. Apr 2004, 13:36
by snobba
HEHE!! GREAT STUFF JEROME!!
Funny because I sat yesterday and thinking about this and thought, hmmm, to bad we do not have that for the phpWCMS.....and then I looked at the forum and what do I see - a new MOD with this! It a great and flexible way of creating titles on a page without going back to the designprogram,write, upload and put it on the page...
Thanks,
Greetings from Martin
Posted: Thu 8. Apr 2004, 13:41
by cyrano
hi jérôme,
would it be possible with this mod to replace the page titel?
e.g. i open a page called contact, so i can hide articel head.
but would it be able to replace this head?
greetings and well done stuff. respect!
Posted: Thu 8. Apr 2004, 13:50
by Jérôme
Yes, it will do what you want. You can use this replacement tag whereever replacement tags can be used, so as well in page titles or in templates.
Posted: Thu 8. Apr 2004, 13:54
by cyrano
oh man you are so great...
wish to be able to do also great things.
keep on running
Posted: Thu 8. Apr 2004, 14:11
by Jérôme
No, I am just
tall, not great (almost 2 meters)
Posted: Thu 8. Apr 2004, 14:26
by snobba
Strange because I thought I had the latest phpWCMS...I have the upgrade from 4/4 and upgraded the wcms from 28/4 but when I want to find:
Code: Select all
#
#-----[ FIND ]------------------------------------------
#
case "modules":
#
#-----[ FIND IN THE "MODULES"-AREA ]------------------------------------------
#
default:
I just have:
Code: Select all
case "modules": //Modules -> later
echo 'in preparation - will follow later';
break;
No 'default'!?
Is this something that have been upgraded in your company mod and I do not have?
Greetings from Martin / Sweden
Posted: Thu 8. Apr 2004, 14:28
by nekket
snoba: same problem here
Posted: Thu 8. Apr 2004, 14:29
by nekket
Snobba: Try this solution:
case "modules": //Modules -> later
case 2: // Graphical Text MOD
include_once "./include/inc_module/mod_graphical_text/main.inc.php";
break;
echo 'in preparation - will follow later';
break;
Works fine for me!
Posted: Thu 8. Apr 2004, 14:32
by Jérôme
Oooops, yes. I am sorry, I haven't thought at this.
It would be better if you did it the following way (because of the 'default', this is more clean):
Code: Select all
case "modules": //Modules
switch ($p) {
case 2: // Graphical Text MOD
include_once "./include/inc_module/mod_graphical_text/main.inc.php";
break;
default: echo '';
break;
}
break;
Posted: Thu 8. Apr 2004, 14:39
by nekket
DAMN! The GT Tag doesn't work here?!
Posted: Thu 8. Apr 2004, 14:47
by Jérôme
it works on my localhost and frold has tested it on his server, so I think it should work.
Could you please describe me what you have done?
Posted: Thu 8. Apr 2004, 14:52
by nekket
OK,
reinstalled phpwcms (newest version, no other mods).
Installed the script. The graphical text modul is visible and working in admin-area.
Created a simple text content part with
but: the {GT:bit3:7:#FF3300:Überschrift} appears on the site and is not replaced by a graphic
Posted: Thu 8. Apr 2004, 15:12
by Jérôme
That is strange...
Have you used a '#' in your color definition? You should not...