• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Images legend

Images legend 9 years 9 months ago #28194

  • bribriss
  • bribriss's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
Hello,

Is it possible to display the caption of images uploaded with the form?
Alt tags are uploaded with the image; it would be possible to see them. Anyone know how to do it?

Thank you for your help.
Brigitte
The administrator has disabled public write access.

Images legend 9 years 9 months ago #28255

  • bribriss
  • bribriss's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
THANKS to RSDirectory: That's OK

1. The current RSDirectory! version does not display uploaded images caption. We've added this in our TO DO list for the future versions of the component.

Unfortunately we cannot provide estimates on when will this be available.

2. For the main thumbnail image on the entry details layout, you can try performing template overrides. This procedure is explained here:

www.rsjoomla.com/support/documentation/v...plate-overrides.html

The file you need to perform template overrides is located under this path:

\components\com_rsdirectory\views\entry\tmpl\default_gallery.php

Open the duplicate and add a similar code like:

<?php $ImgTitle = explode(".",$this->escape($image->original_file_name)); ?>
<h4 align="center"><?php echo $ImgTitle[0]; ?></h4>

After:

<a class="rsdir-img" href="<?php echo RSDirectoryHelper::getImageURL($image->hash); ?>">
<img src="<?php echo $src; ?>" alt="<?php echo $this->escape($image->original_file_name); ?>" />
</a>
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!