binarymoon
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Custom Login] Hardcoded 'wp-content' file path in bm-custom-login.phpHey there – thanks for the message. I’ll see if I can add this to the next update.
Forum: Plugins
In reply to: [Browser Screenshots] Thumbnail of some sites are not accurateyeah – they update about once a week I think. Since the functionality is used on a lot of different wordpress properties I would think it’s in their best interest to keep improving it.
Forum: Plugins
In reply to: [Browser Screenshots] Thumbnail of some sites are not accurateHi there – post thumbnails are not related to browser shots so regenerating them won’t help here. I’ve checked out your site and it all seems to be working so hopefully it was just a glitch on the third party app that generates the screenshots
Forum: Plugins
In reply to: [Browser Screenshots] Visual Editor Disappears on Bshot plugin activationHi – thanks for the message. I’ll look into this and hopefully get it fixed.
Forum: Plugins
In reply to: [Browser Screenshots] Php function is not workingHi – there’s actually no function with that name in the plugin which is why it’s not displaying as you expect
Forum: Plugins
In reply to: [Browser Screenshots] Changing the link attached to the imageHi – thanks for the feedback. I’m going to add this in the next version!
Forum: Plugins
In reply to: [Browser Screenshots] Feature RequestHey there – thanks for the feedback. I’ll add this to the wish list.
Forum: Plugins
In reply to: [Browser Screenshots] Show top or bottom of shotHi – I’m afraid there’s not much that can be done about this. The plugin uses a third party service so we can’t control what the screenshots are of.
Forum: Plugins
In reply to: [Browser Screenshots] Changing file naming do to recent Linux upgradeHi – the plugin doesn’t save any images. They are all loaded from a third party server. As such I’m not sure why this would be happening
Forum: Plugins
In reply to: [Miniclip Games Arcade] FAQHi – thanks for the feedback.
There’s no FAQ because there have been no questions so far. Without questions I can post no answers 🙂
There’s already install instructions – they are on the ‘Other Notes’ tab. Perhpas it’s not clear that they are there however.
Thanks also for the idea. As I’ve mentioned in a few places the Miniclip API does not support highscores and so those can not currently be displayed.
I’m not sure what you mean regarding a ‘vBulletin style layout’ and would need more information before responding to that.
Forum: Reviews
In reply to: [Miniclip Games Arcade] Perhaps better in the futureWell this is disappointing. I thought I was very helpful on Twitter. I didn’t reply to things here because I was taking a couple of weeks off for the Christmas break.
There’s no support for high scores because the Miniclip webmaster API does not support high scores.
I don’t know what you want to do with regards adding more than one game? You can easily add more than one shortcode to a single page allowing multiple games per page.
Hi – thanks for the feedback. We’re aware of this problem and are currently considering how we can improve this.
Forum: Plugins
In reply to: [Proxy Cache Purge] Issue clearing cache with the 'cache clear' buttonThe site I am working on doesn’t currently have a blog – it’s all pages – however I can add and edit pages just fine so I assume that’s working.
Forum: Plugins
In reply to: [Achievements for WordPress] How to add events to AchievementsI have a new question that is related to this I guess.
In dev I deleted the event that I had added manually since it’s now in the code – but it doesn’t show. Some new events/ actions I added are displaying fine.
I wondered if changing the version number would allow the actions to be updated but that didn’t seem to change anything.
For reference I stripped out a bunch of properties that didn’t seem to make any difference (since this is all private) and I am now left with the following (I added some new actions too).
/** * Extension to add Brush Ninja support to Achievements * * @since Achievements (3.0) */ class DPA_Animate_Extension extends DPA_Extension { public function __construct() { $this->actions = array( 'bm_new_animation' => __( 'Submit a new Animation', 'dpa' ), 'bm_subscribe' => __( 'Subscribe to the site', 'dpa' ), 'bm_scumbag' => __( 'An animation has been deleted', 'dpa' ), 'bm_police' => __( 'Reported a bad animation', 'dpa' ), ); $this->id = 'Animate'; $this->name = __( 'Animate', 'dpa' ); $this->version = 1.1; } }Forum: Plugins
In reply to: [Achievements for WordPress] How to add events to AchievementsThat did it – thanks! 🙂
Looks like the animate key isn’t in the _dpa_extension_versions record anymore though. I guess that means it’s pulling it through the filter?