Page 1 of 1

how to change download link

Posted: 16 Aug 2008, 01:26
by crazyluki
hi!
how to change download link in category layout to directly download link instead of popup ?
i was trying to edit
/www/components/com_phocagallery/views/detail/tmpl/default.php but i can`t get this working....
it`s probably between 205 and 220 lines in this file, but i can`t edit it;)

thanks for your help:)

Re: how to change download link

Posted: 16 Aug 2008, 01:44
by crazyluki
i resolve my problem

Code: Select all

if ($value->displayicondownload == 1)
				{
				$nazwapliczku = str_replace(' ','%20', $value->filename );
				?> <a title="<?php echo JText::_('Image Download');//$value->title; ?>" href=<? echo"http://MYSITENAME/images/phocagallery/$nazwapliczku";?><?php
						if ($this->detailwindow == 1)
						{
							echo ' onclick="'. $value->button->options.'"';
						}
						else
						{
							echo '';
						}
						echo ' >';
						echo JHTML::_('image', 'components/com_phocagallery/assets/images/icon-download.'.PhocaGalleryHelperFront::getFormatIcon(), JText::_('Image Download'));
						echo '</a>';
				
				}
and now i have direct link to image;)

Re: how to change download link

Posted: 17 Aug 2008, 15:19
by Jan
ok