Displaying A Link Directly To The Extra Field Image?
Friends! If you want to display link directly to your extra field image then you must strip the default code that K2 uses to insert the image into it’s foreach loop.
You can do it by inserting this directly into your item.php override file.
You can do it by inserting this directly into your item.php override file.
<?php
$var = $this->item->extraFields->Image->value ;
$var = preg_replace(‘/<img src=”/’,””,$var);
$var = preg_replace(‘/” alt=”Image” \>/’,” “,$var);
echo ‘<a href=”‘ . $var . “TextOfLink” . “</a>” ;
?>
$var = $this->item->extraFields->Image->value ;
$var = preg_replace(‘/<img src=”/’,””,$var);
$var = preg_replace(‘/” alt=”Image” \>/’,” “,$var);
echo ‘<a href=”‘ . $var . “TextOfLink” . “</a>” ;
?>
Latest posts by LT Digital Team (Content & Marketing) (see all)
- Joomla Web Hosting: A Comprehensive Guide - April 3, 2025
- How to Have a Foreground Image Using Joomla: A Step-by-Step Guide - March 30, 2025
- Can You Run E-commerce on Joomla? A Comprehensive Guide - March 30, 2025
Recent Comments