Dharmesh Patel
Forum Replies Created
-
Forum: Plugins
In reply to: [Autopost for X (formerly Autoshare for Twitter)] Fixing PHP 8.4 DeprecationsHi @ispreview,
Thanks for reporting this. I’ve created an issue on our GitHub repo to track this, and this will be fixed in upcoming releases.
Thanks!Hi @hlet,
Thanks for reaching out.My understanding of Autopost for X is that it only runs when a specific event occurs (such as when a post is published or updated)
Yes, it only publishes a post to X when the post is published or when you manually post to X. Otherwise, no process runs continuously, and the plugin doesn’t affect the site’s performance. Please let me know if you need any further information.
Thanks!Forum: Plugins
In reply to: [Mailchimp List Subscribe Form] ERROR: submission flagged as potential spamThanks for sharing your feedback, @edker and @yoyun. I’ve opened an issue on our development repository to consider switching to a vanilla JS-based implementation. While we don’t have an ETA set for it yet, we’ll try to review and consider it in the future. Thanks again for all the input you’ve shared here, and please feel free to report any other issues you come across.
Thanks!Forum: Plugins
In reply to: [Mailchimp List Subscribe Form] ERROR: submission flagged as potential spamjQuery has been used from the beginning for tasks like JS submission, date pickers, etc. I’m just curious, why are you disabling jQuery? Is there a specific reason? As of now, we don’t have any plans to remove jQuery, but we’d love to understand your reasons and reconsider if needed. Thanks!
Forum: Plugins
In reply to: [Mailchimp List Subscribe Form] ERROR: submission flagged as potential spamThanks for sharing the error, @edker . Could you please enable jQuery? It is used by the plugin, so disabling it causes the issue. Please enable it, and the issue should be resolved. Thanks!
Forum: Plugins
In reply to: [Mailchimp List Subscribe Form] ERROR: submission flagged as potential spamThanks for providing all this information, @edker.
Based on what you’ve shared, it seems you have JavaScript disabled in your browser. Could you please confirm if that’s the case? If not, are you seeing any JavaScript errors in the console?
Thanks!Forum: Plugins
In reply to: [Mailchimp List Subscribe Form] Subscription Form BugHi @cognisant_2000,
Thanks for reporting the issue.
In the recent release (1.7.0), we updated the Subscribe Form block, which now lets you reorder form fields, edit form labels, and more. You can use the block to arrange the fields as needed.

If you’re still using the old widget or shortcode, you can fix the field order by adding the code snippet below to your theme’sfunctions.phpfile. This will ensure your changes aren’t overwritten during plugin updates. However, we still recommend switching to the block. Please let us know if you run into any difficulties setting it up.add_filter( 'option_mc_merge_vars', function( $value ) {
if ( empty( $value) || ! is_array( $value ) ) {
return $value;
}
// Reorder the merge vars by display order.
usort($value, function ($a, $b) {
return $a['display_order'] <=> $b['display_order'];
});
return $value;
} );We’ve also created a GitHub issue to address this within the plugin itself.
Thanks!
Hi @gemini23,
You can see under the “X/Twitter connection settings” in Autopost for X/Twitter Settings and you can navigate to it by visiting Settings > Autopost for X/Twitter.
Thank youHi @gemini23,
Thank you for reaching out to us.
Based on the error, it seems the X app is configured incorrectly. Could you please confirm and configure the X app by following the steps on the plugin settings page (Settings > Autopost for X/Twitter), specifically the step “Set theCallback URLsfields to [specified value].”Please let me know if you are still experiencing any issues after following the steps.
Best Regards,Hi @justinwyllie,
Thank you for reaching out to us and reporting this issue.
Yes, the plugin currently has a hardcoded limit of 280 characters. I have opened an issue on our GitHub repository regarding this, and we will aim to implement and release a fix in upcoming plugin releases. Please follow the GitHub issue to stay updated on its progress.
Feel free to reach out to us if you need help with anything else.
Thank you!
Hi @justinwyllie,
Thank you for reaching out to us.Yes, that is the expected behavior. We currently have an open issue to add the ability to customize the order of the tweet text, hashtags, and link. In the meantime, you can use the
autoshare_for_twitter_bodyfilter to modify the tweet body according to your requirements. (You can find a code snippet for it here)Please feel free to let us know if you need any further information.
Thank you.Hi @behandlung,
Thanks for reaching out to us.
You can define the content to be shared at the post level by adding content to the “Custom message” field. However, we currently don’t have a UI for setting the default share content. We have an open issue for this, but there is no scheduled timeline for adding it to the plugin.
For now, you can use the
autoshare_for_twitter_bodyfilter to tweak the tweet body content to be shared. For example, if you want to share the post excerpt, you can use the following code snippet to do that:add_filter(
'autoshare_for_twitter_body',
function( $tweet_body, $post ) {
// Bail if we have a custom message.
$custom_message = get_post_meta( $post->ID, 'autoshare_tweet-body', true );
if ( ! empty( $custom_message ) ) {
return $tweet_body;
}
// If we have an excerpt, use that.
$excerpt = get_the_excerpt( $post );
if ( ! empty( $excerpt ) ) {
$tweet_body = $excerpt;
}
return $tweet_body;
},
10,
2
);Hope this helps you.
Thank you.
Hi @0283tubasa,
Thanks for the reaching out to us.
Could you please ensure that the “Post to X/Twitter when published” toggle is enabled when you published the post? Also, could you please manually attempt to post to X by clicking “Post to X/Twitter” and provide the details of any error you encounter?Providing error details will assist us in identifying the root cause and resolving the issue.
Thank you.
Forum: Plugins
In reply to: [Autopost for X (formerly Autoshare for Twitter)] Problems with pluginHi @ibiza69,
Apologies for the delayed response. We have fixed the issue with autoposting in version 2.2.0, and it has just been released. Please let me know if you are still facing any issues after updating the plugin, and we will be more than happy to help you with that.
Thanks
Hi @murilloferrari,
Thank you for reporting the issue, and apologies for any inconvenience that may have occurred.In a recent release, we encountered one minor bug that caused the Twitter accounts option to be hidden in the “Tweet Again” meta box. As a result, if accounts are not enabled for “Autoshare by default” in the settings, tweets will not be posted to Twitter using Tweet again.
We have already addressed and resolved this issue. The fix will be included in the upcoming release. In the meantime, could you please enable the “Autoshare by default” option for your accounts to ensure it works as intended? Alternatively, you can use the Block editor, where this issue does not occur.
We hope this solution resolves the problem for you.
Thank you.