alt-tag beim einbinden von grafiken über {IMAGE:xy.jpg}??

Use GitHub to post feature requests for phpwcms.
Locked
susi
Posts: 33
Joined: Tue 19. Jul 2005, 11:14

alt-tag beim einbinden von grafiken über {IMAGE:xy.jpg}??

Post by susi »

hallo,
ich möchte eine funktionsleiste einbinden mit symbolen für drucken, seite empfehlen etc. wenn ich die funktionen einbinde mit z.b. [PRINT]{IMAGE:xy.jpg}[/PRINT] ist kein alt-tag für eine beschreibung des symbols möglich, oder? gibts da einen trick?
apropo empfehlen. gibt es innerhalb phpwcms schon funktionen für das "seite weiterempfehlen"?
vielen dank im voraus,
susi
cyrano
Posts: 1598
Joined: Sat 31. Jan 2004, 18:33
Location: Stuttgart
Contact:

Post by cyrano »

Hallo susi,

da ich gerade eben auf der seite war ;-)
http://www.artmedic-phpscripts.de/index.php

Hier gibt es php-scripte, die sich einbinden lassen.
Gruß/ regards cyrano
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3
volkman
Posts: 179
Joined: Wed 13. Jul 2005, 12:52
Location: Hamburg, Germany

hi susi

Post by volkman »

auf der seite
http://www.emediafabrik.de/index.php?de ... gealttext1
gibt es ganau das, was du suchst. läuft bei mir unter DEV 1.2.3 prima


einen schönen abend
volkman
susi
Posts: 33
Joined: Tue 19. Jul 2005, 11:14

vielen dank!!!

Post by susi »

das muss jetzt mal gesagt werden: das forum ist echt gold wert. gerade, wenn man / bzw. wenn ich ;-) was neues anfange und auf mich alleine gestellt bin, siegt oft der frust und ich komme nicht so recht vorwärts! die unterstützung durch das forum ist klasse!!!
:-)
xtian
Posts: 13
Joined: Fri 3. Feb 2006, 09:30
Location: Germany
Contact:

alt tags bei Version 1.2.5

Post by xtian »

Gibt es einen vergleichbaren Hack für die Version 1.2.5? Der genannte Hack scheint jedenfalls hier nicht zu funktionieren. Auch im Forum konnte ich keine Lösung finden. Kann jemand helfen?

Grüße
xtian
xtian
Posts: 13
Joined: Fri 3. Feb 2006, 09:30
Location: Germany
Contact:

one more time in English

Post by xtian »

Alright, let me try this in English as there doesn´t seem to be a German answer ;-)

I am desperately trying to add alt text tags to those pictures that call up phpwcms commands like [BACK]{IMAGE:back.gif}[/BACK]. I have tried emedia´s hack but this did not work out - I guess due to version 1.2.5 that I am using.

Can someone think of a solution? Maybe I just didn´t find it in the forum???

Thanks
xtian
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Post by flip-flop »

Hi xtian,

here it is for your /include/inc_front/front.func.inc.php
Please replace the original code with this one. (Between line ~1650-1700)

Code: Select all

	// insert non db image standard
//	$search[7]		= '/\{IMAGE:(.*?)\}/';
//	$replace[7]		= '<img src="picture/$1" border="0" alt="" />';

	// insert non db image:{IMAGE:image.ext:alt text} ----------KH (flip-flop) 17.08.2005
	$search[7]		= '/\{IMAGE:(.*?):(.*?)\}/';
	$replace[7]		= '<img src="picture/$1" border="0" vspace="0" hspace="0" alt="$2" title="$2" />';
e.G. [BACK]{IMAGE:back.gif:My alt text}[/BACK]

:!: Atention: You must edit all used {IMAGE:image.ext} to {IMAGE:image.ext:} or {IMAGE:image.ext:My text} :!:


Gruß Knut
Last edited by flip-flop on Tue 25. Apr 2006, 07:46, edited 2 times in total.
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
xtian
Posts: 13
Joined: Fri 3. Feb 2006, 09:30
Location: Germany
Contact:

error

Post by xtian »

Hi Knut,

thanks for this; I am still having trouble with it though. Like before (with the emedia hack) I keep getting the following error:

Parse error: parse error, unexpected '%' in /homepages/15/d150834013/htdocs/q08.de/include/inc_front/front.func.inc.php on line 3201

This is why I thought it has got to do with the version I am using.

Cheers
xtian
User avatar
pico
Posts: 2595
Joined: Wed 28. Jul 2004, 18:04
Location: Frankfurt/M Germany
Contact:

Post by pico »

Hi

what is in this Line 3201 the Code in your File front.func.inc.php

PS. don't use Word or any other Wordprocessing Software
Lieber Gott gib mir Geduld - ABER BEEIL DICH
Horst - find me at Musiker-Board
xtian
Posts: 13
Joined: Fri 3. Feb 2006, 09:30
Location: Germany
Contact:

Post by xtian »

something that should not have to do with images (although I am not a PHP specialist):

if ($store_arr['ampm']==%22PM%22) { // Is it PM? If so test to see if hour is set
User avatar
pico
Posts: 2595
Joined: Wed 28. Jul 2004, 18:04
Location: Frankfurt/M Germany
Contact:

Post by pico »

Hi

try it with

Code: Select all

if ($store_arr['ampm']=="PM").... 
Lieber Gott gib mir Geduld - ABER BEEIL DICH
Horst - find me at Musiker-Board
xtian
Posts: 13
Joined: Fri 3. Feb 2006, 09:30
Location: Germany
Contact:

Post by xtian »

That´s it!! As I said I don´t know much about PHP.
Thank you very much for this.

Gruß
Christian
Locked