No 'Insert' Link
I used to have the 'Insert Image' link with this plugin, but it's disappeared all of a sudden.

You can see my site and how there is no Insert Image link in the image that I just inserted here.
Any ideas?
I've tried deleting and reuploading the plugin with no luck.
0
Comments
Welcome to the community!
What version of Vanilla are you running?
Hey @hgtonight - I'm running 2.0.8.14.
I just updated to 2.0.8.18 - but still no dice.
Any help?
Have you added any CSS rules that involve
display: none?I have not, but I have someone who does my programming. I will check - any particular files I would for this?
It would be in your theme's
custom.cssfile.Found this in custom.css:
.Popup .CurrentPicture {
}
And this:
.Form-Header .Username {
}
One more:
.Hidden {
display: none;
}
Any ideas?
I'm guessing the first one might have something to do with it?
look in firefox. to see if you can see something hidden form view that relates to it.
without a link and test login to your site, it make it difficult for anyone else to diagnose.
Is just a class for example if you say div class="Hidden" then it will not display that, so there could be something with that class on it.
the link to the file upload insert image happens to have one of that class but only because it appears when hovered not static. You might be able to override the hidden with css
< a class="InsertImage Hidden" target="_blank" href="http://www.vrijvlinder.com/forum/uploads/FileUpload/38/e763bcb8881278df3339b23b962fdc.jpg" style="display: inline; " >Insert Image< /a >
the css stick this in the custom.css of the theme you are using.
a.InsertImage.Hidden{display:block!important;visibility:visible!important;color:#000;}