[Solved]: anycontent, Gallery description not showing up in hardwired theme [Solved]: anycontent, Gallery description not showing up in hardwired theme
 

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

[Solved]: anycontent, Gallery description not showing up in hardwired theme

Started by blazer380, August 15, 2004, 04:32:26 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

blazer380

What do I have to edit in order to make the hardwired theme show anycontent.php and gallery description? anycontent is not working for me in any themes. gallery descriptions only not working in hardwired.

i have ver. 1.3.1

Nibbler

Hardwired doesnt display the gallery description. You can add it into hardwire's template.hml by placing {GAL_DESCRIPTION} where you want it to appear. Anycontent should be added in config with something like /anycontent/ in the content of the main page option.

blazer380

any way you can post the actual code? like...

open config.php

find... this code
replace with this code
etc.

i'm a real n00b to coding.. =)

thanx a bunch

Joachim Müller

to add the description, edit themes/hardwired/template.html, find            <td width="94%" height="22" valign="bottom" align="right"><span class="gal_name">{GAL_NAME}</span></td>and replace with            <td width="94%" height="22" valign="bottom" align="right"><span class="gal_name">{GAL_NAME}&nbsp;{GAL_DESCRIPTION}</span></td>

No code changes necessary to enable anycontent, just browse to coppermine config when logged in as admin, find
QuoteThe content of the main page
and add "breadcrumb/" at the very start, as suggested in the documentation.

Both issues have been covered in the documentation and have been asked (and answered) on this board very often alread. In the future, search before posting.

GauGau

blazer380

thanx, I modified your code slightly to have the description show up on the next line and smaller size text.

Quote<td width="94%" height="22" valign="bottom" align="right"><span class="gal_name">{GAL_NAME}<BR>
            <span class="style1">{GAL_DESCRIPTION}</span></span></td>

for anycontent, I already had "breadcrumb/catlist/alblist/" in my config. and it still doesnt show up.

Nibbler


blazer380