- Posts: 3
COMMUNITY FORUM
Simple Image Gallery problem
- Meg Rew
-
Topic Author
- Offline
- New Member
Please Log in or Create an account to join the conversation.
- Riddlers
-
- Offline
- New Member
- Posts: 3
PLEASE!!!!
Please Log in or Create an account to join the conversation.
- Riddlers
-
- Offline
- New Member
- Posts: 3
Please Log in or Create an account to join the conversation.
- Katia
-
- Offline
- Platinum Member
- Posts: 4696
I suggest you to use SIG PRO which has more pop up engines to select in order to avoid such conflicts.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Riddlers
-
- Offline
- New Member
- Posts: 3
I guess my search for the perfect gallery continues. BTW, it was a brand new joomla installation with a template from joomla-templates.com and it doesn't work properly :(
Please Log in or Create an account to join the conversation.
- Katia
-
- Offline
- Platinum Member
- Posts: 4696
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- raf
-
- Offline
- New Member
- Posts: 1
are we supposed to understand from previous answers that SIG (no pro) users have to have "JW_SIG_NAVTIP" as a caption under enlarged images ??? That would be a pity since the plugin is just perfect except for that regretable caption display :'(
thx
raf.
Please Log in or Create an account to join the conversation.
- Meg Rew
-
Topic Author
- Offline
- New Member
- Posts: 3
Please Log in or Create an account to join the conversation.
- NeonYouki
-
- Offline
- New Member
- Posts: 1
Open the file: [JOOMLA DIR]\plugins\content\jw_simpleImageGallery\tmpl\Polaroids\default.php
Search for: JW_SIG_NAVTIP
Remove:
Either remove
________________________________________
<?php echo JText::_('JW_SIG_NAVTIP');?>
to get rid of the JW_SIG_NAVTIP bit or remove
______________________________________________
title="<?php echo JText::_('JW_SIG_NAVTIP');?> <b><?php echo $row->title; ?></b>
"
to get rid of the JW_SIG_NAVTIP bit as well as the title of the article.
How do you find out where a string is in a file without endless searching? Grab a copy of Notepad++ (It's free) and hit ctrl+f and select "find in files". Enter what you want to find and the base directory to start recursively searching in and you're good to go. It will display every occurrence of that string. Also, be sure to remove the white space (blank spaces) around the string (what you're searching for) in order to make sure it isn't searching for that string with the spaces around it.
Please Log in or Create an account to join the conversation.
- tazhelico
-
- Offline
- New Member
- Posts: 1
$lang =& JFactory::getLanguage();
$lang->load('plg_content_jw_simpleImageGallery', JPATH_ADMINISTRATOR);
defined('_JEXEC') or die('Restricted access');
If you are in english normally it's allready there.
Please Log in or Create an account to join the conversation.
- pjries
-
- Offline
- New Member
- Posts: 1
Please Log in or Create an account to join the conversation.
- Devon
-
- Offline
- New Member
- Posts: 4
Please Log in or Create an account to join the conversation.
- Annagyijjk
-
- Offline
- New Member
- Posts: 1
Please Log in or Create an account to join the conversation.
- nicolelam
-
- Offline
- New Member
- Posts: 3
Thanks for the great post.
Please Log in or Create an account to join the conversation.
- nicolelam
-
- Offline
- New Member
- Posts: 3
its not working for me again=(
Please Log in or Create an account to join the conversation.
- pelenato
-
- Offline
- New Member
- Posts: 1
OK since no one wants to answer this question and instead only want to try to get people to buy the pro version, I decided to figure it out and sign up to post the answer. Here's how to remove that text from the non-pro version. (I don't know what the string would translate to since searching the files didn't show that string defined anywhere, but here's how to get it off of the description area.)
Open the file: [JOOMLA DIR]\plugins\content\jw_simpleImageGallery\tmpl\Polaroids\default.php
Search for: JW_SIG_NAVTIP
Remove:
Either remove
________________________________________
<?php echo JText::_('JW_SIG_NAVTIP');?>
to get rid of the JW_SIG_NAVTIP bit or remove
______________________________________________
title="<?php echo JText::_('JW_SIG_NAVTIP');?> <b><?php echo $row->title; ?></b>
"
to get rid of the JW_SIG_NAVTIP bit as well as the title of the article.
How do you find out where a string is in a file without endless searching? Grab a copy of Notepad++ (It's free) and hit ctrl+f and select "find in files". Enter what you want to find and the base directory to start recursively searching in and you're good to go. It will display every occurrence of that string. Also, be sure to remove the white space (blank spaces) around the string (what you're searching for) in order to make sure it isn't searching for that string with the spaces around it.
Please Log in or Create an account to join the conversation.