Mike Toppa
Forum Replies Created
-
Forum: Plugins
In reply to: [Shashin] Invalid shortcode attribute: theme_widget_stylesThanks Shawn – it’s appreciated!
Forum: Plugins
In reply to: [Shashin] Invalid shortcode attribute: theme_widget_stylesHi Shawn – it looks like your theme is passing its own data through the widget form, which is being received by Shashin as a shortcode attribute, and its one that it doesn’t recognize, so its throwing an error. I’ll add some handling for this in the next version, but if you want a quick fix and you’re comfortable editing code, open shashin/Public/ShashinShortcode.php, go to line 68 (inside the checkValidKeysAndAssign function) and comment out the “else” statement. That is, take this:
else { throw New Exception(__('Invalid shortcode attribute: ', 'shashin') . htmlentities($k)); }and change it to this:
//else { // throw New Exception(__('Invalid shortcode attribute: ', 'shashin') . htmlentities($k)); //}Then it should just ignore the theme_widget_styles argument and proceed happily along.
Forum: Plugins
In reply to: [Shashin] 3.2.6 not WP-GPX-Maps compatibleCould you clarify the last part of your message? I’m not sure what you mean by “juicebox” or “of shame”
Forum: Plugins
In reply to: [Extensible HTML Editor Buttons] Help PleaseI’m just going to flag this is a duplicate of this post http://wordpress.org/support/topic/help-please-120 and I’ll mark it as resolved
Forum: Plugins
In reply to: [Extensible HTML Editor Buttons] Help PleaseIt was actually a quick fix – I’ve uploaded an update that should take care of it – http://wordpress.org/extend/plugins/extensible-html-editor-buttons/
Sorry again for the difficulties.
Forum: Plugins
In reply to: [Extensible HTML Editor Buttons] Help PleaseHi Joseph – my apologies for the difficulties. And thanks for providing the complete error message. Th new version removes the dependency on the Toppa Plugin Libraries plugin, but I see from the error messages you provided that I overlooked removing one of the dependencies. I will post a fixed version to wordpress.org tonight.
Forum: Plugins
In reply to: [Shashin] Shasin side widgetLeave “Alt Thumb IDs” blank and that will fix it. This is used when you want to substitute an image thumbnail (handy for videos that lack a good thumbnail image). It’s not meant for use with random images (in this case its forcing an image to always be substituted for the first one in the set).
Forum: Plugins
In reply to: [Shashin] Shasin side widgetI’m not able to reproduce this problem. Can you let me know exactly what you entered in the Shashin widget form?
It sounds like you want 9 random images. All you need to enter is a size (probably “small” or “xsmall” for the sidebar), order is “random” and limit is “9”.
Forum: Plugins
In reply to: [Shashin] Pagination problemCurrently, no. Shashin has automatic pagination for photos within albums, but no pagination of albums. On my own site I created multiple pages for my album thumbnails with links between them, but it’s all manual.
I’ve added this to the issues list: https://github.com/toppa/Shashin/issues/43
Forum: Plugins
In reply to: [Shashin] 3.2.6 not WP-GPX-Maps compatibleThat’s odd – 3.2.6 only had minor changes. I’ll check out compatibility with that plugin. In the meantime, all the old versions are available if you go to the “Developers” tab on the plugin page. Here’s the direct download link: http://downloads.wordpress.org/plugin/shashin.3.2.5.zip
Forum: Plugins
In reply to: [Shashin] Using Pretty Photo PluginToday I worked on fully integrating prettyPhoto with Shashin. It’s going well so far, and I must say pretttyPhoto is nicer to work with than Fancybox. I hope to finish it up this week.
Forum: Plugins
In reply to: [Shashin] Change textShashin comes with a .pot file for translations, so you could make a translation file. Or in the code, it’s in shashin/Public/ShashinAlbumDisplayer.php, line 85.
Forum: Plugins
In reply to: [Shashin] Using Pretty Photo PluginHi Todd – I can look into this over the weekend. I’ve been meaning to try integrating prettyPhoto, now that it’s GPL.
Forum: Plugins
In reply to: [Shashin] Google albums to the wordpress site using ShashinI forgot to mention there is another solution: if you are also using Google+, you can get around this problem by giving Shashin the Google+ URL for the album, as Shashin uses a different technique to determine the album data feed URL for Google+
Forum: Plugins
In reply to: [Shashin] Google albums to the wordpress site using ShashinThe problem is your installation of PHP is configured without DOM support. Shashin inspects the Picasa page for your album to find the link to its RSS feed, and it can’t do that without the PHP DOM library.
If you’re comfortable with some coding, you can confirm this by checking your PHP configuration – you can call phpinfo() and look for “–disable-dom”.
You’ll need to compile PHP with DOM support, or ask your hosting provider if they are willing to do it.