Jonathan Bossenger
Forum Replies Created
-
Forum: Plugins
In reply to: [AI Provider for OpenRouter] removedSounds good, here’s the GitHub issues URL if you need it: https://github.com/jonathanbossenger/ai-provider-for-openrouter/issues
Forum: Plugins
In reply to: [AI Provider for OpenRouter] removed@arothman I’m going to close this out for now, feel free to open a new issue if you encounter any problems.
Forum: Reviews
In reply to: [AI Provider for OpenRouter] Works 100sThanks for testing and leaving a kind review @bradvin
Forum: Plugins
In reply to: [List all URLs] All image urlsHi @wicko thanks for getting in touch.
At the moment that’s not possible. However, would you be able to log this as an issue in the GitHub repository: https://github.com/jonathanbossenger/list-all-urls/issues? Then I can work on adding support for only image URLs.
Forum: Plugins
In reply to: [List all URLs] Site BrokenApologies @colfer I didn’t get a notification about this message.
I’ve removed the code that I was testing, so today’s update should fix that error. Please let me know if the problem persists.
Forum: Plugins
In reply to: [Debug Bar] WP 6.7 Translation loading issueOoo @felipeelia thanks for sharing that, it might be that I can use that wp cli command to replicate the issue.
Forum: Developing with WordPress
In reply to: Adjust results or the order for LinkControl componentHey @joshlfcox I asked the question in the #outreach channel, and got confirmation that this is not currently possible, as it uses the default WP REST API search endpoint, checking against a group of different post types when you search.
There has been some discussion around how to fix this in this GitHub issue, but as yet no specific proposal has had any activity on it.
Forum: Developing with WordPress
In reply to: Creating a OTP verification feature in checkout formHi @mdyounus23z
What you’re asking for might be possible with an existing WooCommerce plugin. Have you tried the following options:
https://woocommerce.com/document/registration-login-with-mobile-phone-number/
https://plugins.miniorange.com/otp-verification-woocommerce-checkout-form
If those options don’t fulfil your requirements, you might need to hire a developer to build it for you.
To do this please try https://jobs.wordpress.net/ or https://jetpack.pro/.
Forum: Developing with WordPress
In reply to: How to upgrade customized and outdated PluginsHi @myselfmani
So it is possible to upgrade the WordPress version and your server without upgrading the plugins. I assume you already have auto updates to WordPress Core and plugins disabled.
The problem you’re going to have is that as soon as you update plugins, that’s going to overwrite any customisations. So my suggestion would be to first see if you can move the customisations into a separate custom plugin. That way you can upgrade the plugins, without loosing your customisations.
Forum: Developing with WordPress
In reply to: Adjust results or the order for LinkControl componentAh, I see, thanks @joshlfcox
I’ve been diving into the code today to see if I can find a way to filter those searches, but as yet I’ve not come up with anything.
I’m going to wait until Monday, after the US holidays, and then post a question about this in the #outreach channel in the WordPress Slack, and see if we can find some answers there.
Forum: Developing with WordPress
In reply to: Adjust results or the order for LinkControl componentHi @joshlfcox.
If you are using the LinkControl component in a custom block, you should be able to use the suggestionsQuery prop to limit the search query.
Forum: Plugins
In reply to: [Classic Editor] Inline translation doesn’t work properlyHi @krstarica, thanks for reporting.
It appears this issue is related to WordPress 6.7.1 and translations. I see that there is already a fix for this being reviewed/tested.
Forum: Fixing WordPress
In reply to: Issue with “Database Update Required”Hi @treadops thanks for that update.
That sounds like something else, because the database update will run once, and shouldn’t affect your Products or Orders pages.
It could be the theme or a plugin that’s causing this. What I would usually recommend is to test your theme or plugins to find out if any of them could be the issue.
This process requires making a copy of the site, either on a test site, or in a local environment. Then, set the theme to a default WordPress theme, and see if the problem persists. If it doesn’t, deactivate your active plugins one by one, and test each time if the problem persists.Forum: Plugins
In reply to: [Classic Editor] Classic Editor for all non AdmisHi @ronnyk1988
You might be able to use the use_block_editor_for_post filter.
To do so, you’d need to set the default editor to the Block Editor in the site settings, and then inside the filter callback, check the user role, and for non admins, return false.
Something like this:
add_filter('use_block_editor_for_post', 'set_user_editor', 10, 1);
function set_user_editor( $use_block_editor ){
$user = wp_get_current_user();
// if the user is an admin, return the default value
if ( in_array( 'administrator', (array) $user->roles ) ) {
return $use_block_editor;
}
// if the user is not an admin, set the editor to Classic Editor
return false;
}This code is not thoroughly tested, but in my simple example test it seems to work.
- This reply was modified 1 year, 5 months ago by Jonathan Bossenger.
Forum: Plugins
In reply to: [Classic Editor] Classic Editor adds extra classes to tagsHi @sunny923
I tested this today on a clean WordPress install with just the Classic Editor plugin, and it’s not adding any classes to my paragraphs.

Are you perhaps copy/pasting the content from somewhere else, and that’s where the html markup is coming from?