vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Supply ALT text for IMG tag (https://vborg.vbsupport.ru/showthread.php?t=100455)

ILTK 11-09-2005 01:28 PM

Supply ALT text for IMG tag
 
Having ALT text for images in a thread created with the IMG tag would be great for SEO and also to comply with ADA (Americans with Disabilities Act)

One way this could be done and not require any extra knowledge from users, would be to have a setup part where you specify what to parse out of the image filename ('-' '.jpg' '.gif' '.png' etc..), and then stick what's left after those things are parsed out of the filename into the ALT tag.

Just an idea, I don't know how to code this myself, but I think such a plugin would be welcomed by a lot of sites.

KW802 11-09-2005 05:36 PM

ILTK,

Hopefully somebody can convert this to a plugin but if you want a 'hack' method..... :)

In you /forums/includes/class_bbcode.php file look around line 1827 for:
PHP Code:

return '<img src="' $link '" border="0" alt="" />'

... and replace it with:
PHP Code:

$link_file $link;
$link_bits split('/',$link_file);
if(
is_array($link_bits)) $link_file $link_bits[count($link_bits)-1];
$link_bits split('\.',$link_file);
$link_desc str_replace('_'' '$link_bits[0]);
return 
'<img src="' $link '" border="0" alt="' $link_desc '" />'

What that will do is take something like...
PHP Code:

[img]http://www.coolscifi.com/forums/images/cinvin_steelrubber/misc/coolscifi_logo.jpg[/img] 

... and give it an ALT tag of "coolscifi logo" (the "_" is being replaced converted to a space). :)

Kila_Bite 11-12-2005 12:11 PM

Good idea and thanks for the code KW802, however i'm still unclear where the alt tag would sit and what format to put it in. Where do you put the tag? Like you do in normal html after the url but before the /img? And if so, do you use the same syntax as HTML, so alt="text".

Thanks.

ILTK 11-12-2005 02:32 PM

Thanks a lot KW802, that is perfect :)

@Killa_bite, just name the image using underscores for spaces and this code will take care of the rest, you don't have to specify the alt text.

For example:

keyword1_keyword2.jpg

Would make it insert alt="keyword1 keyword2" for you.

KW802 11-12-2005 03:43 PM

Quote:

Originally Posted by ILTK
Thanks a lot KW802, that is perfect :)

No problem. :)

kofoid 05-26-2006 03:31 PM

Is there a way to do this for your logo graphic?

Kirk Y 05-26-2006 03:46 PM

Well, for your logo graphic you'd just manually put in alt="", wouldn't you? It's not dynamic, unless you've made it that way.

greatwallforum 12-02-2008 01:24 PM

Many images have names with no SEO or ADA value, such as IMG_1234.jpg.

How can I use the thread title or the forum name instead of the image filename?


All times are GMT. The time now is 04:47 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01540 seconds
  • Memory Usage 1,733KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete