Category Title for title, and alt (without link) Category Title for title, and alt (without link)
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Category Title for title, and alt (without link)

Started by SolidSnake2003, May 21, 2011, 05:38:39 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

SolidSnake2003

My Gallery

I have one more question, I have gotten my category icons to work(thanks to andre), and I would now like to add the category name to the title="" and alt=""

is it possible to add this?


preg_match('/<a href="index\.php\?cat=([0-9]+)">/', $category[0], $matches);
        if (!isset($category['cat_icon'])) { $category['cat_icon'] = '<img src="http://www.mysite.net/cpg/images/categories/catid_'.$matches[1].'.jpg" title="Cat Name" alt="Cat Name" width="80px" height="80px" border="0" hspace="0" vspace="0" />'; }

ΑndrĂ©

According to that solution, replace the code with
        preg_match('/<a href="index\.php\?cat=([0-9]+)">(.*)<\/a>/', $category[0], $matches);
        if (!isset($category['cat_icon'])) { $category['cat_icon'] = '<img src="http://www.mysite.net/cpg/images/categories/catid_'.$matches[1].'.jpg" title="'.$matches[2].'" alt="'.$matches[2].'" width="80px" height="80px" border="0" hspace="0" vspace="0" />'; }

SolidSnake2003