|
|
Due to the volume of spam happening on our forums, posting is now restricted to verified members only. If you're not verified, drop us a note with your username.
|
|
Home > FlexCMS Support Forum > General > Feature Requests > Two small requestes
FlexCMS Support Forum
Two small requestes Started July 4, 2006 @ 8:09pm by Jorge
|
Post Message |
|
|
Two small requestes | July 4, 2006 @ 8:09pm | Hi David
Now my FlexCMS works and I discover same needs. It's possible put more than one picture (image) on a article? and on Photo Gallery I need to put more text discription on photos. Two small requestes, you see .
Best regards
Jorge Santos |
|
|
|
|
|
|
| |
DCSun Administrator
Posts: 625 |
|
|
| July 4, 2006 @ 10:28pm | Jorge,
Unfortunately, no, you can only add one image per article the way it's currently set up. You can, however, use the page editor on Internet Explorer 5.5 or 6.0 (or straight html with any browser) to add more images to the body of the article itself if you wish.
As for additional text with the photos, there shouldn't be a hard limit on what you can enter there. There are some limits to what you can fit in that space, but it's quite easy to display a fairly long description. It's currently an input box, not a text area, so if your description was pasted from somewhere else and contained a line break that might have cut it short. We will be converting that to a text area for the next release, but if you would like to use that on your site before then, make these changes:
- inc-pg-admin-photos.php, replace this (line 127):
Code
<tr><td><font face="'.$FontFace.'" size="'.$FontSize.'"><b>'.$MsgText[3][36].':</b></td><td><input type="text" name="Description" size="55" value=""><!-- <br><font face="'.$FontFace.'" size="'.($FontSize-1).'">(Optional) --></td></tr> |
| with this:
Code
<tr><td><font face="'.$FontFace.'" size="'.$FontSize.'"><b>'.$MsgText[3][36].':</b></td><td><textarea name="Description" cols="40" rows="3"></textarea><!-- <br><font face="'.$FontFace.'" size="'.($FontSize-1).'">(Optional) --></td></tr> |
|
- inc-pg-admin-photos_edit.php, replace this (line 137):
Code
<tr><td><font face="'.$FontFace.'" size="'.$FontSize.'"><b>'.$MsgText[3][36].':</b></td><td><input type="text" name="Description" size="55" value="'.str_replace('"',''.'34;',$row55['ImageDescription']).'"><!-- <br><font face="'.$FontFace.'" size="'.($FontSize-1).'">('.$MsgText[3][37].') --></td></tr> |
| with this:
Code
<tr><td><font face="'.$FontFace.'" size="'.$FontSize.'"><b>'.$MsgText[3][36].':</b></td><td><textarea name="Description" cols="40" rows="3">'.$row55['ImageDescription'].'</textarea><!-- <br><font face="'.$FontFace.'" size="'.($FontSize-1).'">('.$MsgText[3][37].') --></td></tr> |
|
David
FlexCMS v3.2 Has Been Released! |
|
|
|
|
|
|
|
|
|
| MEMBERS
|
|
|