Mike Toppa
Forum Replies Created
-
Forum: Plugins
In reply to: [Shashin] [Plugin: Shashin] Not displaying anything on postsOn the Shashin settings menu, could you check the value for “Default maximum number of photos to show”? If it’s 0, then nothing will display. I’m not sure why else it wouldn’t work for you. I haven’t seen this problem anywhere else. Can you get any of the other shortcodes to work, like for showing individual photos?
Forum: Plugins
In reply to: [Shashin] [Plugin: Shashin] Not displaying anything on postsI can’t reproduce the problem – it works ok for me. Could you go to your Shashin Tools menu, and click on the album title? Then you should see all the photos in the album. This will give me a clue whether it’s a syncing problem or something to do with the shortcode. If you don’t see the photos, click the sync icon on the tools menu for the album and see if that fixes it.
Also, just to clarify, the album id number you see in the shortcode is assigned by Shashin. It’s not the Picasa ID number. Since Shashin supports Picasa, Twitpic, and YouTube, it assigns its own ID numbers to the albums. You’ll see on the Shashin Tools menu that each album has an ID number.
Forum: Plugins
In reply to: [Shashin] [Plugin: Shashin] Not displaying anything on postsWell that is odd – the shortcode looks fine, and it’s generating an html table in the post, but it’s an empty table. Could you also give me a link to the album on picasa? (the one that has shashin id #3, since that’s what’s in the shortcode). I will see if I can reproduce this problem. (It might be Friday before I get to it – it’s getting late tonight and we have guests tomorrow for thanksgiving…)
Forum: Plugins
In reply to: [Shashin] [Plugin: Shashin] Not displaying anything on postsOk – I misunderstood. Could you copy and paste the shortcode here, so I can see it? Also, could you give me a link to the post where you put the shortcode? Then I can examine the html. (If you don’t want to post a link publicly, you can send it to me through my contact form – http://www.toppa.com/contact )
Forum: Plugins
In reply to: [Shashin] [Plugin: Shashin] Not displaying anything on postsHi – could you let me know what browser you are using? (which kind, version number, and your platform). Clicking “Insert shortcode” should put the shortcode in the post wherever the cursor was positioned, and then close the media browser window.
Forum: Plugins
In reply to: [Shashin] [Plugin: Shashin] Hide albums thumbnailsI just uploaded version 3.0.5, which contains a fix for this.
Forum: Plugins
In reply to: [Shashin] [Plugin: Shashin] Hide albums thumbnailsHi – I’ve tested this on my site and found the same problem. It’s a bug. When I designed it I assumed you would close the first set of album photos before opening the second. I didn’t think to test using it this way. I’ll work on fixing it.
Forum: Plugins
In reply to: [Shashin] [Plugin: Shashin] Fancybox for WordPressHi Drizzle – the Shashin settings menu has options that let you configure how the link and image tags are put together for thumbnails, so you can get it to work with other viewers. I have not tested extensively with other viewers, so if you use this feature, please let me know if you run into any issues
Forum: Plugins
In reply to: [Shashin] [Plugin: Shashin] Share to social siteI’m working on the next version of Shashin now. I like this idea. It won’t make the upcoming version (I’m focusing on some other things first), but I’ll put it on the to-do list, which you can see here: http://www.toppa.com/shashin-3-development-progress/
Robert also posted to the comments section on my blog – we are debugging there: http://www.toppa.com/2011/deko-boko-1-3-now-available/
Good point! In the next version I will set it to use the standard uninstall option that WordPress now provides directly from the plugin menu
This is a late reply, but may be useful for anyone else struggling with this. This is my solution:
function wpSimpleTestActivate() {
if (version_compare(get_bloginfo('version'), '3.0', '<')) {
trigger_error('You must have at least WordPress 3.0 to use SimpleTest for WordPress', E_USER_ERROR);
}
}
Activation runs in a separate process, so triggering a PHP error will not affect anything else. The error message is shown in the activation status message. It’s shown as a PHP fatal error, so it’s not an elegant solution, but I have not found any other way to return an activation status message.
Also, I’m not sure what Ipstenu is referring too. I took a quick look at WP Super Cache – it’s activation function has absolutely nothing in it.
Forum: Plugins
In reply to: [Deko Boko] [Plugin: Deko Boko] stripslashes() errorAlthough the code was stripped out here in the forum, I did get it in the email alerting me to your response. I can see what the problem is now. I will get a fix uploaded within the next few days. Thanks very much for helping me debug!
Forum: Plugins
In reply to: [Deko Boko] [Plugin: Deko Boko] stripslashes() errorThanks for the link. When you go to the Deko Boko settings page, do your settings display normally? I’m wondering if you’re seeing blank entries, as this errors suggests to me something has gone wrong with your settings.
If the settings look ok, and you’re comfortable making a minor code change to help me debug why this is happening to you, please go to line 280 in DekoBoko.php, where you’ll see this:
function getContactPage($atts) {
extract(shortcode_atts(array('template' => DEKOBOKO_DEFAULT_TEMPLATE), $atts));
$status = false;
$dekoboko_options = unserialize(get_option('dekoboko_options'));
array_walk($dekoboko_options, array(DEKOBOKO_PLUGIN_NAME, '_stripslashes'));
Add a new line before the “array_walk” line, and put in this:
var_dump($dekoboko_options); exit;
Then go to your contact form and let me know what you see. You can then remove that line.
If you’re not comfortable editing code, that’s fine. In that case, go to http://www.toppa.com/contact and send me an email. Then I’ll have your email address and I can send you a file with this modification.
Hi Steven – the purpose of the plugin is to provide a standardized way for post authors to make links to other posts. So it’s intended for editors… or am I missing your point?