Daniel Post
Forum Replies Created
-
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?
Forum: Plugins
In reply to: [Autoblue] Can’t find my account to connect the plugin to BlueskyHi @davidtt2305, is this still an issue for you or can I mark it as resolved?
Forum: Plugins
In reply to: [Autoblue] Can’t find my account to connect the plugin to BlueskyThank you! Is there any chance the WordPress REST API is disabled on your website? Maybe by a plugin or custom theme?
Forum: Plugins
In reply to: [Autoblue] Can’t find my account to connect the plugin to BlueskyThat’s helpful, thanks! Is there any chance you could see what the API returns when you try searching for an account? I’ve created a short video that shows how you can do that: https://screen.studio/share/DGwHU7cZ
I’m interested in the “Response” part of the account search. Let me know if anything is unclear.
Forum: Plugins
In reply to: [Autoblue] Can’t find my account to connect the plugin to BlueskyHi David,
Thanks for trying out Autoblue! I don’t think you’re doing anything wrong, but I just tested it and it seems like your account is appearing for me (see screenshot): https://drive.google.com/open?id=1hFYDAvbwBPQAiO4fKjmdbILPP_GFehmi
When you search for other accounts, do they appear? Or does nothing appear at all, no matter what you type in? I’m wondering if something on your site is blocking calls to the Bluesky API somehow.
Thanks,
Daniel