We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Template file slick_default.html5 (src/Resources/contao/templates/gallery/slick_default.html5) displays the alt tag of an image as the title.
I suggest to change line 6 <a href="<?php echo $item->href; ?>"<?php echo $item->attributes; ?> title="<?php echo $item->alt; ?>"> to <a href="<?php echo $item->href; ?>"<?php echo $item->attributes; ?> title="<?php echo $item->linkTitle; ?>"> to generate the expected behaviour.
<a href="<?php echo $item->href; ?>"<?php echo $item->attributes; ?> title="<?php echo $item->alt; ?>">
<a href="<?php echo $item->href; ?>"<?php echo $item->attributes; ?> title="<?php echo $item->linkTitle; ?>">
Or did I miss something? :)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Template file slick_default.html5 (src/Resources/contao/templates/gallery/slick_default.html5) displays the alt tag of an image as the title.
I suggest to change line 6
<a href="<?php echo $item->href; ?>"<?php echo $item->attributes; ?> title="<?php echo $item->alt; ?>">
to
<a href="<?php echo $item->href; ?>"<?php echo $item->attributes; ?> title="<?php echo $item->linkTitle; ?>">
to generate the expected behaviour.
Or did I miss something? :)
The text was updated successfully, but these errors were encountered: