A documentation change is requested elsewhere. For Drupal core (and possibly other projects), once the change has been committed, this status should be recorded in a change record node.
How can I change image title to gallery title when showing image.
Customize the image template. See http://drupal.org/node/223440 or http://drupal.org/project/contemplate
It shows me only image title not gallery title on image page
Ah, yes, sorry. You will need some snippet to load the gallery first. The $node object will have a property "gid", which you need to node_load():
$gallery = node_load($node->gid); print $gallery->title;
This looks like it should work.
Automatically closed -- issue fixed for 2 weeks with no activity.
Restoring issue tags, see #2125755: System messages removed all issue tags during D7 upgrade.
Comments
Comment #1
scroogie commentedCustomize the image template. See http://drupal.org/node/223440 or http://drupal.org/project/contemplate
Comment #2
gkazhus commentedIt shows me only image title not gallery title on image page
Comment #3
scroogie commentedAh, yes, sorry. You will need some snippet to load the gallery first. The $node object will have a property "gid", which you need to node_load():
Comment #4
dddave commentedComment #5
zengenuity commentedThis looks like it should work.