Keyword

Simple Image Gallery problem

  • Meg Rew
  • Meg Rew's Avatar Topic Author
  • Offline
  • New Member
More
14 years 2 months ago #38459 by Meg Rew
Simple Image Gallery problem was created by Meg Rew
New to SIG but have installed the plug in and photos are showing in the relevant article. However when the thumbnail is enlarged (and it looks great!)the caption below reads JW_SIG_NAVTIP followed by the page name of the article when I want it to read the name of the folder - in this case 'Church refurbishment'. Where am I going wrong? It really looks good apart from this problem. I have looked through all the pages relating to SIG but haven't found annswer.

Please Log in or Create an account to join the conversation.

More
14 years 2 months ago #38460 by Riddlers
Replied by Riddlers on topic Re: Simple Image Gallery problem
After wasting a whole day trying to fix the problem with images opening in a new window instead of a lightbox I would be very grateful if anyone could at least fix this problem as I do have the same issue with the image description

PLEASE!!!!

Please Log in or Create an account to join the conversation.

More
14 years 2 months ago #38461 by Riddlers
Replied by Riddlers on topic Re: Simple Image Gallery problem
Kinda quiet here  ???

Please Log in or Create an account to join the conversation.

More
14 years 2 months ago #38462 by Katia
Replied by Katia on topic Re: Simple Image Gallery problem
@ Riddlers, you probably have a conflict with another script of your site...
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.

More
14 years 2 months ago #38463 by Riddlers
Replied by Riddlers on topic Re: Simple Image Gallery problem
I have tried the pro version and all different engines, it works for a while but suddenly starts making problems again. I deleted cache, purged old cache, it works for a while, all of a sudden it makes my header rotation images pop up in new windows. I removed all SIG plugins and with other it works perfectly, however, they don't have the options I like about SIG.

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.

More
14 years 2 months ago #38464 by Katia
Replied by Katia on topic Re: Simple Image Gallery problem
Provide me a link to your gallery (using SIG PRO) please.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

More
14 years 2 months ago #38465 by raf
Replied by raf on topic Re: Simple Image Gallery problem
hi there,
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
  • Meg Rew's Avatar Topic Author
  • Offline
  • New Member
More
14 years 1 month ago #38466 by Meg Rew
Replied by Meg Rew on topic Re: Simple Image Gallery problem
Still not making any progress with this and would really appreciate some advice from the Forum

Please Log in or Create an account to join the conversation.

More
14 years 1 month ago #38467 by NeonYouki
Replied by NeonYouki on topic Re: Simple Image Gallery problem
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.

More
14 years 1 month ago #38468 by tazhelico
Replied by tazhelico on topic Re: Simple Image Gallery problem
If back and front end are in same language, you can add this:
$lang =& JFactory::getLanguage();
$lang->load('plg_content_jw_simpleImageGallery', JPATH_ADMINISTRATOR);
in default.php after:
defined('_JEXEC') or die('Restricted access');
and create the language file in administrator/language e-g for french: fr-FR.plg_content_jw_simpleImageGallery.ini
If you are in english normally it's allready there.

Please Log in or Create an account to join the conversation.

More
14 years 1 month ago #38469 by pjries
Replied by pjries on topic Re: Simple Image Gallery problem
tazhelico, *thank you so much*! This did the trick. The connection between the language file and the template was missing.  *SO* appreciate your posting this solution!

Please Log in or Create an account to join the conversation.

More
14 years 2 weeks ago #38470 by Devon
Replied by Devon on topic Re: Simple Image Gallery problem
tazhelico, you saved my life with this one! THANKS A BUNCH! :)

Please Log in or Create an account to join the conversation.

More
14 years 1 week ago #38471 by Annagyijjk
Replied by Annagyijjk on topic Re: Simple Image Gallery problem
I tried the pro version and all the different engines, he worked for a while, but suddenly starts to new problems. I deleted the cache, cache purged old, he worked for a while

Please Log in or Create an account to join the conversation.

More
14 years 1 week ago #38472 by nicolelam
Replied by nicolelam on topic Re: Simple Image Gallery problem
Wow I'm glad I found this post. I have this problem but couldn't figure it out myself.
Thanks for the great post.

Please Log in or Create an account to join the conversation.

More
14 years 1 week ago #38473 by nicolelam
Replied by nicolelam on topic Re: Simple Image Gallery problem
grrrrrrr >:( >:(
its not working for me again=(

Please Log in or Create an account to join the conversation.

More
11 years 10 months ago #38474 by pelenato
Replied by pelenato on topic Re: Simple Image Gallery problem
Thanks for this

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.


Powered by Kunena Forum