Mike Toppa
Forum Replies Created
-
Forum: Plugins
In reply to: [Shashin] Formatting the spacing between thumbnails and captionsYou have a customized shashin stylesheet in your theme folder, which is based on an older version of shashin.css. There were some major style changes in Shashin 3.4. I recommend deleting the one you have in your theme folder, and then Shashin will use the one included with the plugin. If you then want to customize it, put a fresh copy in your theme folder, based on the current version of shashin.css
Forum: Plugins
In reply to: [Shashin] Photos not displaying, empty code and albums go blank when clickedSorry for the late reply. Did you work this out? I’m not seeing those problem on your site
Forum: Plugins
In reply to: [Shashin] Twenty Thirteen overlay caption column problemIt looks like the thumbnail size and number of columns is just awkward for the content area. Shashin will shrink the thumbnails to try to provide the number of columns you want, but only by a limited amount (your shortcode wants to show them at 150px wide, but Shashin has shrunk them to 130px, to try to make them fit). After that the columns will wrap. So I’d recommend having fewer columns, or specifying a smaller size for the thumbnails.
Also, I released v3.4.8 a few hours after 3.4.7 (there’s a small bug in 3.4.7), so I recommend upgrading.
Forum: Plugins
In reply to: [Shashin] Twenty Thirteen overlay caption column problemSorry, I forgot I had my ad blocker on – it was blocking some of the scripts you were loading externally, which triggered the errors. With my ad blocker off, there are no errors.
Could you try updating to the latest version of Shashin? It’s 3.4.7 – I just uploaded it this morning. It may not address this, but I’d like to debug using the latest code.
Forum: Plugins
In reply to: [Shashin] Twenty Thirteen overlay caption column problemThere are 6 JS errors on that page (not from Shashin), which makes it difficult to debug. Please us the Chrome Dev Tools to see the errors (after you open it, look for the red x icon in the bottom right, with the number 6 next to it, and click it to see the error report). It looks like your theme is failing to load several scripts – I’m not sure why.
Forum: Plugins
In reply to: [Shashin] Lightbox Not WorkingPlease try the new version of Shashin (3.4.7). Shashin is having conflict with some of the javascript in your theme, and I’ve made some changes that have resolved this problem with other themes. I haven’t tested your theme, so please let me know if it works.
Forum: Reviews
In reply to: [Shashin] Thank You!You’re welcome! Thanks for the positive rating
Forum: Plugins
In reply to: [Shashin] Problems with "Parallax" effect.I’ve partly addressed this problem in the new version of Shashin (3.4.7)
But there is also a problem in the Parallax theme. It comes with 2 different versions of the Isotope javascript library. One of them correctly includes the imagesLoaded library, and the other does not. Unfortunately the theme is loading the one that does not correctly include the imagesLoaded library. You need to open the Parallax theme-functions.php file, and at line 85, change it from this:
$scripts = array('isotope', 'infinitescroll', 'backstretch');to this:
$scripts = array('jquery.isotope.min', 'infinitescroll', 'backstretch');If you make that change, and get the latest version of Shashin, then everything should work.
Forum: Plugins
In reply to: [Shashin] Photo numbers changingI’ve fixed this in version 3.4.7, which I just uploaded
Forum: Plugins
In reply to: [Shashin] Problems with "Parallax" effect.If you could send it to me that would help with debugging. Send me a message through the contact form on my web site and then we can email each other – http://toppa.com/contact
Forum: Plugins
In reply to: [Shashin] Problems with "Parallax" effect.That’s the first time I’ve gotten a youtube video to document a problem – thanks! Which theme are you using specifically?
Forum: Reviews
In reply to: [Shashin] Nearly PerfectThanks very much. Adding tiled layout is on the issues list, but I’m not sure when I’ll get to it.
Forum: Plugins
In reply to: [Shashin] Picasa newest abums firstIn your shashin shortcode, include
order="date" reverse="y"All the shortcode attributes are documented here: http://www.toppa.com/shashin-wordpress-plugin/#shortcode
Forum: Plugins
In reply to: [Shashin] Problem with Twenty ThirteenI just tested the following, and it lets Shashin work with Twenty Thirteen:
1. Download v3.1 of Masonry: http://masonry.desandro.com/masonry.pkgd.min.js
2. Copy it to your wp-content/themes/twentythirteen/js folder
3. Edit the Twenty Thirteen functions.php file. Comment out line 166, like this:
//wp_enqueue_script( 'jquery-masonry' );4. After the above line, add this:
wp_enqueue_script( 'jquery-masonry3', get_template_directory_uri() . '/js/masonry.pkgd.min.js', array( 'jquery' ), '2013-07-18', true );Note this is a “quick and dirty” solution. If you want to follow proper WP practices, you would create a child theme and have it dequeue jquery-masonry, and then enqueue the new version there. That way you would not lose your changes if there is an upgrade to Twenty Thirteen.
Or if you want to go really crazy and remove Masonry altogether without breaking the theme, someone wrote a tutorial.
Forum: Plugins
In reply to: [Shashin] Wanted: Shashin old version (3.4.5)Also, I should make a clarification: I added the jQuery requirement to the readme file in verson 3.4.6, but it’s actually required for any of the 3.4.x versions. You should go back to 3.3.3 if you want to get around the jQuery version requirement.