Scott
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 2.1 ImagesOK – I deleted the pics and re-uploaded them and now I get the “thumbnail” option and can insert them properly into my posts!
Also, I found a lighbox 2.2 mod that actually works on my version of 2.1 ?? You can find it here:
https://www.stimuli.ca/lightbox
Because I am using effects.js and prototype.js in my blog (they were already loaded), I had to delete the two lines in lightbox2.php that loaded these javascript files. Also, this plugin requires you to manually insert the code ‘rel=”lightbox”‘ or ‘rel=”lightbox[groupname]”‘ because it has a nifty feature in which you can group photos together and view them as a lightbox slideshow of sorts.
Scott
Forum: Fixing WordPress
In reply to: 2.1 ImagesYes, they are all jpg images – they were previously uploaded images though – under “Browse All”. I haven’t tried to upload new ones since the upgrade. Thanks!
Scott
Forum: Fixing WordPress
In reply to: 2.1 ImagesThanks for the info – I do not have a “Thumbnail” option on my page, just full-size and title. What could be wrong?
Scott
Forum: Plugins
In reply to: Alex’s 1.2 Compatible PluginsHello – I’ve installed the since last visit hack and could not get it to work properly until I figured out the following adjustments:
the require statement in the <head> section of index.php:
<?php require(‘https://www.yoursite.com/wp-content/plugins/wp-last-visit.php?type=js’); ?>Also in wp-last-visit.php, the following lines were missing:
<script type=”text/javascript” language=”javascript”>
It should be placed here:
<script type=”text/javascript” language=”javascript”>
// var slvIndicator = ‘New’;
var slvIndicator = ‘<img src=”<?php bloginfo(‘siteurl’); ?>/ak-img/new_2.gif” alt=”New” title=”New since your last visit.” />’;</script>
It should be placed here:
var end = document.cookie.indexOf(“;”, begin);
if (end == -1)
{
end = dc.length;
}
return unescape(dc.substring(begin + prefix.length, end));
}
</script>Hope this helps some of you.
Scott