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

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

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