Daniel Post
Forum Replies Created
-
Forum: Reviews
In reply to: [Autoblue] Perfection, could only suggest two thingsThank you so much! That means a lot, especially coming from a WP legend like yourself 😁
I’ll look into your suggestions! I think it’s supposed to already default to the excerpt, but maybe something is not quite right there.
Forum: Reviews
In reply to: [Autoblue] Limited but still useful in the classic editorThat’s awesome to hear, thank you for the positive review! If there’s anything you’d like to see in Autoblue please don’t hesitate to let me know.
Forum: Plugins
In reply to: [Autoblue] Custom post typesI’m uploading a new version in the next couple days that will have support for custom post types!
Forum: Plugins
In reply to: [Autoblue] Can’t Connect My AccountHi, are you using your regular account password or an App Password? It is recommended to use an App Password for added security, and I believe regular passwords might not be supported anymore.
You can create an App Password on this page: https://bsky.app/settings/app-passwords
If this doesn’t work please let me know so I can investigate further!
Forum: Plugins
In reply to: [Autoblue] Plug-in suddenly doesn’t now post@salutethepig That’s great to hear, and thank you for using Autoblue! Please don’t hesitate to open another topic if anything comes up.
@countbelisarius Can you confirm the problem still exists for you?
Forum: Plugins
In reply to: [Autoblue] Plug-in suddenly doesn’t now postThank you both for letting me know. I’ll look into it and see if anything has changed.
If possible, it would be very helpful if you could install the WP Crontrol plugin and look in the plugin’s logs after (attempting to) share a post. Autoblue uses the default WP cron system so it’s possible something is going wrong there.
Forum: Plugins
In reply to: [Autoblue] Autoblue posts article preview link for scheduled postsHi @watty503, thanks for letting me know. That’s definitely not intended behavior, and shouldn’t be possible (so clearly there is a bug somewhere).
I will look into this and keep you updated.
Forum: Plugins
In reply to: [Autoblue] Adding exceptThe default message is no message at all. Bluesky treats the link to the post separately from the message, so if you don’t add a message it will just show the link to the post (with the preview, so post title and featured image).
I’ll see if I can add a filter to hide the box. To be clear, would you want to hide just the message box or the whole Autoblue section?
Forum: Plugins
In reply to: [Autoblue] Adding exceptHi @vespino, thanks for using Autoblue! There’s a
autoblue/share_messagefilter that gets the$messageand$post_idas parameters. You could use that to use the excerpt as the shared post, would that work?I can look at hiding the manual box. What is the use case if I may ask?
Forum: Plugins
In reply to: [Autoblue] No accounts found. Please try another search.The best kind of problem! Thanks for following up and thank you for using Autoblue!
Forum: Plugins
In reply to: [Autoblue] No accounts found. Please try another search.Hi @sarahdshotts,
Thank you for your patience! Are you able to find other accounts, or does nothing show up at all? Can you share with me the name of your account? You can also DM it to me on Bluesky if you don’t want to share it publicly—my handle is @danielpost.com
Thanks!
Forum: Plugins
In reply to: [Autoblue] Record/text must not be longer than 300 graphemes@lakuma v0.0.5 has been released, which fixes the issue. Thank you for your patience.
I’ve also added a new filter
autoblue/share_messagewhich can be used to add hashtags to the end of your message:add_filter(
'autoblue/share_message',
function ( $message ) {
$tags = [ 'tag-one', 'tag-two' ];
$tags = array_map( fn( $tag ) => '#' . sanitize_title( $tag ), $tags );
return $message . ' ' . implode( ' ', $tags );
}
);Forum: Plugins
In reply to: [Autoblue] Record/text must not be longer than 300 graphemesThanks for letting me know! This is a bug in Autoblue and will be fixed in the next version that should come out this week. It’s supposed to trim the text automatically, but there’s a bug in the logic.
As for your request to add hashtags automatically: I think this is a bit niche to add as a default setting, but I’m adding a filter that will let you do that very easily with a few lines of code. I will share some sample code here when the next version is released.
Forum: Plugins
In reply to: [Autoblue] Could you modify so that the unstarted images are uploadedThat makes sense, thanks! I’m working on adding an option to add any image you’d like, which will be released soon.
Forum: Plugins
In reply to: [Autoblue] Could you modify so that the unstarted images are uploadedThank you for the kind words! Can you clarify what you mean by “unstarted” images?