how to remove or hide footer text of an popup

Post Reply
Message
Author
eritrea
Posts: 1
Joined: Fri Mar 01, 2013 2:13 pm

how to remove or hide footer text of an popup

#1 Post by eritrea »

Hi,

Can some one tell me how you can remove or hide the footer text of an popup?

Thank you in advance.
Attachments
footer text popup.jpg
footer text popup.jpg (6.28 KiB) Viewed 23549 times

Admiror Gallery 5 - Fundraising Campaign

ander26171
Posts: 7
Joined: Sun Oct 09, 2011 12:47 pm

Re: how to remove or hide footer text of an popup

#2 Post by ander26171 »

Is this possible?
If so what file should be edited to remove the image name from the popup?

User avatar
Vasiljevski
Developer
Developer
Posts: 1258
Joined: Sat Aug 14, 2010 9:31 pm
Location: Novi Sad, Serbia
Contact:

Re: how to remove or hide footer text of an popup

#3 Post by Vasiljevski »

Yes, it is possible :)

Changing the files depends on the popup you use.

Let me know which one do you use and I will give you the info how to remove it :)
Help Admiror Gallery become even better,
give us a review on JED

ander26171
Posts: 7
Joined: Sun Oct 09, 2011 12:47 pm

Re: how to remove or hide footer text of an popup

#4 Post by ander26171 »

I am using the fancybox popup.

User avatar
Vasiljevski
Developer
Developer
Posts: 1258
Joined: Sat Aug 14, 2010 9:31 pm
Location: Novi Sad, Serbia
Contact:

Re: how to remove or hide footer text of an popup

#5 Post by Vasiljevski »

Open index.php from [Joomla root]\plugins\content\admirorgallery\admirorgallery\popups\fancybox
And add

Code: Select all

,titleShow : false
It should look like:

Code: Select all

$this->popupEngine->endCode = '
<script type="text/javascript" charset="utf-8">
        AG_jQuery("a[rel=' . $this->popupEngine->rel . ']").fancybox({
		 \'transitionIn\' : \'elastic\',
		 \'transitionOut\' : \'elastic\',
		 \'easingIn\' : \'easeOutBack\',
		 \'easingOut\' : \'easeInBack\'
                 ,titleShow : false
        });
</script>
';
Thats all :)
Help Admiror Gallery become even better,
give us a review on JED

Admiror Gallery 5 - Fundraising Campaign

Post Reply