Mike Toppa
Forum Replies Created
-
Forum: Plugins
In reply to: [Shashin] Wanted: Shashin old version (3.4.5)Have you tried disabling that function in your theme? jQuery is generally good with backwards compatibility. Version 1.6.2 is more than 2 years old – it may be worth seeing if your theme still works with the newer version that’s included with WordPress (assuming you’re on a recent version of WordPress).
But if you still want an older version of Shashin, do not uninstall the current one, as that will delete all your photo data. You can download older versions here:
http://wordpress.org/plugins/shashin/developers/
You will then need to install it manually via FTP:
http://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation
Before doing that, deactivate your current version of Shashin, and delete the “shashin” folder that’s currently in your plugin folder.
Forum: Plugins
In reply to: [Shashin] Featured ImageShashin does not currently work with featured images. Shashin shows images that are on Google+, Youtube, etc – it does not store them locally. Featured images need to be stored locally. I have a to-do item to make Shashin work with featured images (by “sideloading” them). I could probably make it work with random images, but it would mean downloading a new random image each time, which is probably not a good idea for performance reasons.
Forum: Plugins
In reply to: [Shashin] Phototile layoutThanks for the suggestion. I see JetPack has tiled galleries, so I can probably leverage some of that code for Shashin. I’ve added this to the Shashin issues list.
Forum: Plugins
In reply to: [Shashin] problem with adding some albumsYour photo’s takenTimstamp value is -2147483648, which converts to Fri, 13 Dec 1901. I’ve assigned takenTimestamp to be an “unsigned int” in the database, which means it’s not expecting negative numbers. This is also the first time I’ve heard of this problem, but it probably should handle negative values (in case someone scans a really old photo and sets the EXIF date, which may be what’s happening here).
..So to fix this in your code, change lines 96-98 in shashin/lib/ShashinPhoto.php from this:
'db' => array( 'type' => 'int unsigned', 'not_null' => true),to this:
'db' => array( 'type' => 'bigint'),Then deactivate and reactivate Shashin (I forgot to mention that step in my previous response). That should trigger an update to Shashin’s photo table in the database. Please let me know if it works for you.
I’ll make this same revision in the next version.
Forum: Plugins
In reply to: [Shashin] Google Albums – Highlights OnlyThat’s a good idea. Offhand I’m not sure if there’s data in the Picasa feeds that will let me know which photos are starred. If it’s there, I can add this. I’ll provide another update when I have a chance to check. I’ve put it on the issues list here https://github.com/toppa/Shashin/issues/60
Forum: Plugins
In reply to: [Shashin] Suggestion, question: photo source wp mediaThanks for the suggestion. A fundamental aspect to Shashin’s design is not having to store the photos locally, so this isn’t a practical thing to change.
Forum: Plugins
In reply to: [Shashin] problem with adding some albumsIve never seen this error before, but you’ve actually found a bug. The Shashin database table is requiring a value for the takenTimestamp field, but it doesn’t have to be set in Picasa.
I’ll fix this in the next version. If you’re comfortable editing code, you can fix your copy now by going to line 98 in shashin/lib/ShashinPhoto.php and removing
'not_null' => trueForum: Plugins
In reply to: [Shashin] Wanted: Shashin old version (3.4.5)Sorry for the delay. The problem is that your theme (or one of your plugins) is loading an older version of jQuery from http://ajax.googleapis.com instead of using the more recent version that’s included in WordPress – this is not considered good practice. Shashin requires jQuery 1.7 or higher.
Forum: Plugins
In reply to: [Shashin] Wanted: Shashin old version (3.4.5)Shashin album links going to Picasa instead of loading locally is almost always due to a javascript error on the page being caused by the theme or another plugin. If you want to stick with 3.4.6 and give me a link to your site I can take a look.
Forum: Plugins
In reply to: [Shashin] Album goes to Picasa, no album titleeaston7000, I don’t know the answer offhand, but js and/or css files not being loaded sounds like a theme issue.
jhaarsma, if you have a current version of WP then you should have a compatible version. But there are themes and plugins that can force WP to load a different version.
Forum: Plugins
In reply to: [Shashin] Photo numbers changingI’m sorry that happened. There was a bug with album syncing that I thought I’d fixed a while ago, but I just found the same problem with a few of my albums. It’s a bit complicated to explain, but it can happen on rare occasions if there is a problem with automatic album syncing. The best immediate solution is to turn off automatic daily synchronizing (on the Shashin settings page). I’ll get this taken care of in the next version – https://github.com/toppa/Shashin/issues/58
Forum: Plugins
In reply to: [Shashin] Display of thumbnailsYou have your Shashin shortcode inside a div with the class “widget-area” and your theme’s stylesheet has set its width to 220px, so the Shashin thumbnails are wrapping to stay within that width. The old version of Shashin was probably breaking the width of that div (which it should not have). So you’re seeing this now that I’ve made improvements to how Shashin manages its thumbnail layout.
Forum: Plugins
In reply to: [Shashin] Google Album Import Failed,I was referring you to that Jetpack post for an explanation of this type of problem. There is no relationship between Jetpack and Shashin. The error means that Shashin cannot make an outgoing call to Picasa through the functionality that WordPress provides through WP_Http (which provides robust functionality – it means that your hosting providing is restricting the ability to make outgoing calls).
Forum: Plugins
In reply to: [Shashin] Google Album Import Failed,Shashin uses the WordPress WP_Http library to read the Picasa RSS feed. This error indicates your hosting provider is not allowing outgoing requests. See the suggested solutions for the same error with the Jetpack plugin here
Forum: Plugins
In reply to: [Shashin] Album opening directly in PicasaGlad you worked it out. I’ll mark this resolved.