Remove "Keyword Album" prefix before listed keywords
|
naturalEnquirer
Joined: 2008-06-15
Posts: 52 |
Posted: Sat, 2008-11-15 16:28
|
|
In keyword albums, the album name is listed as: Is there a place I can change it to say just keywordname? In my case, I'd like to change it in the breadcrumbs and on the album page. |
|
| Login or register to post comments |

Posts: 16311
Not a CSS customization but...
edit /moduels/keywordAlbum/KeywordAlbum.inc
$module->translate(array('text' => 'Keyword Album: %s', 'arg1' => $keyword)),There is a few other places in the module that has text that is translatable as well, but don't know what you really want to change and where.
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 52
Thanks, that does exactly what I need.
Is there a way to make the changes to the .inc file "locally" like tmeplate files so that changes won't be lost during upgrades?
Posts: 16311
Nope, but you could copy the module and rename it.
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 11
How can I chaange "Keyword Album" prefix to be suffix?
Posts: 16311
$module->translate(array('text' => 'Keyword Album: %s', 'arg1' => $keyword)),to
$module->translate(array('text' => '%s: Keyword Album', 'arg1' => $keyword)),Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 11
Thanks Dave