Manzoor Wani (a11n)
Forum Replies Created
-
I just checked and noticed that the WP REST API URL for Social Notes on your site (
https://islandinthenet.com/wp-json/wp/v2/jetpack-social-note
) returns{"code":"rest_no_route","message":"No route was found matching the URL and request method.","data":{"status":404}}
It should return a JSON list of Social Notes.
That makes me wonder whether the Jetpack Social plugin is active or not. Just to clarify, Social Notes feature is available only in the Jetpack Social plugin and not in the main Jetpack plugin.
Hello @khurtwilliams
I am Manzoor, a developer from the team responsible for Jetpack Social.
Sorry about the issue you are facing.
The issue needs some deeper troubleshooting than what has already been done.
- Deactivate all the plugins except Jetpack/Social
- Switch to some default WordPress theme
- Just visit Settings > Permalinks page to ensure that rewrite rules are flushed. There is no need to Save Changes
- Then check if the issue still persists
Meanwhile, we will keep looking into the possible causes for the issue.
Forum: Plugins
In reply to: [Search Exclude] Search Exclude crashes Jetpack pluginDo you have any documentation or tips you’d recommend to get us started?
You can see the usage here.
Forum: Plugins
In reply to: [Search Exclude] Search Exclude crashes Jetpack pluginThank you for releasing an update to fix the issue in production.
However, continuing with your current approach of loading the assets package directly via the composer autoloader will soon create the same problem. Moving forward, that
jetpack-assets
package will be updated and developed regularly, and we will end up dealing with the same issues again, making all of the QuadLayers plugins technically incompatible with Jetpack.Thus, we request you to please use the recommended method of using the package. FYI,
jetpack-autoloader
is a drop-in replacement for the composer autoloader. So, there shouldn’t be any issues. If you still face any problems, feel free to reach out as mentioned by my colleague @jeherve.If there is a public repo where we can help implement it, we will be glad to do so.
Forum: Plugins
In reply to: [Search Exclude] Search Exclude crashes Jetpack pluginI am aware of at least 12 sites where we had to request the admins to deactivate Search Exclude because of this issue. Can we please have an update on this?
Forum: Plugins
In reply to: [WP Menu Icons] WP Menu Icons crashes Jetpack pluginAny update on this?
We had to ask many site users to deactivate your plugins because of this issue.
Forum: Plugins
In reply to: [Search Exclude] Search Exclude crashes Jetpack pluginIt’s possible that other plugins from you will have same issues. Can you please review those as well.
Regards.
Forum: Plugins
In reply to: [WP Menu Icons] WP Menu Icons crashes Jetpack pluginAs a quick fix, you may update
automattic/jetpack-assets
to the latest version and do a patch release of the plugin.You may then continue working on that recommended solution mentioned above.
Actually that Social icons block is not from Jetpack, it’s rather a built-in/core block of WordPress. So, deactivating Jetpack may not help.
I would suggest creating a support topic here in general WordPress related issues.
Thank you for sharing the screenshots.
Can you please try to add the block this way and see if it works?
Hello
Can you please share a screenshot or a video of what you see when you add the Social Icons block?
Hello
It seems that the URL you shared has some multibyte characters like emojis (🎭) which can cause such issues with Facebook.
Can you please try with a URL that does not have any such characters?
Forum: Plugins
In reply to: [WP Telegram (Auto Post and Notifications)] Exclude private postMany users want private posts to be sent, because they have some private membership based channels and groups. So, we made that behavior to be the default one. Now, to avoid private posts being sent to Telegram, you can add this piece of code to functions.php of your active/child theme
/* WP Telegram - do not send private posts */ add_filter( 'wptelegram_p2tg_valid_post_statuses', function ( $statuses ) { $key = array_search( 'private', $statuses['live'] ); if ( false !== $key ) { unset( $statuses['live'][ $key ] ); } return $statuses; } );
Forum: Plugins
In reply to: [WP Telegram (Auto Post and Notifications)] Delay issue for scheduled postYou can download and share the log files on Telegram.
Forum: Plugins
In reply to: [WP Telegram (Auto Post and Notifications)] Delay issue for scheduled postHello,
It looks like there is something in the other log (Bot API). Please enable that as well and try again. Then please share that log file link with our Support on Telegram – @WPTelegramSupport?
You should avoid sharing logs here on the public forum.