- Posts: 32
COMMUNITY FORUM
JW_SIG_NAVTIP showing in popup
- LukeDouglas
-
Topic Author
- Offline
- Junior Member
Any ideas how to stop this 'code' from showing?
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.
- LukeDouglas
-
Topic Author
- Offline
- Junior Member
- Posts: 32
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.
- LukeDouglas
-
Topic Author
- Offline
- Junior Member
- Posts: 32
Please provide me a link to your gallery.
The site is waiting for final approval to go live so it is still off-line and requires an administrator password to access. It should go live this week so when it does, I'll post the link.
Please Log in or Create an account to join the conversation.
- LukeDouglas
-
Topic Author
- Offline
- Junior Member
- Posts: 32
www.swapncruisin.com/index.php/gallery/86-11th-swap-n-cruisin-recap-may-2010
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.
- LukeDouglas
-
Topic Author
- Offline
- Junior Member
- Posts: 32
Uninstall and reinstall the plugin please.
I downloaded the most recent Joomla 1.6 version, uninstalled the current one, installed the new one with no change. JW_SIG_NAVTIP still shows.
Any other suggestions?
Please Log in or Create an account to join the conversation.
- mightymouse
-
- Offline
- New Member
- Posts: 3
How can we change this nav tip to display the gallery name
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.
- LukeDouglas
-
Topic Author
- Offline
- Junior Member
- Posts: 32
Please provide me a link to your site.
hathcockroofingandremodeling.com/index.php/gallery/commercial-gallery
Please Log in or Create an account to join the conversation.
- stotty06
-
- Offline
- New Member
- Posts: 2
forum.joomlaworks.net/simple-image-gallery-%28plugin%29/%27click_to_enlarge%27-showing-instead-of-the-actual-caption-text/20/
Please Log in or Create an account to join the conversation.
- creativeweb
-
- Offline
- New Member
- Posts: 1
If you want to remove that text, simply paste the following into any style sheet on your Joomla site:
#lbCaption {
display:none;
}
No need to hack the core, just a simple style change :D
Please Log in or Create an account to join the conversation.
- luciano991
-
- Offline
- New Member
- Posts: 2
Anyway, for now I will turn off the captions until this gets fixed because otherwise SIG is exactly what I need, it's perfect and simple and wonderful for a simple image grid that need thumbnails and zooms. Excellent.
All the best,
luciano
Please Log in or Create an account to join the conversation.
- Pulsator
-
- Offline
- New Member
- Posts: 2
Only saw this one as don't visit here often :)
If you navigate to the following location in your Joomla installation (with SIG installed) you should find a file titled default.php.
path: site root/plugins/content/jw_simpleImageGallery/jw_simpleImageGallery/tmpl/polaroids/
Open the file in your editor.
Approx line 14 you will find the following:
// We set the caption output here so the HTML structure below is a "bit" cleaner :)
$photoCaption = htmlentities(JText::_('JW_SIG_NAVTIP').' <b>'.$row->title.'</b>
', ENT_QUOTES, 'utf-8');
Simply edit out the JW_SIG_NAVTIP variable so you end up with the following instead:
// We set the caption output here so the HTML structure below is a "bit" cleaner :)
$photoCaption = htmlentities(JText::_('').' <b>'.$row->title.'</b>
', ENT_QUOTES, 'utf-8');
This will remove the navigation tip but leave the gallery title.
Please Log in or Create an account to join the conversation.